From 7960e9b3092b3aaa726c8dc8bda73f4ce29c477e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Kristan?= Date: Fri, 3 Sep 2021 08:25:18 +0200 Subject: [PATCH] Bugfix for missing IR.json error code. --- wled00/const.h | 2 +- wled00/wled.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/const.h b/wled00/const.h index 99174f251..28533eba8 100644 --- a/wled00/const.h +++ b/wled00/const.h @@ -215,7 +215,7 @@ #define ERR_FS_BEGIN 10 // Could not init filesystem (no partition?) #define ERR_FS_QUOTA 11 // The FS is full or the maximum file size is reached #define ERR_FS_PLOAD 12 // It was attempted to load a preset that does not exist -#define ERR_FS_IRLOAD 12 // Loading of ir.json failed +#define ERR_FS_IRLOAD 13 // Loading of ir.json failed #define ERR_FS_GENERAL 19 // A general unspecified filesystem error occured #define ERR_OVERTEMP 30 // An attached temperature sensor has measured above threshold temperature (not implemented) #define ERR_OVERCURRENT 31 // An attached current sensor has measured a current above the threshold (not implemented) diff --git a/wled00/wled.h b/wled00/wled.h index 9694be7dc..88763c44c 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2108281 +#define VERSION 2109031 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG