Created
October 17, 2013 18:18
-
-
Save dagon666/7029686 to your computer and use it in GitHub Desktop.
music box binary messages format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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