You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
263 B
17 lines
263 B
#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);
|
|
}
|