This commit is contained in:
2023-01-02 22:20:38 +01:00
parent 5257cf9a31
commit ab15d1ce3f
3 changed files with 13 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
#include "led.h"
#ifdef STEALTH
const bool LED_STEALTH = true;
#else
const bool LED_STEALTH = false;
#endif
CRGB leds[NUM_LEDS];
bool ledstate = false;
@@ -56,7 +62,8 @@ void handleLed(void)
{
leds[0] = ledcolor;
}
FastLED.show();
FastLED.show();
lastLedTime = timeNow;
}
}