Fix writing of solid color tp EEPROM
A typo wrote the red value to green and blue as well, which resulted in some level of white. ## To make a commit, type your commit message and press SUPER-ENTER. To cancel ## the commit, close the window. To sign off on the commit, press SUPER-S. ## ## You may also reference or close a GitHub issue with this commit. To do so, ## type `#` followed by the `tab` key. You will be shown a list of issues ## related to the current repo. You may also type `owner/repo#` plus the `tab` ## key to reference an issue in a different GitHub repo.
This commit is contained in:
parent
4c966a0c45
commit
31e2dd3cea
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user