Guest User

stm32Duino_blink

a guest
Apr 16th, 2019
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const int led = PC13;
  2.  
  3. void setup() {
  4. pinMode(led, OUTPUT);
  5. }
  6.  
  7. void loop() {
  8.   digitalWrite(led, LOW);
  9.   delay(1000);
  10.   digitalWrite(led, HIGH);
  11.   delay(500);
  12. }
Add Comment
Please, Sign In to add comment