|
14 | 14 | #define KEEP_ALIVE_NETWORK 1000 |
15 | 15 | #define SW_REVISION "2.1.1" |
16 | 16 |
|
17 | | - |
18 | 17 | /****************************************************************************** |
19 | 18 | LiveObjects MQTT constants |
20 | 19 | ******************************************************************************/ |
|
42 | 41 | #define JSONCFGTYPE "t" |
43 | 42 | #define JSONMODEL "model" |
44 | 43 | #define JSONVALUE "value" |
| 44 | + |
45 | 45 | /****************************************************************************** |
46 | 46 | INCLUDES |
47 | 47 | ******************************************************************************/ |
@@ -215,7 +215,6 @@ class LiveObjectsBase |
215 | 215 | virtual void sendMQTT(String& topic, String& doc)=0; |
216 | 216 | virtual void deserializeMessage(JsonDocument& doc)=0; |
217 | 217 |
|
218 | | - |
219 | 218 | protected: |
220 | 219 | /****************************************************************************** |
221 | 220 | CONFIGURATION MANAGER |
@@ -285,12 +284,12 @@ class LiveObjectsBase |
285 | 284 | PARAM TYPERS |
286 | 285 | ******************************************************************************/ |
287 | 286 | void paramTyper(const String& name, bool* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
288 | | - void paramTyper(const String& name, char* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
| 287 | + // void paramTyper(const String& name, char* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
289 | 288 | #if not defined ESP8266 && not defined ESP32 && not defined ARDUINO_AVR_FEATHER32U4 |
290 | 289 | void paramTyper(const String& name, int* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
291 | 290 | void paramTyper(const String& name, unsigned int* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
292 | 291 | #endif |
293 | | - void paramTyper(const String& name, int8_t*variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
| 292 | + void paramTyper(const String& name, int8_t* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
294 | 293 | void paramTyper(const String& name, int32_t* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
295 | 294 | void paramTyper(const String& name, int16_t* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
296 | 295 | void paramTyper(const String& name, uint8_t* variable, LiveObjects_parameterType type, onParameterUpdateCallback callback); |
|
0 commit comments