Adds 1 to the blinkcount integer, trying to fix #49 #bugfix

This commit is contained in:
pyr0ball 2019-10-25 21:18:33 -07:00
parent 60e6f8d62b
commit f8efc3d192

View file

@ -24,7 +24,7 @@ int VFol = 0;
// Error blink parameters
int BlinkState = LOW;
int BlinkCount = InitCount * 2; // Multiply Blink count by 2 to handle toggle state
int BlinkCount = (InitCount * 2) + 1; // Multiply Blink count by 2 to handle toggle state, add one extra to make sure light is on after
// Serial Input Parsing Variables
#define buffSize 40