* change(idf): Rename component example * ci(push): Fix steps conditions * ci(tests): Remove unnecessary concurrency * ci(push): Fix step condition * fix(idf): Fix compilation warnings when as component
10 lines
129 B
C++
10 lines
129 B
C++
#include "Arduino.h"
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
}
|
|
|
|
void loop() {
|
|
Serial.println("Hello world!");
|
|
delay(1000);
|
|
}
|