You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have added LCD support to my Tasmota environment. But in doing so I had to add a new command to manage the I2C address.
The issue I experienced was that there is a conditional compilation whilst defining the kTasmotaCommands array.
#ifdef DEBUG_THEO
"|" D_CMND_EXCEPTION
#endif
Therefore if people make the logical mistake I made and add their new commands at the end of the TasmotaCammands enumeration and the kTasmotaCommands array, they become out of sync if the DEBUG_THEO flag is not in place!
The text was updated successfully, but these errors were encountered:
I have added LCD support to my Tasmota environment. But in doing so I had to add a new command to manage the I2C address.
The issue I experienced was that there is a conditional compilation whilst defining the kTasmotaCommands array.
#ifdef DEBUG_THEO
"|" D_CMND_EXCEPTION
#endif
Therefore if people make the logical mistake I made and add their new commands at the end of the TasmotaCammands enumeration and the kTasmotaCommands array, they become out of sync if the DEBUG_THEO flag is not in place!
The text was updated successfully, but these errors were encountered: