arduino-esp32-custom-lwip-p.../tests/hello_world/hello_world.ino

13 lines
182 B
C++

void setup(){
// Open serial communications and wait for port to open:
Serial.begin(115200);
while (!Serial) {
;
}
Serial.println("Hello Arduino!");
}
void loop(){
}