Advertisement
computermuseo

far lampeggiare un led con arduino

Mar 10th, 2015
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. void setup() {
  2. pinMode(9, OUTPUT);
  3. }
  4.  
  5.  
  6. void loop() {
  7. digitalWrite(9, HIGH);
  8. delay(500);
  9. digitalWrite(9, LOW);
  10. delay(500);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement