#define printf(str) Serial.println(str)
void setup()
{
Serial.begin(115200);
}
void loop()
{
printf("hello world");
while(1);
}
#define printf(str) Serial.println(str)
void setup()
{
Serial.begin(115200);
}
void loop()
{
printf("hello world");
while(1);
}