arduino-esp32/idf_component_examples/Hello_world/main/main.cpp
Jan Procházka 00a9579982
Add Arduino as Component examples (#8878)
* Example for IDF component registry

* Added readme

* updated readme

* remove idf dependency

* add empty lines on file end

* idf_component.yml version change

* Updated readme for local development

---------

Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
2023-11-29 12:09:43 +02:00

10 lines
131 B
C++

#include "Arduino.h"
void setup(){
Serial.begin(115200);
}
void loop(){
Serial.println("Hello world!");
delay(1000);
}