From 9a1728bcfc5be79ba8f4cf6c1b4422111003fad5 Mon Sep 17 00:00:00 2001 From: c3ma Date: Fri, 16 Oct 2020 22:05:36 +0200 Subject: [PATCH] Upgraded version number --- esp32/include/ControllerConfiguration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp32/include/ControllerConfiguration.h b/esp32/include/ControllerConfiguration.h index 960d826..18c99f4 100644 --- a/esp32/include/ControllerConfiguration.h +++ b/esp32/include/ControllerConfiguration.h @@ -11,7 +11,7 @@ #ifndef CONTROLLER_CONFIG_H #define CONTROLLER_CONFIG_H -#define FIRMWARE_VERSION "1.0.2" +#define FIRMWARE_VERSION "1.0.3" #define ADC_TO_VOLT(adc) ((adc) * 3.3 ) / 4095) #define ADC_TO_VOLT_WITH_MULTI(adc, multi) (((adc) * 3.3 * (multi)) / 4095)