Adds 1 to the blinkcount integer, trying to fix #49 #bugfix
This commit is contained in:
parent
60e6f8d62b
commit
f8efc3d192
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ int VFol = 0;
|
||||||
// Error blink parameters
|
// Error blink parameters
|
||||||
|
|
||||||
int BlinkState = LOW;
|
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
|
// Serial Input Parsing Variables
|
||||||
#define buffSize 40
|
#define buffSize 40
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue