Created
June 19, 2020 11:38
Sketch minimaliste pour tester la programmation d'une carte micro:bit avec l'IDE Arduino. On fait clignoter la LED du centre.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************** | |
Sketch minimaliste pour tester la programmation | |
d'une carte micro:bit avec l'IDE Arduino. | |
On fait clignoter la LED du centre. | |
**********************************************/ | |
void setup() { | |
pinMode(10, OUTPUT); | |
pinMode(27, OUTPUT); | |
} | |
void loop(){ | |
digitalWrite(27, HIGH); | |
delay(1000); | |
digitalWrite(27, LOW); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment