Minor changes to LED dimming

This commit is contained in:
Alex Thomassen 2018-10-25 11:06:48 +02:00
parent 8de71e7b08
commit b493f6c0f1

View File

@ -22,7 +22,7 @@ int LIGHT_LEVEL = 0;
* Sett en standard verdi for "increment/decrement" av LED.
* Dette er "dimmeverdien".
*/
int INCDEC_VALUE = 1;
int INCDEC_VALUE = 5;
/**
* Lagre sist gang knappene ble trykket (ved hjelp av millis()).
@ -114,7 +114,7 @@ void loop()
* Hvis den IKKE var trykt ned, sett LASTPRESS til currentTime for å tracke
* millisekunder.
*/
if (DEC_LASTSTATE == LOW) {
if (!DEC_LASTSTATE) {
DEC_LASTPRESS = currentTime;
DEC_LASTSTATE = true;
}