Skip to content

Instantly share code, notes, and snippets.

@dagon666
Created October 17, 2013 18:18
Show Gist options
  • Save dagon666/7029686 to your computer and use it in GitHub Desktop.
Save dagon666/7029686 to your computer and use it in GitHub Desktop.
music box binary messages format
struct note {
uint16_t note;
uint16_t duration;
};
struct packet {
uint16_t crc16;
unsigned char num;
struct note notes[4];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment