import
This commit is contained in:
commit
536bdcbc1c
17
blinkesp.ino
Normal file
17
blinkesp.ino
Normal file
@ -0,0 +1,17 @@
|
||||
#GPIOX <- !!! et pas D0
|
||||
#define PIN_LED 16
|
||||
|
||||
void setup() {
|
||||
delay(3000);
|
||||
Serial.begin(115200);
|
||||
|
||||
pinMode(PIN_LED, OUTPUT);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Serial.print("loop\n");
|
||||
digitalWrite(PIN_LED, HIGH);
|
||||
delay(500);
|
||||
digitalWrite(PIN_LED, LOW);
|
||||
delay(500);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user