2017-01-28 13:41:01 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2017 Theo Arends. All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
- Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
- Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_DOMOTICZ
|
|
|
|
|
|
|
|
#define DOMOTICZ_MAX_SENSORS 5
|
|
|
|
|
2017-04-24 17:25:53 +01:00
|
|
|
#ifdef USE_WEBSERVER
|
2017-01-28 13:41:01 +00:00
|
|
|
const char HTTP_FORM_DOMOTICZ[] PROGMEM =
|
|
|
|
"<fieldset><legend><b> Domoticz parameters </b></legend><form method='post' action='sv'>"
|
|
|
|
"<input id='w' name='w' value='4' hidden><input id='r' name='r' value='1' hidden>"
|
|
|
|
"<br/><table style='width:97%'>"
|
|
|
|
"<tr><td><b>In topic</b> (" DOMOTICZ_IN_TOPIC ")</td><td style='width:30%'><input id='it' name='it' length=32 placeholder='" DOMOTICZ_IN_TOPIC "' value='{d1}'></td></tr>"
|
|
|
|
"<tr><td><b>Out topic</b> (" DOMOTICZ_OUT_TOPIC ")</td><td><input id='ot' name='ot' length=32 placeholder='" DOMOTICZ_OUT_TOPIC "' value='{d2}'></td></tr>";
|
2017-04-03 15:38:15 +01:00
|
|
|
const char HTTP_FORM_DOMOTICZ_RELAY[] PROGMEM =
|
|
|
|
"<tr><td><b>Idx {1</b></td></td><td><input id='r{1' name='r{1' length=8 placeholder='0' value='{2'></td></tr>"
|
|
|
|
"<tr><td><b>Key idx {1</b></td><td><input id='k{1' name='k{1' length=8 placeholder='0' value='{3'></td></tr>";
|
|
|
|
const char HTTP_FORM_DOMOTICZ_SWITCH[] PROGMEM =
|
|
|
|
"<tr><td><b>Switch idx {1</b></td><td><input id='s{1' name='s{1' length=8 placeholder='0' value='{4'></td></tr>";
|
|
|
|
const char HTTP_FORM_DOMOTICZ_SENSOR[] PROGMEM =
|
|
|
|
"<tr><td><b>Sensor idx {1</b> - {2</td><td><input id='l{1' name='l{1' length=8 placeholder='0' value='{5'></td></tr>";
|
|
|
|
const char HTTP_FORM_DOMOTICZ_TIMER[] PROGMEM =
|
|
|
|
"<tr><td><b>Update timer</b> (" STR(DOMOTICZ_UPDATE_TIMER) ")</td><td><input id='ut' name='ut' length=32 placeholder='" STR(DOMOTICZ_UPDATE_TIMER) "' value='{6'</td></tr>";
|
2017-04-24 17:25:53 +01:00
|
|
|
#endif // USE_WEBSERVER
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
const char domoticz_sensors[DOMOTICZ_MAX_SENSORS][14] PROGMEM =
|
|
|
|
{ "Temp", "Temp,Hum", "Temp,Hum,Baro", "Power,Energy", "Illuminance" };
|
|
|
|
|
|
|
|
int domoticz_update_timer = 0;
|
|
|
|
byte domoticz_update_flag = 1;
|
|
|
|
|
|
|
|
void mqtt_publishDomoticzPowerState(byte device)
|
|
|
|
{
|
2017-03-05 14:07:30 +00:00
|
|
|
char svalue[64]; // was MESSZ
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
if (sysCfg.domoticz_relay_idx[device -1] && (strlen(sysCfg.domoticz_in_topic) != 0)) {
|
2017-04-25 17:24:42 +01:00
|
|
|
if ((device < 1) || (device > Maxdevice)) {
|
|
|
|
device = 1;
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
|
2017-04-25 17:24:42 +01:00
|
|
|
if (SONOFF_LED == sysCfg.module) {
|
2017-01-28 13:41:01 +00:00
|
|
|
snprintf_P(svalue, sizeof(svalue), PSTR("{\"idx\":%d,\"nvalue\":2,\"svalue\":\"%d\"}"),
|
|
|
|
sysCfg.domoticz_relay_idx[device -1], sysCfg.led_dimmer[device -1]);
|
|
|
|
mqtt_publish(sysCfg.domoticz_in_topic, svalue);
|
|
|
|
}
|
2017-04-25 17:24:42 +01:00
|
|
|
else if ((1 == device) && (pin[GPIO_WS2812] < 99)) {
|
2017-01-28 13:41:01 +00:00
|
|
|
snprintf_P(svalue, sizeof(svalue), PSTR("{\"idx\":%d,\"nvalue\":2,\"svalue\":\"%d\"}"),
|
|
|
|
sysCfg.domoticz_relay_idx[device -1], sysCfg.ws_dimmer);
|
|
|
|
mqtt_publish(sysCfg.domoticz_in_topic, svalue);
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, sizeof(svalue), PSTR("{\"idx\":%d,\"nvalue\":%d,\"svalue\":\"\"}"),
|
|
|
|
sysCfg.domoticz_relay_idx[device -1], (power & (0x01 << (device -1))) ? 1 : 0);
|
|
|
|
mqtt_publish(sysCfg.domoticz_in_topic, svalue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_updatePowerState(byte device)
|
|
|
|
{
|
2017-04-25 17:24:42 +01:00
|
|
|
if (domoticz_update_flag) {
|
|
|
|
mqtt_publishDomoticzPowerState(device);
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
domoticz_update_flag = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_mqttUpdate()
|
|
|
|
{
|
|
|
|
if ((sysCfg.domoticz_update_timer || domoticz_update_timer) && sysCfg.domoticz_relay_idx[0]) {
|
|
|
|
domoticz_update_timer--;
|
|
|
|
if (domoticz_update_timer <= 0) {
|
|
|
|
domoticz_update_timer = sysCfg.domoticz_update_timer;
|
2017-04-25 17:24:42 +01:00
|
|
|
for (byte i = 1; i <= Maxdevice; i++) {
|
|
|
|
mqtt_publishDomoticzPowerState(i);
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_setUpdateTimer(uint16_t value)
|
|
|
|
{
|
|
|
|
domoticz_update_timer = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_mqttSubscribe()
|
|
|
|
{
|
|
|
|
if (sysCfg.domoticz_relay_idx[0] && (strlen(sysCfg.domoticz_out_topic) != 0)) {
|
|
|
|
char stopic[TOPSZ];
|
|
|
|
snprintf_P(stopic, sizeof(stopic), PSTR("%s/#"), sysCfg.domoticz_out_topic); // domoticz topic
|
|
|
|
mqttClient.subscribe(stopic);
|
|
|
|
mqttClient.loop(); // Solve LmacRxBlk:1 messages
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean domoticz_update()
|
|
|
|
{
|
|
|
|
return domoticz_update_flag;
|
|
|
|
}
|
|
|
|
|
2017-02-17 16:18:41 +00:00
|
|
|
/*
|
|
|
|
* ArduinoJSON Domoticz Switch entry used to calculate jsonBuf: JSON_OBJECT_SIZE(11) + 129 = 313
|
|
|
|
{
|
|
|
|
"Battery" : 255,
|
|
|
|
"RSSI" : 12,
|
|
|
|
"dtype" : "Light/Switch",
|
|
|
|
"id" : "000140E7",
|
|
|
|
"idx" : 159,
|
|
|
|
"name" : "Sonoff1",
|
|
|
|
"nvalue" : 1,
|
|
|
|
"stype" : "Switch",
|
|
|
|
"svalue1" : "0",
|
|
|
|
"switchType" : "Dimmer",
|
|
|
|
"unit" : 1
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2017-01-28 13:41:01 +00:00
|
|
|
boolean domoticz_mqttData(char *topicBuf, uint16_t stopicBuf, char *dataBuf, uint16_t sdataBuf)
|
|
|
|
{
|
2017-04-25 17:24:42 +01:00
|
|
|
char log[LOGSZ];
|
|
|
|
char stemp1[10];
|
2017-01-28 13:41:01 +00:00
|
|
|
unsigned long idx = 0;
|
2017-04-25 17:24:42 +01:00
|
|
|
int16_t nvalue;
|
|
|
|
int16_t found = 0;
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
domoticz_update_flag = 1;
|
|
|
|
if (!strncmp(topicBuf, sysCfg.domoticz_out_topic, strlen(sysCfg.domoticz_out_topic)) != 0) {
|
2017-04-25 17:24:42 +01:00
|
|
|
if (sdataBuf < 20) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-02-17 16:18:41 +00:00
|
|
|
StaticJsonBuffer<400> jsonBuf;
|
|
|
|
JsonObject& domoticz = jsonBuf.parseObject(dataBuf);
|
2017-04-25 17:24:42 +01:00
|
|
|
if (!domoticz.success()) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
// if (strcmp_P(domoticz["dtype"],PSTR("Light/Switch"))) {
|
2017-04-25 17:24:42 +01:00
|
|
|
// return 1;
|
|
|
|
// }
|
2017-02-17 16:18:41 +00:00
|
|
|
idx = domoticz["idx"];
|
|
|
|
nvalue = domoticz["nvalue"];
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
snprintf_P(log, sizeof(log), PSTR("DMTZ: idx %d, nvalue %d"), idx, nvalue);
|
|
|
|
addLog(LOG_LEVEL_DEBUG_MORE, log);
|
|
|
|
|
|
|
|
if (nvalue >= 0 && nvalue <= 2) {
|
|
|
|
for (byte i = 0; i < Maxdevice; i++) {
|
|
|
|
if ((idx > 0) && (idx == sysCfg.domoticz_relay_idx[i])) {
|
|
|
|
snprintf_P(stemp1, sizeof(stemp1), PSTR("%d"), i +1);
|
2017-04-25 17:24:42 +01:00
|
|
|
if (2 == nvalue) {
|
2017-02-17 16:18:41 +00:00
|
|
|
nvalue = domoticz["svalue1"];
|
2017-04-25 17:24:42 +01:00
|
|
|
if ((pin[GPIO_WS2812] < 99) && (sysCfg.ws_dimmer == nvalue)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ((SONOFF_LED == sysCfg.module) && (sysCfg.led_dimmer[i] == nvalue)) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
snprintf_P(topicBuf, stopicBuf, PSTR("%s/%s/DIMMER%s"),
|
2017-03-25 16:24:11 +00:00
|
|
|
sysCfg.mqtt_prefix[0], sysCfg.mqtt_topic, (Maxdevice > 1) ? stemp1 : "");
|
2017-01-28 13:41:01 +00:00
|
|
|
snprintf_P(dataBuf, sdataBuf, PSTR("%d"), nvalue);
|
|
|
|
found = 1;
|
|
|
|
} else {
|
2017-04-25 17:24:42 +01:00
|
|
|
if (((power >> i) &1) == nvalue) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-03-29 17:42:05 +01:00
|
|
|
snprintf_P(topicBuf, stopicBuf, PSTR("%s/%s/POWER%s"),
|
|
|
|
sysCfg.mqtt_prefix[0], sysCfg.mqtt_topic, (Maxdevice > 1) ? stemp1 : "");
|
2017-01-28 13:41:01 +00:00
|
|
|
snprintf_P(dataBuf, sdataBuf, PSTR("%d"), nvalue);
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-25 17:24:42 +01:00
|
|
|
if (!found) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
snprintf_P(log, sizeof(log), PSTR("DMTZ: Receive topic %s, data %s"), topicBuf, dataBuf);
|
|
|
|
addLog(LOG_LEVEL_DEBUG_MORE, log);
|
|
|
|
|
|
|
|
domoticz_update_flag = 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Commands
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2017-04-03 15:38:15 +01:00
|
|
|
boolean domoticz_command(const char *type, uint16_t index, char *dataBuf, uint16_t data_len, int16_t payload, char *svalue, uint16_t ssvalue)
|
2017-01-28 13:41:01 +00:00
|
|
|
{
|
2017-01-28 15:31:11 +00:00
|
|
|
boolean serviced = true;
|
|
|
|
|
2017-04-29 13:40:53 +01:00
|
|
|
if (!strncmp_P(type,PSTR("DOMOTICZ"),8)) {
|
|
|
|
if (!strcmp_P(type +8,PSTR("INTOPIC"))) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (data_len < sizeof(sysCfg.domoticz_in_topic))) {
|
2017-04-25 17:24:42 +01:00
|
|
|
strlcpy(sysCfg.domoticz_in_topic, (1 == payload) ? DOMOTICZ_IN_TOPIC : dataBuf, sizeof(sysCfg.domoticz_in_topic));
|
2017-04-03 15:38:15 +01:00
|
|
|
restartflag = 2;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzInTopic\":\"%s\"}"), sysCfg.domoticz_in_topic);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("OUTTOPIC"))) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (data_len < sizeof(sysCfg.domoticz_out_topic))) {
|
2017-04-25 17:24:42 +01:00
|
|
|
strlcpy(sysCfg.domoticz_out_topic, (1 == payload) ? DOMOTICZ_OUT_TOPIC : dataBuf, sizeof(sysCfg.domoticz_out_topic));
|
2017-04-03 15:38:15 +01:00
|
|
|
restartflag = 2;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzOutTopic\":\"%s\"}"), sysCfg.domoticz_out_topic);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("IDX")) && (index > 0) && (index <= Maxdevice)) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (payload >= 0)) {
|
|
|
|
sysCfg.domoticz_relay_idx[index -1] = payload;
|
|
|
|
restartflag = 2;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzIdx%d\":%d}"), index, sysCfg.domoticz_relay_idx[index -1]);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("KEYIDX")) && (index > 0) && (index <= Maxdevice)) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (payload >= 0)) {
|
|
|
|
sysCfg.domoticz_key_idx[index -1] = payload;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzKeyIdx%d\":%d}"), index, sysCfg.domoticz_key_idx[index -1]);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("SWITCHIDX")) && (index > 0) && (index <= Maxdevice)) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (payload >= 0)) {
|
|
|
|
sysCfg.domoticz_switch_idx[index -1] = payload;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzSwitchIdx%d\":%d}"), index, sysCfg.domoticz_key_idx[index -1]);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("SENSORIDX")) && (index > 0) && (index <= DOMOTICZ_MAX_SENSORS)) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (payload >= 0)) {
|
|
|
|
sysCfg.domoticz_sensor_idx[index -1] = payload;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzSensorIdx%d\":%d}"), index, sysCfg.domoticz_sensor_idx[index -1]);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-29 13:40:53 +01:00
|
|
|
else if (!strcmp_P(type +8,PSTR("UPDATETIMER"))) {
|
2017-04-03 15:38:15 +01:00
|
|
|
if ((data_len > 0) && (payload >= 0) && (payload < 3601)) {
|
|
|
|
sysCfg.domoticz_update_timer = payload;
|
|
|
|
}
|
|
|
|
snprintf_P(svalue, ssvalue, PSTR("{\"DomoticzUpdateTimer\":%d}"), sysCfg.domoticz_update_timer);
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-03 15:38:15 +01:00
|
|
|
else serviced = false;
|
2017-01-28 15:31:11 +00:00
|
|
|
}
|
2017-04-03 15:38:15 +01:00
|
|
|
else serviced = false;
|
2017-01-28 15:31:11 +00:00
|
|
|
return serviced;
|
|
|
|
}
|
|
|
|
|
2017-01-28 13:41:01 +00:00
|
|
|
boolean domoticz_button(byte key, byte device, byte state, byte svalflg)
|
|
|
|
{
|
|
|
|
if ((sysCfg.domoticz_key_idx[device -1] || sysCfg.domoticz_switch_idx[device -1]) && (svalflg)) {
|
2017-03-05 14:07:30 +00:00
|
|
|
char svalue[80]; // was MESSZ
|
2017-01-28 13:41:01 +00:00
|
|
|
|
|
|
|
snprintf_P(svalue, sizeof(svalue), PSTR("{\"command\":\"switchlight\",\"idx\":%d,\"switchcmd\":\"%s\"}"),
|
2017-04-25 17:24:42 +01:00
|
|
|
(key) ? sysCfg.domoticz_switch_idx[device -1] : sysCfg.domoticz_key_idx[device -1], (state) ? (2 == state) ? "Toggle" : "On" : "Off");
|
2017-01-28 13:41:01 +00:00
|
|
|
mqtt_publish(sysCfg.domoticz_in_topic, svalue);
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Sensors
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
|
|
|
uint8_t dom_hum_stat(char *hum)
|
|
|
|
{
|
|
|
|
uint8_t h = atoi(hum);
|
|
|
|
return (!h) ? 0 : (h < 40) ? 2 : (h > 70) ? 3 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dom_sensor(byte idx, char *data)
|
|
|
|
{
|
|
|
|
char dmess[64];
|
|
|
|
|
|
|
|
if (sysCfg.domoticz_sensor_idx[idx] && (strlen(sysCfg.domoticz_in_topic) != 0)) {
|
|
|
|
snprintf_P(dmess, sizeof(dmess), PSTR("{\"idx\":%d,\"nvalue\":0,\"svalue\":\"%s\"}"),
|
|
|
|
sysCfg.domoticz_sensor_idx[idx], data);
|
|
|
|
mqtt_publish(sysCfg.domoticz_in_topic, dmess);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_sensor1(char *temp)
|
|
|
|
{
|
|
|
|
dom_sensor(0, temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_sensor2(char *temp, char *hum)
|
|
|
|
{
|
|
|
|
char data[16];
|
|
|
|
snprintf_P(data, sizeof(data), PSTR("%s;%s;%d"), temp, hum, dom_hum_stat(hum));
|
|
|
|
dom_sensor(1, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_sensor3(char *temp, char *hum, char *baro)
|
|
|
|
{
|
|
|
|
char data[32];
|
|
|
|
snprintf_P(data, sizeof(data), PSTR("%s;%s;%d;%s;5"), temp, hum, dom_hum_stat(hum), baro);
|
|
|
|
dom_sensor(2, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_sensor4(uint16_t power, char *energy)
|
|
|
|
{
|
|
|
|
char data[16];
|
|
|
|
snprintf_P(data, sizeof(data), PSTR("%d;%s"), power, energy);
|
|
|
|
dom_sensor(3, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_sensor5(uint16_t lux)
|
|
|
|
{
|
|
|
|
char data[8];
|
|
|
|
snprintf_P(data, sizeof(data), PSTR("%d"), lux);
|
|
|
|
dom_sensor(4, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Presentation
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2017-02-06 09:08:40 +00:00
|
|
|
#ifdef USE_WEBSERVER
|
2017-01-28 13:41:01 +00:00
|
|
|
void handleDomoticz()
|
|
|
|
{
|
2017-04-25 17:24:42 +01:00
|
|
|
if (HTTP_USER == _httpflag) {
|
2017-01-28 13:41:01 +00:00
|
|
|
handleRoot();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
addLog_P(LOG_LEVEL_DEBUG, PSTR("HTTP: Handle Domoticz config"));
|
|
|
|
|
|
|
|
char stemp[20];
|
|
|
|
|
|
|
|
String page = FPSTR(HTTP_HEAD);
|
|
|
|
page.replace("{v}", "Configure Domoticz");
|
|
|
|
page += FPSTR(HTTP_FORM_DOMOTICZ);
|
|
|
|
page.replace("{d1}", String(sysCfg.domoticz_in_topic));
|
|
|
|
page.replace("{d2}", String(sysCfg.domoticz_out_topic));
|
2017-04-03 15:38:15 +01:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (i < Maxdevice) {
|
|
|
|
page += FPSTR(HTTP_FORM_DOMOTICZ_RELAY);
|
|
|
|
page.replace("{2", String((int)sysCfg.domoticz_relay_idx[i]));
|
|
|
|
page.replace("{3", String((int)sysCfg.domoticz_key_idx[i]));
|
|
|
|
}
|
|
|
|
if (pin[GPIO_SWT1 +i] < 99) {
|
|
|
|
page += FPSTR(HTTP_FORM_DOMOTICZ_SWITCH);
|
|
|
|
page.replace("{4", String((int)sysCfg.domoticz_switch_idx[i]));
|
|
|
|
}
|
2017-01-28 13:41:01 +00:00
|
|
|
page.replace("{1", String(i +1));
|
|
|
|
}
|
|
|
|
for (int i = 0; i < DOMOTICZ_MAX_SENSORS; i++) {
|
2017-04-03 15:38:15 +01:00
|
|
|
page += FPSTR(HTTP_FORM_DOMOTICZ_SENSOR);
|
2017-01-28 13:41:01 +00:00
|
|
|
page.replace("{1", String(i +1));
|
|
|
|
snprintf_P(stemp, sizeof(stemp), domoticz_sensors[i]);
|
|
|
|
page.replace("{2", stemp);
|
2017-04-03 15:38:15 +01:00
|
|
|
page.replace("{5", String((int)sysCfg.domoticz_sensor_idx[i]));
|
2017-01-28 13:41:01 +00:00
|
|
|
}
|
2017-04-03 15:38:15 +01:00
|
|
|
page += FPSTR(HTTP_FORM_DOMOTICZ_TIMER);
|
|
|
|
page.replace("{6", String((int)sysCfg.domoticz_update_timer));
|
2017-01-28 13:41:01 +00:00
|
|
|
page += F("</table>");
|
|
|
|
page += FPSTR(HTTP_FORM_END);
|
|
|
|
page += FPSTR(HTTP_BTN_CONF);
|
|
|
|
showPage(page);
|
|
|
|
}
|
|
|
|
|
|
|
|
void domoticz_saveSettings()
|
|
|
|
{
|
|
|
|
char log[LOGSZ], stemp[20];
|
|
|
|
|
|
|
|
strlcpy(sysCfg.domoticz_in_topic, (!strlen(webServer->arg("it").c_str())) ? DOMOTICZ_IN_TOPIC : webServer->arg("it").c_str(), sizeof(sysCfg.domoticz_in_topic));
|
|
|
|
strlcpy(sysCfg.domoticz_out_topic, (!strlen(webServer->arg("ot").c_str())) ? DOMOTICZ_OUT_TOPIC : webServer->arg("ot").c_str(), sizeof(sysCfg.domoticz_out_topic));
|
|
|
|
for (byte i = 0; i < 4; i++) {
|
|
|
|
snprintf_P(stemp, sizeof(stemp), PSTR("r%d"), i +1);
|
|
|
|
sysCfg.domoticz_relay_idx[i] = (!strlen(webServer->arg(stemp).c_str())) ? 0 : atoi(webServer->arg(stemp).c_str());
|
|
|
|
snprintf_P(stemp, sizeof(stemp), PSTR("k%d"), i +1);
|
|
|
|
sysCfg.domoticz_key_idx[i] = (!strlen(webServer->arg(stemp).c_str())) ? 0 : atoi(webServer->arg(stemp).c_str());
|
|
|
|
snprintf_P(stemp, sizeof(stemp), PSTR("s%d"), i +1);
|
|
|
|
sysCfg.domoticz_switch_idx[i] = (!strlen(webServer->arg(stemp).c_str())) ? 0 : atoi(webServer->arg(stemp).c_str());
|
|
|
|
}
|
|
|
|
for (byte i = 0; i < DOMOTICZ_MAX_SENSORS; i++) {
|
|
|
|
snprintf_P(stemp, sizeof(stemp), PSTR("l%d"), i +1);
|
|
|
|
sysCfg.domoticz_sensor_idx[i] = (!strlen(webServer->arg(stemp).c_str())) ? 0 : atoi(webServer->arg(stemp).c_str());
|
|
|
|
}
|
|
|
|
sysCfg.domoticz_update_timer = (!strlen(webServer->arg("ut").c_str())) ? DOMOTICZ_UPDATE_TIMER : atoi(webServer->arg("ut").c_str());
|
|
|
|
snprintf_P(log, sizeof(log), PSTR("HTTP: Domoticz in %s, out %s, idx %d, %d, %d, %d, update timer %d"),
|
|
|
|
sysCfg.domoticz_in_topic, sysCfg.domoticz_out_topic,
|
|
|
|
sysCfg.domoticz_relay_idx[0], sysCfg.domoticz_relay_idx[1], sysCfg.domoticz_relay_idx[2], sysCfg.domoticz_relay_idx[3],
|
|
|
|
sysCfg.domoticz_update_timer);
|
|
|
|
addLog(LOG_LEVEL_INFO, log);
|
|
|
|
snprintf_P(log, sizeof(log), PSTR("HTTP: key %d, %d, %d, %d, switch %d, %d, %d, %d, sensor %d, %d, %d, %d, %d"),
|
|
|
|
sysCfg.domoticz_key_idx[0], sysCfg.domoticz_key_idx[1], sysCfg.domoticz_key_idx[2], sysCfg.domoticz_key_idx[3],
|
|
|
|
sysCfg.domoticz_switch_idx[0], sysCfg.domoticz_switch_idx[1], sysCfg.domoticz_switch_idx[2], sysCfg.domoticz_switch_idx[3],
|
|
|
|
sysCfg.domoticz_sensor_idx[0], sysCfg.domoticz_sensor_idx[1], sysCfg.domoticz_sensor_idx[2], sysCfg.domoticz_sensor_idx[3], sysCfg.domoticz_sensor_idx[4]);
|
|
|
|
addLog(LOG_LEVEL_INFO, log);
|
|
|
|
}
|
2017-02-06 09:08:40 +00:00
|
|
|
#endif // USE_WEBSERVER
|
2017-01-28 13:41:01 +00:00
|
|
|
#endif // USE_DOMOTICZ
|
|
|
|
|