about summary refs log tree commit diff
path: root/HexBoard_V1.ino
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2022-07-16 16:16:20 -0400
committerZach DeCook <zachdecook@librem.one>2022-07-16 16:16:20 -0400
commitc63de3417dd00425eb7c51295d3df3b89be60904 (patch)
treeeef17bd5488e0e3eed4a2d0ae1bce001bf902592 /HexBoard_V1.ino
parent47279088c4805b9da6edc6cc0652f314b259e313 (diff)
downloadHexBoard-c63de3417dd00425eb7c51295d3df3b89be60904.tar.gz
layout mode: color of light
Diffstat (limited to 'HexBoard_V1.ino')
-rw-r--r--HexBoard_V1.ino2
1 files changed, 2 insertions, 0 deletions
diff --git a/HexBoard_V1.ino b/HexBoard_V1.ino
index 99737e8..ee0a00c 100644
--- a/HexBoard_V1.ino
+++ b/HexBoard_V1.ino
@@ -110,6 +110,7 @@ ROW_FLIP(     65,  66,  67,  68,  69,  70,  71,  72,  73,  74)
 // LEDs for OCT_UP/OCT_DN status.
 const byte octUpSW = 70 - 1;
 const byte octDnSW = 90 - 1;
+const byte layMdSW = 50 - 1;
 
 const byte *currentLayout = wickiHaydenLayout;
 
@@ -153,6 +154,7 @@ void setup()
   init_leds();
   setOctLED();
   setLayoutLED();
+  leds[layMdSW] = CRGB::Red;
 
   // Print diagnostic troubleshooting information to serial monitor
   diagnosticTest();