mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-28 04:07:47 +00:00
Bugfix: The idx value can not exceed 255.
Introduced in R22
This commit is contained in:
+2
-2
@@ -79,7 +79,7 @@
|
||||
#define ESP_PROJECT_PID 2015050101L
|
||||
#define ESP_EASY
|
||||
#define VERSION 9
|
||||
#define BUILD 28
|
||||
#define BUILD 29
|
||||
#define REBOOT_ON_MAX_CONNECTION_FAILURES 30
|
||||
#define FEATURE_SPIFFS false
|
||||
|
||||
@@ -216,7 +216,7 @@ struct EventStruct
|
||||
{
|
||||
byte TaskIndex;
|
||||
byte BaseVarIndex;
|
||||
byte idx;
|
||||
int idx;
|
||||
byte sensorType;
|
||||
int Par1;
|
||||
int Par2;
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
// R29 03-10-2015
|
||||
// Fixed bug with idx values > 255. Bug was introduced in R22
|
||||
|
||||
// R28 03-10-2015
|
||||
// Merged Pro Mini extender plugins into one single plugin
|
||||
|
||||
|
||||
Reference in New Issue
Block a user