weinerm21

Untitled

Jun 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const int pso = 8;
  2.  
  3. void setup()
  4. {
  5. // put your setup code here, to run once:
  6. pinMode(pso, OUTPUT);
  7. Serial.begin(9600);
  8. }
  9.  
  10. void loop()
  11. {
  12. // put your main code here, to run repeatedly:
  13. tone (pso, 400, 20);
  14. delay(18);
  15. noTone(pso);
  16. }
Add Comment
Please, Sign In to add comment