add schematic

This commit is contained in:
2025-09-11 10:13:37 -04:00
parent a1cb13a2f9
commit fed9e7ae70
5 changed files with 14482 additions and 5 deletions
-2
View File
@@ -312,8 +312,6 @@ void parse_colors(char * data, uint16_t len) {
if (token != NULL) {
// first string is the RGB color code
uint8_t red, green, blue;
// sscanf(token, "%2x%2x%2x", &red, &green, &blue);
// sscanf causes Pico 1 to crash
red = hexbyte(token);
green = hexbyte(token+2);
blue = hexbyte(token+4);