Skip to content

Instantly share code, notes, and snippets.

View lociii's full-sized avatar

Jens Nistler lociii

View GitHub Profile
@currentoor
currentoor / mutesync_serial.js
Last active December 13, 2022 22:07
How to talk to the mutesync button.
// The API is really simple, to control the lights you send the button a byte array of 13 bytes.
// The first byte needs to be 65 and the rest of the twelve bytes are 3-tuples (RGB values 0-255 for the individual LEDs).
// So alternating red and green lights would look like
[65,
255, 0, 0, // red
0, 255, 0, // green
255, 0, 0, // red
0, 255, 0] // green