Advertisement
Atdiy

Untitled

Aug 18th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*
  2. Piezo!
  3. */
  4.  
  5. #include "simpletools.h" // Include simpletools
  6. int note[] = {1047, 1175, 1319, 1397, 1568, 1760, 1976, 2093};
  7.  
  8. int main() // main function
  9. {
  10. for(int i = 0; i < 8; i++)
  11. {
  12. freqout(9, 500, note[i]); // pin, duration, frequency
  13. pause(68);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement