Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. #include <Esplora.h>
  3.  
  4. void setup() {
  5. }
  6.  
  7. void loop() {
  8. if (Esplora.readButton(1) == LOW) {
  9. Esplora.tone(500);
  10. }
  11. else {
  12. Esplora.noTone();
  13. }
  14. if (Esplora.readButton(2) == LOW) {
  15. Esplora.tone(1000);
  16. }
  17. else {
  18. Esplora.noTone();
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement