about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJared DeCook <jared@shapingthesilence.com>2024-05-24 16:47:17 -0400
committerZach DeCook <zachdecook@librem.one>2024-05-24 16:47:17 -0400
commit31237cac0f7867571658cfc5e2a4aedd5927a025 (patch)
tree53ccb3d294747f450e49a2c2833baf606abe70b9
parent9bd3f7d68479570614bbfc56d307486dc1ea29d4 (diff)
downloadHexBoard-31237cac0f7867571658cfc5e2a4aedd5927a025.tar.gz
Wait, I messed something up when I made some edits. I’ll have to fix it before we upload it. 😅
-rw-r--r--HexBoard.ino8
1 files changed, 4 insertions, 4 deletions
diff --git a/HexBoard.ino b/HexBoard.ino
index 4718c49..59232eb 100644
--- a/HexBoard.ino
+++ b/HexBoard.ino
@@ -2,8 +2,8 @@
   /*
     HexBoard
     Copyright 2022-2023 Jared DeCook and Zach DeCook
-    with help from Nicholas Fox (he's too modest, this was a complete rewrite)
-    Firmware v1.0.0 2024-05-16
+    with help from Nicholas Fox
+    Firmware v1.0.0 2024-05-17
     Licensed under the GNU GPL Version 3.
 
     Hardware information:
@@ -61,7 +61,7 @@
     the code into a library at that point.
   */
 // @init
-  #define HARDWARE_VERSION 1      // 1 = v1.1 board. 2 = v1.2 board. (may not be necessary as there are detectable differences)
+  #define HARDWARE_VERSION 1      // 1 = v1.1 board. 2 = v1.2 board.
   #include <Arduino.h>            // this is necessary to talk to the Hexboard!
   #include <Wire.h>               // this is necessary to deal with the pins and wires
   #define SDAPIN 16
@@ -836,7 +836,7 @@
     optional sending of log messages
     to the Serial port
   */
-  #define DIAGNOSTICS_ON false 
+  #define DIAGNOSTICS_ON true 
   void sendToLog(std::string msg) {
     if (DIAGNOSTICS_ON) {
       Serial.println(msg.c_str());