mirror of https://github.com/arendst/Tasmota.git
Update xdrv_10_KNX.ino
This commit is contained in:
parent
4f9d18eab1
commit
c53ce0ab75
|
@ -22,11 +22,14 @@
|
||||||
|
|
||||||
#include <esp-knx-ip.h> // Include ESP KNX IP library (https://github.com/envy/esp-knx-ip)
|
#include <esp-knx-ip.h> // Include ESP KNX IP library (https://github.com/envy/esp-knx-ip)
|
||||||
// use the async-udp branch (https://github.com/envy/esp-knx-ip/tree/async-udp)
|
// use the async-udp branch (https://github.com/envy/esp-knx-ip/tree/async-udp)
|
||||||
// change on esp-knx-ip.h file the following:
|
// use the library patched with https://github.com/envy/esp-knx-ip/pull/48
|
||||||
// #define ALLOW_MULTIPLE_CALLBACKS_PER_ADDRESS 1
|
// and with https://github.com/envy/esp-knx-ip/pull/52
|
||||||
// //#define ESP_KNX_DEBUG <-- comment this line
|
|
||||||
// The ESP KNX IP library calls ESPAsyncUDP library (https://github.com/me-no-dev/ESPAsyncUDP)
|
// The ESP KNX IP library calls ESPAsyncUDP library (https://github.com/me-no-dev/ESPAsyncUDP)
|
||||||
// use ESPAsyncUDP library patched with the PR #21 (https://github.com/me-no-dev/ESPAsyncUDP/pull/21)
|
// use ESPAsyncUDP library patched with the PR #21 (https://github.com/me-no-dev/ESPAsyncUDP/pull/21)
|
||||||
|
//
|
||||||
|
// A copy of both libraries with the modifications needed is available at:
|
||||||
|
// https://github.com/ascillato/Sonoff-Tasmota_KNX/tree/development/lib/esp-knx-ip-async-udp
|
||||||
|
// https://github.com/ascillato/Sonoff-Tasmota_KNX/tree/development/lib/ESPAsyncUDP-master
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Variables in settings.h
|
Variables in settings.h
|
||||||
|
@ -175,6 +178,74 @@ byte KNX_GA_Search( byte param, byte start = 0 )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void KNX_ADD_GA( byte GAop, byte GA_FNUM, byte GA_AREA, byte GA_FDEF )
|
||||||
|
{
|
||||||
|
//Check if all GA were assigned. If yes-> return
|
||||||
|
//assign a GA to that address
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "ADD GA: %d, to %d/%d/%d"),
|
||||||
|
GAop, GA_FNUM, GA_AREA, GA_FDEF );
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void KNX_DEL_GA( byte GAnum )
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "DEL GA %d"),
|
||||||
|
GAnum );
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void KNX_ADD_CB( byte CBop, byte CB_FNUM, byte CB_AREA, byte CB_FDEF )
|
||||||
|
{
|
||||||
|
//Check if all callbacks were assigned. If yes-> return
|
||||||
|
//check if a CB for CBop was registered on the ESP-KNX-IP Library
|
||||||
|
//if no, register the CB for CBop
|
||||||
|
//assign a callback to CB address
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
for (byte i = 0; i < Settings.knx_CB_registered; ++i)
|
||||||
|
{
|
||||||
|
j = Settings.knx_CB_param[i];
|
||||||
|
if ( j > 0 )
|
||||||
|
{
|
||||||
|
device_param[j-1].CB_id = knx.callback_register("", KNX_CB_Action, &device_param[j-1]); // KNX IP Library requires a parameter
|
||||||
|
// to identify which action was requested on the KNX network
|
||||||
|
// to be performed on this device (set relay, etc.)
|
||||||
|
// Is going to be used device_param[j].type that stores the type number (1: relay 1, etc)
|
||||||
|
KNX_addr.value = Settings.knx_CB_addr[i];
|
||||||
|
knx.callback_assign( device_param[j-1].CB_id, KNX_addr );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "ADD CB: %d/%d/%d to %d"),
|
||||||
|
CBop, CB_FNUM, CB_AREA, CB_FDEF );
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void KNX_DEL_CB( byte CBnum )
|
||||||
|
{
|
||||||
|
//delete assigment
|
||||||
|
//check if there is no other assigment to that callback. If there is not. delete that callback register
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "DEL CB %d"),
|
||||||
|
CBnum );
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
void KNXStart()
|
void KNXStart()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -183,9 +254,13 @@ void KNXStart()
|
||||||
knx.start(WebServer, false); // Start knx and pass the webserver object to be used by UDP. False is for not showing the library webpage.
|
knx.start(WebServer, false); // Start knx and pass the webserver object to be used by UDP. False is for not showing the library webpage.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Read Configuration
|
// Set Physical KNX Address of the device
|
||||||
// Check which relays, buttons and sensors where configured for this device
|
KNX_physs_addr.value = Settings.knx_physsical_addr;
|
||||||
// and activate options according to the hardware
|
knx.physical_address_set( KNX_physs_addr );
|
||||||
|
|
||||||
|
// Read Configuration
|
||||||
|
// Check which relays, buttons and sensors where configured for this device
|
||||||
|
// and activate options according to the hardware
|
||||||
for (int i = GPIO_REL1; i < GPIO_REL8 + 1; ++i)
|
for (int i = GPIO_REL1; i < GPIO_REL8 + 1; ++i)
|
||||||
{
|
{
|
||||||
if (GetUsedInModule(i, my_module.gp.io)) { device_param[i - GPIO_REL1].show = true; }
|
if (GetUsedInModule(i, my_module.gp.io)) { device_param[i - GPIO_REL1].show = true; }
|
||||||
|
@ -222,10 +297,6 @@ void KNXStart()
|
||||||
if ( !device_param[j-1].show ) { Settings.knx_CB_param[i] = 0; }
|
if ( !device_param[j-1].show ) { Settings.knx_CB_param[i] = 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set Physical KNX Address of the device
|
|
||||||
KNX_physs_addr.value = Settings.knx_physsical_addr;
|
|
||||||
knx.physical_address_set( KNX_physs_addr );
|
|
||||||
|
|
||||||
// Register Group Addresses to listen to
|
// Register Group Addresses to listen to
|
||||||
// Search on the settings if there is a group address set for receive KNX messages for the type: device_param[j].type
|
// Search on the settings if there is a group address set for receive KNX messages for the type: device_param[j].type
|
||||||
// If there is, register the group address on the KNX_IP Library to Receive data for Executing Callbacks
|
// If there is, register the group address on the KNX_IP Library to Receive data for Executing Callbacks
|
||||||
|
@ -376,8 +447,7 @@ void KNX_Sensor(byte sensor_type, float value)
|
||||||
const char S_CONFIGURE_KNX[] PROGMEM = D_CONFIGURE_KNX;
|
const char S_CONFIGURE_KNX[] PROGMEM = D_CONFIGURE_KNX;
|
||||||
|
|
||||||
const char HTTP_FORM_KNX[] PROGMEM =
|
const char HTTP_FORM_KNX[] PROGMEM =
|
||||||
"<fieldset><legend style='text-align:left;'><b> " D_KNX_PARAMETERS " </b></legend><form method='post' action='sv'>"
|
"<fieldset><legend style='text-align:left;'><b> " D_KNX_PARAMETERS " </b></legend><form method='post' action='kn'>"
|
||||||
"<input id='w' name='w' value='8,0' hidden>"
|
|
||||||
"<br/><center>"
|
"<br/><center>"
|
||||||
"<b>" D_KNX_PHYSICAL_ADDRESS " </b>"
|
"<b>" D_KNX_PHYSICAL_ADDRESS " </b>"
|
||||||
"<input style='width:12%;' type='number' name='area' min='0' max='15' value='{kna'> . "
|
"<input style='width:12%;' type='number' name='area' min='0' max='15' value='{kna'> . "
|
||||||
|
@ -398,21 +468,21 @@ const char HTTP_FORM_KNX_OPT[] PROGMEM =
|
||||||
"<option value='{vop}'>{nop}</option>";
|
"<option value='{vop}'>{nop}</option>";
|
||||||
|
|
||||||
const char HTTP_FORM_KNX_GA[] PROGMEM =
|
const char HTTP_FORM_KNX_GA[] PROGMEM =
|
||||||
"<input style='width:12%;' type='number' name='GAfnum' min='0' max='31' value='0'> / "
|
"<input style='width:12%;' type='number' id='GAfnum' name='GAfnum' min='0' max='31' value='0'> / "
|
||||||
"<input style='width:12%;' type='number' name='GAarea' min='0' max='7' value='0'> / "
|
"<input style='width:12%;' type='number' id='GAarea' name='GAarea' min='0' max='7' value='0'> / "
|
||||||
"<input style='width:12%;' type='number' name='GAfdef' min='0' max='255' value='0'> ";
|
"<input style='width:12%;' type='number' id='GAfdef' name='GAfdef' min='0' max='255' value='0'> ";
|
||||||
|
|
||||||
const char HTTP_FORM_KNX_ADD_BTN[] PROGMEM =
|
const char HTTP_FORM_KNX_ADD_BTN[] PROGMEM =
|
||||||
"<button type='submit' name='btn_add' value='{btnval}' style='width:18%;'>" D_ADD "</button><br/><br/>"
|
"<button type='submit' onclick='fncbtnadd()' btndis name='btn_add' value='{btnval}' style='width:18%;'>" D_ADD "</button><br/><br/>"
|
||||||
"<table style='width:80%; font-size: 14px;'><col width='250'><col width='30'>";
|
"<table style='width:80%; font-size: 14px;'><col width='250'><col width='30'>";
|
||||||
|
|
||||||
const char HTTP_FORM_KNX_ADD_TABLE_ROW[] PROGMEM =
|
const char HTTP_FORM_KNX_ADD_TABLE_ROW[] PROGMEM =
|
||||||
"<tr><td><b>{optex} -> GAfnum / GAarea / GAfdef </b></td>"
|
"<tr><td><b>{optex} -> GAfnum / GAarea / GAfdef </b></td>"
|
||||||
"<td><button type='submit' name='btn_del' value='{opval}' style='background-color: #f44336;'> " D_DELETE " </button></td></tr>";
|
"<td><button type='submit' name='btn_del_ga' value='{opval}' style='background-color: #f44336;'> " D_DELETE " </button></td></tr>";
|
||||||
|
|
||||||
const char HTTP_FORM_KNX3[] PROGMEM =
|
const char HTTP_FORM_KNX3[] PROGMEM =
|
||||||
"</table></center></fieldset><br/>"
|
"</table></center></fieldset><br/>"
|
||||||
"<fieldset><center>"
|
"<fieldset><form method='post' action='kn'><center>"
|
||||||
"<b>" D_KNX_GROUP_ADDRESS_TO_READ "</b><hr>";
|
"<b>" D_KNX_GROUP_ADDRESS_TO_READ "</b><hr>";
|
||||||
|
|
||||||
const char HTTP_FORM_KNX4[] PROGMEM =
|
const char HTTP_FORM_KNX4[] PROGMEM =
|
||||||
|
@ -420,97 +490,227 @@ const char HTTP_FORM_KNX4[] PROGMEM =
|
||||||
|
|
||||||
const char HTTP_FORM_KNX_ADD_TABLE_ROW2[] PROGMEM =
|
const char HTTP_FORM_KNX_ADD_TABLE_ROW2[] PROGMEM =
|
||||||
"<tr><td><b>GAfnum / GAarea / GAfdef -> {optex}</b></td>"
|
"<tr><td><b>GAfnum / GAarea / GAfdef -> {optex}</b></td>"
|
||||||
"<td><button type='submit' name='btn_del' value='{opval}' style='background-color: #f44336;'> " D_DELETE " </button></td></tr>";
|
"<td><button type='submit' name='btn_del_cb' value='{opval}' style='background-color: #f44336;'> " D_DELETE " </button></td></tr>";
|
||||||
|
|
||||||
|
|
||||||
void HandleKNXConfiguration()
|
void HandleKNXConfiguration()
|
||||||
{
|
{
|
||||||
|
char tmp[100];
|
||||||
|
String stmp;
|
||||||
|
|
||||||
if (HTTP_USER == webserver_state) {
|
if (HTTP_USER == webserver_state) {
|
||||||
HandleRoot();
|
HandleRoot();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
AddLog_P(LOG_LEVEL_DEBUG, S_LOG_HTTP, S_CONFIGURE_KNX);
|
AddLog_P(LOG_LEVEL_DEBUG, S_LOG_HTTP, S_CONFIGURE_KNX);
|
||||||
|
|
||||||
String page = FPSTR(HTTP_HEAD);
|
if ( WebServer->hasArg("save") ) {
|
||||||
page.replace(F("{v}"), FPSTR(S_CONFIGURE_KNX));
|
KNX_Save_Settings();
|
||||||
page += FPSTR(HTTP_HEAD_STYLE);
|
HandleConfiguration();
|
||||||
page.replace(F("340px"), F("530px"));
|
}
|
||||||
page += FPSTR(HTTP_FORM_KNX);
|
else
|
||||||
page.replace(F("{kna"), String(KNX_physs_addr.pa.area));
|
{
|
||||||
page.replace(F("{knl"), String(KNX_physs_addr.pa.line));
|
if ( WebServer->hasArg("btn_add") ) {
|
||||||
page.replace(F("{knm"), String(KNX_physs_addr.pa.member));
|
if ( WebServer->arg("btn_add") == "1" ) {
|
||||||
if ( Settings.flag.knx_enabled ) { page += F(" checked"); }
|
|
||||||
|
|
||||||
page += FPSTR(HTTP_FORM_KNX2);
|
stmp = WebServer->arg("GAop"); //option selected
|
||||||
for (byte i = 0; i < KNX_MAX_device_param ; i++)
|
byte GAop = stmp.toInt();
|
||||||
{
|
stmp = WebServer->arg("GA_FNUM");
|
||||||
if ( device_param[i].show )
|
byte GA_FNUM = stmp.toInt();
|
||||||
{
|
stmp = WebServer->arg("GA_AREA");
|
||||||
page += FPSTR(HTTP_FORM_KNX_OPT);
|
byte GA_AREA = stmp.toInt();
|
||||||
page.replace(F("{vop}"), String(device_param[i].type));
|
stmp = WebServer->arg("GA_FDEF");
|
||||||
page.replace(F("{nop}"), String(device_param_ga[i]));
|
byte GA_FDEF = stmp.toInt();
|
||||||
|
|
||||||
|
KNX_ADD_GA( GAop, GA_FNUM, GA_AREA, GA_FDEF );
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
stmp = WebServer->arg("CBop"); //option selected
|
||||||
|
byte CBop = stmp.toInt();
|
||||||
|
stmp = WebServer->arg("CB_FNUM");
|
||||||
|
byte CB_FNUM = stmp.toInt();
|
||||||
|
stmp = WebServer->arg("CB_AREA");
|
||||||
|
byte CB_AREA = stmp.toInt();
|
||||||
|
stmp = WebServer->arg("CB_FDEF");
|
||||||
|
byte CB_FDEF = stmp.toInt();
|
||||||
|
|
||||||
|
KNX_ADD_CB( CB_FNUM, CB_AREA, CB_FDEF, CBop );
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
else if ( WebServer->hasArg("btn_del_ga") )
|
||||||
page += F("</select> -> ");
|
|
||||||
page += FPSTR(HTTP_FORM_KNX_GA);
|
|
||||||
page += FPSTR(HTTP_FORM_KNX_ADD_BTN);
|
|
||||||
page.replace(F("{btnval}"), String(1));
|
|
||||||
for (byte i = 0; i < Settings.knx_GA_registered ; i++)
|
|
||||||
{
|
|
||||||
if ( Settings.knx_GA_param[i] )
|
|
||||||
{
|
{
|
||||||
page += FPSTR(HTTP_FORM_KNX_ADD_TABLE_ROW);
|
|
||||||
page.replace(F("{opval}"), String(Settings.knx_GA_param[i]));
|
stmp = WebServer->arg("btn_del_ga");
|
||||||
page.replace(F("{optex}"), String(device_param_ga[Settings.knx_GA_param[i]-1]));
|
byte GA_NUM = stmp.toInt();
|
||||||
KNX_addr.value = Settings.knx_GA_addr[i];
|
|
||||||
page.replace(F("GAfnum"), String(KNX_addr.ga.area));
|
KNX_DEL_GA(GA_NUM);
|
||||||
page.replace(F("GAarea"), String(KNX_addr.ga.line));
|
|
||||||
page.replace(F("GAfdef"), String(KNX_addr.ga.member));
|
|
||||||
}
|
}
|
||||||
}
|
else if ( WebServer->hasArg("btn_del_cb") )
|
||||||
page += FPSTR(HTTP_FORM_KNX3);
|
|
||||||
page += FPSTR(HTTP_FORM_KNX_GA);
|
|
||||||
page.replace(F("GAfnum"), F("CBfnum"));
|
|
||||||
page.replace(F("GAarea"), F("CBarea"));
|
|
||||||
page.replace(F("GAfdef"), F("CBfdef"));
|
|
||||||
page += FPSTR(HTTP_FORM_KNX4);
|
|
||||||
for (byte i = 0; i < KNX_MAX_device_param ; i++)
|
|
||||||
{
|
|
||||||
if ( device_param[i].show )
|
|
||||||
{
|
{
|
||||||
page += FPSTR(HTTP_FORM_KNX_OPT);
|
|
||||||
page.replace(F("{vop}"), String(device_param[i].type));
|
stmp = WebServer->arg("btn_del_cb");
|
||||||
page.replace(F("{nop}"), String(device_param_cb[i]));
|
byte CB_NUM = stmp.toInt();
|
||||||
|
|
||||||
|
KNX_DEL_CB(CB_NUM);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
page += F("</select> ");
|
String page = FPSTR(HTTP_HEAD);
|
||||||
page += FPSTR(HTTP_FORM_KNX_ADD_BTN);
|
page.replace(F("{v}"), FPSTR(S_CONFIGURE_KNX));
|
||||||
page.replace(F("{btnval}"), String(2));
|
page += FPSTR(HTTP_HEAD_STYLE);
|
||||||
for (byte i = 0; i < Settings.knx_CB_registered ; i++)
|
page.replace(F("340px"), F("530px"));
|
||||||
{
|
page += FPSTR(HTTP_FORM_KNX);
|
||||||
if ( Settings.knx_CB_param[i] )
|
KNX_physs_addr.value = Settings.knx_physsical_addr;
|
||||||
|
page.replace(F("{kna"), String(KNX_physs_addr.pa.area));
|
||||||
|
page.replace(F("{knl"), String(KNX_physs_addr.pa.line));
|
||||||
|
page.replace(F("{knm"), String(KNX_physs_addr.pa.member));
|
||||||
|
if ( Settings.flag.knx_enabled ) { page += F(" checked"); }
|
||||||
|
|
||||||
|
page += FPSTR(HTTP_FORM_KNX2);
|
||||||
|
for (byte i = 0; i < KNX_MAX_device_param ; i++)
|
||||||
{
|
{
|
||||||
page += FPSTR(HTTP_FORM_KNX_ADD_TABLE_ROW2);
|
if ( device_param[i].show )
|
||||||
page.replace(F("{opval}"), String(Settings.knx_CB_param[i]));
|
{
|
||||||
page.replace(F("{optex}"), String(device_param_cb[Settings.knx_CB_param[i]-1]));
|
page += FPSTR(HTTP_FORM_KNX_OPT);
|
||||||
KNX_addr.value = Settings.knx_CB_addr[i];
|
page.replace(F("{vop}"), String(device_param[i].type));
|
||||||
page.replace(F("GAfnum"), String(KNX_addr.ga.area));
|
page.replace(F("{nop}"), String(device_param_ga[i]));
|
||||||
page.replace(F("GAarea"), String(KNX_addr.ga.line));
|
}
|
||||||
page.replace(F("GAfdef"), String(KNX_addr.ga.member));
|
|
||||||
}
|
}
|
||||||
|
page += F("</select> -> ");
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_GA);
|
||||||
|
page.replace(F("GAfnum"), F("GA_FNUM"));
|
||||||
|
page.replace(F("GAarea"), F("GA_AREA"));
|
||||||
|
page.replace(F("GAfdef"), F("GA_FDEF"));
|
||||||
|
page.replace(F("GAfnum"), F("GA_FNUM"));
|
||||||
|
page.replace(F("GAarea"), F("GA_AREA"));
|
||||||
|
page.replace(F("GAfdef"), F("GA_FDEF"));
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_ADD_BTN);
|
||||||
|
page.replace(F("{btnval}"), String(1));
|
||||||
|
if (Settings.knx_GA_registered < MAX_KNX_GA) {
|
||||||
|
page.replace(F("btndis"), F(" "));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
page.replace(F("btndis"), F("disabled"));
|
||||||
|
}
|
||||||
|
page.replace(F("fncbtnadd"), F("GAwarning"));
|
||||||
|
for (byte i = 0; i < Settings.knx_GA_registered ; i++)
|
||||||
|
{
|
||||||
|
if ( Settings.knx_GA_param[i] )
|
||||||
|
{
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_ADD_TABLE_ROW);
|
||||||
|
page.replace(F("{opval}"), String(Settings.knx_GA_param[i]));
|
||||||
|
page.replace(F("{optex}"), String(device_param_ga[Settings.knx_GA_param[i]-1]));
|
||||||
|
KNX_addr.value = Settings.knx_GA_addr[i];
|
||||||
|
page.replace(F("GAfnum"), String(KNX_addr.ga.area));
|
||||||
|
page.replace(F("GAarea"), String(KNX_addr.ga.line));
|
||||||
|
page.replace(F("GAfdef"), String(KNX_addr.ga.member));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
page += FPSTR(HTTP_FORM_KNX3);
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_GA);
|
||||||
|
page.replace(F("GAfnum"), F("CB_FNUM"));
|
||||||
|
page.replace(F("GAarea"), F("CB_AREA"));
|
||||||
|
page.replace(F("GAfdef"), F("CB_FDEF"));
|
||||||
|
page.replace(F("GAfnum"), F("CB_FNUM"));
|
||||||
|
page.replace(F("GAarea"), F("CB_AREA"));
|
||||||
|
page.replace(F("GAfdef"), F("CB_FDEF"));
|
||||||
|
page += FPSTR(HTTP_FORM_KNX4);
|
||||||
|
for (byte i = 0; i < KNX_MAX_device_param ; i++)
|
||||||
|
{
|
||||||
|
if ( device_param[i].show )
|
||||||
|
{
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_OPT);
|
||||||
|
page.replace(F("{vop}"), String(device_param[i].type));
|
||||||
|
page.replace(F("{nop}"), String(device_param_cb[i]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
page += F("</select> ");
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_ADD_BTN);
|
||||||
|
page.replace(F("{btnval}"), String(2));
|
||||||
|
if (Settings.knx_CB_registered < MAX_KNX_CB) {
|
||||||
|
page.replace(F("btndis"), F(" "));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
page.replace(F("btndis"), F("disabled"));
|
||||||
|
}
|
||||||
|
page.replace(F("fncbtnadd"), F("CBwarning"));
|
||||||
|
for (byte i = 0; i < Settings.knx_CB_registered ; i++)
|
||||||
|
{
|
||||||
|
if ( Settings.knx_CB_param[i] )
|
||||||
|
{
|
||||||
|
page += FPSTR(HTTP_FORM_KNX_ADD_TABLE_ROW2);
|
||||||
|
page.replace(F("{opval}"), String(Settings.knx_CB_param[i]));
|
||||||
|
page.replace(F("{optex}"), String(device_param_cb[Settings.knx_CB_param[i]-1]));
|
||||||
|
KNX_addr.value = Settings.knx_CB_addr[i];
|
||||||
|
page.replace(F("GAfnum"), String(KNX_addr.ga.area));
|
||||||
|
page.replace(F("GAarea"), String(KNX_addr.ga.line));
|
||||||
|
page.replace(F("GAfdef"), String(KNX_addr.ga.member));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
page += F("</table></center></fieldset>");
|
||||||
|
page += F("<br/><button name='save' type='submit'>" D_SAVE "</button></form></fieldset>");
|
||||||
|
page += FPSTR(HTTP_BTN_CONF);
|
||||||
|
|
||||||
|
page.replace( F("</script>"),
|
||||||
|
F("function GAwarning()"
|
||||||
|
"{"
|
||||||
|
"var GA_FNUM = document.getElementById('GA_FNUM');"
|
||||||
|
"var GA_AREA = document.getElementById('GA_AREA');"
|
||||||
|
"var GA_FDEF = document.getElementById('GA_FDEF');"
|
||||||
|
"if ( GA_FNUM != null && GA_FNUM.value == '0' && GA_AREA.value == '0' && GA_FDEF.value == '0' ) {"
|
||||||
|
"alert('" D_KNX_WARNING "');"
|
||||||
|
"}"
|
||||||
|
"}"
|
||||||
|
"function CBwarning()"
|
||||||
|
"{"
|
||||||
|
"var CB_FNUM = document.getElementById('CB_FNUM');"
|
||||||
|
"var CB_AREA = document.getElementById('CB_AREA');"
|
||||||
|
"var CB_FDEF = document.getElementById('CB_FDEF');"
|
||||||
|
"if ( CB_FNUM != null && CB_FNUM.value == '0' && CB_AREA.value == '0' && CB_FDEF.value == '0' ) {"
|
||||||
|
"alert('" D_KNX_WARNING "');"
|
||||||
|
"}"
|
||||||
|
"}"
|
||||||
|
"</script>") );
|
||||||
|
ShowPage(page);
|
||||||
}
|
}
|
||||||
page += F("</table></center></fieldset>");
|
|
||||||
page += FPSTR(HTTP_FORM_END);
|
|
||||||
page += FPSTR(HTTP_BTN_CONF);
|
|
||||||
ShowPage(page);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void KNX_Save_Settings()
|
void KNX_Save_Settings()
|
||||||
{
|
{
|
||||||
|
String stmp;
|
||||||
|
address_t KNX_physs_addr;
|
||||||
|
|
||||||
|
Settings.flag.knx_enabled = WebServer->hasArg("b1");
|
||||||
|
|
||||||
|
stmp = WebServer->arg("area");
|
||||||
|
KNX_physs_addr.pa.area = stmp.toInt();
|
||||||
|
stmp = WebServer->arg("line");
|
||||||
|
KNX_physs_addr.pa.line = stmp.toInt();
|
||||||
|
stmp = WebServer->arg("member");
|
||||||
|
KNX_physs_addr.pa.member = stmp.toInt();
|
||||||
|
|
||||||
|
Settings.knx_physsical_addr = KNX_physs_addr.value;
|
||||||
|
// Set Physical KNX Address of the device
|
||||||
|
knx.physical_address_set( KNX_physs_addr );
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "KNX_ENABLED: %d "),
|
||||||
|
Settings.flag.knx_enabled);
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
|
|
||||||
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_KNX "KNX_PHYSADDR: %d.%d.%d "),
|
||||||
|
KNX_physs_addr.pa.area, KNX_physs_addr.pa.line, KNX_physs_addr.pa.member );
|
||||||
|
AddLog(LOG_LEVEL_INFO);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // USE_WEBSERVER
|
#endif // USE_WEBSERVER
|
||||||
|
|
||||||
|
|
||||||
|
@ -529,7 +729,7 @@ boolean Xdrv10(byte function)
|
||||||
break;
|
break;
|
||||||
case FUNC_LOOP:
|
case FUNC_LOOP:
|
||||||
knx.loop(); // Process knx events
|
knx.loop(); // Process knx events
|
||||||
// It is not used by actual config of asyncUDP branch of ESP-KNX-IP Library,
|
// It is not used by the actual config of asyncUDP branch of ESP-KNX-IP Library,
|
||||||
// but is left here for compatibility with upcoming features of ESP-KNX-IP Library
|
// but is left here for compatibility with upcoming features of ESP-KNX-IP Library
|
||||||
break;
|
break;
|
||||||
// case FUNC_COMMAND:
|
// case FUNC_COMMAND:
|
||||||
|
|
Loading…
Reference in New Issue