Skip to content

Commit

Permalink
add: updated refresh delay
Browse files Browse the repository at this point in the history
  • Loading branch information
blahlicus committed Jun 10, 2018
1 parent fc78e0a commit 6c7f0aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion animus-3/source/animus/Animus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void CAnimus::Loop()

KeyScan(); // physical key layers scanned
// start of physical key loops
for (byte i = 0; i < Global.ROW; i++)
for (byte i = 0; i < Global.ROW; i++) // this is placed inside the 1ms delay to slow it down a bit
{
for (byte j = 0; j < Global.COL; j++)
{
Expand Down
2 changes: 1 addition & 1 deletion animus-3/source/animus/Global.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CGlobal
private:
public:
byte ModCount = 0; // always starts at 0
byte RefreshDelay = 5; // default value, overriden on EEPROM load
byte RefreshDelay = 10; // default value, overriden on EEPROM load
byte ROW = DEFAULT_ROW; // default value, overriden on EEPROM load
byte COL = DEFAULT_COL; // default value, overriden on EEPROM load
byte LAY = 1; // default value, overriden on EEPROM load
Expand Down

0 comments on commit 6c7f0aa

Please sign in to comment.