RPJacobs
RPJacobs
We have a php sia pac script but trying to switch to pysiaalarm for HA intergration. If I start run.py with the same port and key, my alarm generates the...
`ESPEasy/src/_P145_Itho.ino:326:42: error: 'WebServer' was not declared in this scope strcpy(PLUGIN_145_ExtraSettings.ID1, WebServer.arg(F("PLUGIN_145_ID1")).c_str());` change WebServer into web_server ` strcpy(PLUGIN_145_ExtraSettings.ID1, WebServer.arg(F("PLUGIN_145_ID1")).c_str()); strcpy(PLUGIN_145_ExtraSettings.ID2, WebServer.arg(F("PLUGIN_145_ID2")).c_str()); strcpy(PLUGIN_145_ExtraSettings.ID3, WebServer.arg(F("PLUGIN_145_ID3")).c_str());` ` strcpy(PLUGIN_145_ExtraSettings.ID1, web_server.arg(F("PLUGIN_145_ID1")).c_str()); strcpy(PLUGIN_145_ExtraSettings.ID2, web_server.arg(F("PLUGIN_145_ID2")).c_str()); strcpy(PLUGIN_145_ExtraSettings.ID3, web_server.arg(F("PLUGIN_145_ID3")).c_str());`
With arduino 1.8.9 you will get an error: ESPEasy\_P145_Itho.ino: In function 'boolean Plugin_145(byte, EventStruct*, String&)': _P145_Itho:314:53: error: too many arguments to function 'void addFormSubHeader(const String&)' addFormSubHeader(string, F("Remote RF Controls")); Can...