Skip to content
Snippets Groups Projects
Commit 8b972169 authored by Jason Coon's avatar Jason Coon Committed by GitHub
Browse files

Merge pull request #6 from eppfel/solidcolor-eeprom-fix

Fix writing of solid color to EEPROM
parents 4c966a0c 31e2dd3c
Branches
Tags
No related merge requests found
......@@ -642,8 +642,8 @@ void setSolidColor(uint8_t r, uint8_t g, uint8_t b)
solidColor = CRGB(r, g, b);
EEPROM.write(2, r);
EEPROM.write(3, r);
EEPROM.write(4, r);
EEPROM.write(3, g);
EEPROM.write(4, b);
setPattern(patternCount - 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment