Advertisement
computermuseo

oscilloscopio arduino

Aug 27th, 2015
3,615
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. void setup()
  2. {
  3. pinMode(0, OUTPUT); //Definisce il Pin0 come Uscita
  4. }
  5.  
  6. void loop()
  7. {
  8. while(true)
  9. {
  10. digitalWrite(0, HIGH); //Commuta l'uscita alta
  11. digitalWrite(0, LOW); //Commuta l'uscita bassa
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement