fixed type mismatch in default state version.

This commit is contained in:
2025-06-17 06:59:55 -07:00
parent 8a9bf121dc
commit 6c75a85929

View File

@ -9,7 +9,7 @@ struct AppState;
// Define the constants for the current firmware. // Define the constants for the current firmware.
const char CURRENT_SKETCH_NAME[] = "Gravity"; const char CURRENT_SKETCH_NAME[] = "Gravity";
const float CURRENT_SKETCH_VERSION = 0.2f; const byte CURRENT_SKETCH_VERSION = 3;
/** /**
* @brief Manages saving and loading of the application state to and from EEPROM. * @brief Manages saving and loading of the application state to and from EEPROM.