Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /*
  2. * music.c
  3. *
  4. * Created on: Apr 14, 2018
  5. * Author: schultz1
  6. */
  7.  
  8. #include "open_interface.h"
  9. #include "music.h"
  10. void createSong()
  11. {
  12. unsigned char notes[] = { 'a', 'a', 'b', 'b', 'c' };
  13. unsigned char duration[] = { 10, 50, 10, 10, 10};
  14. oi_loadSong(0, 5, notes, duration);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement