Skip to content

Commit

Permalink
Adds 1 to the blinkcount integer, trying to fix #49 #bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
pyr0ball committed Oct 26, 2019
1 parent 60e6f8d commit f8efc3d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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
Expand Down

0 comments on commit f8efc3d

Please sign in to comment.