Merge pull request #6 from eppfel/solidcolor-eeprom-fix
Fix writing of solid color to EEPROM
This commit is contained in:
commit
8b97216931
@ -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