Tasmota/sonoff/xdrv_19_ps16dz_dimmer.ino

230 lines
7.8 KiB
Arduino
Raw Normal View History

2018-11-24 02:29:32 +00:00
/*
2018-11-24 15:24:44 +00:00
xdrv_19_ps16dz_dimmer.ino - PS_16_DZ dimmer support for Sonoff-Tasmota
2018-11-24 02:29:32 +00:00
Copyright (C) 2018 Joel Stein and Theo Arends
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef USE_PS_16_DZ
#define XDRV_19 19
#define PS16DZ_BUFFER_SIZE 256
#include <TasmotaSerial.h>
TasmotaSerial *PS16DZSerial = nullptr;
boolean ps16dz_ignore_dim = false; // Flag to skip serial send to prevent looping when processing inbound states from the faceplate interaction
boolean ps16dz_power = false;
uint8_t ps16dz_bright = 0;
2018-11-27 01:04:59 +00:00
//uint64_t ps16dz_seq = 0;
2018-11-24 02:29:32 +00:00
2018-11-25 21:43:28 +00:00
char ps16dz_tx_buffer[PS16DZ_BUFFER_SIZE]; // Serial transmit buffer
char ps16dz_rx_buffer[PS16DZ_BUFFER_SIZE]; // Serial receive buffer
int ps16dz_byte_counter = 0;
2018-11-24 02:29:32 +00:00
/*********************************************************************************************\
* Internal Functions
\*********************************************************************************************/
2018-11-27 01:04:59 +00:00
void printTimestamp(void)
{
2018-11-27 01:04:59 +00:00
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "%s%d%03d"), ps16dz_tx_buffer, LocalTime(), millis()%1000);
}
2018-11-24 02:29:32 +00:00
boolean PS16DZSetPower(void)
{
boolean status = false;
uint8_t rpower = XdrvMailbox.index;
int16_t source = XdrvMailbox.payload;
if (source != SRC_SWITCH && PS16DZSerial) { // ignore to prevent loop from pushing state from faceplate interaction
2018-11-24 02:29:32 +00:00
2018-11-25 21:43:28 +00:00
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "AT+UPDATE=\"sequence\":\""));
2018-11-27 01:04:59 +00:00
printTimestamp();
2018-11-25 21:43:28 +00:00
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "%s\",\"switch\":\"%s\""), ps16dz_tx_buffer, rpower?"on":"off");
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR( "PSZ: Send serial command: %s"), ps16dz_tx_buffer );
2018-11-24 02:29:32 +00:00
AddLog(LOG_LEVEL_DEBUG);
2018-11-25 21:43:28 +00:00
PS16DZSerial->print(ps16dz_tx_buffer);
2018-11-24 02:29:32 +00:00
PS16DZSerial->write(0x1B);
PS16DZSerial->flush();
2018-11-24 02:29:32 +00:00
status = true;
}
return status;
}
void PS16DZSerialDuty(uint8_t duty)
{
if (duty > 0 && !ps16dz_ignore_dim && PS16DZSerial) {
2018-11-24 02:29:32 +00:00
if (duty < 25) {
duty = 25; // dimming acts odd below 25(10%) - this mirrors the threshold set on the faceplate itself
}
2018-11-25 21:43:28 +00:00
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "AT+UPDATE=\"sequence\":\""));
2018-11-27 01:04:59 +00:00
printTimestamp();
2018-11-27 00:07:57 +00:00
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "%s\",\"bright\":%d"), ps16dz_tx_buffer, round(duty * (100. / 255.)));
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR( "PSZ: Send serial command: %s"), ps16dz_tx_buffer );
2018-11-24 02:29:32 +00:00
AddLog(LOG_LEVEL_DEBUG);
2018-11-25 21:43:28 +00:00
PS16DZSerial->print(ps16dz_tx_buffer);
2018-11-24 02:29:32 +00:00
PS16DZSerial->write(0x1B);
PS16DZSerial->flush();
2018-11-24 02:29:32 +00:00
} else {
ps16dz_ignore_dim = false; // reset flag
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR( "PSZ: Send Dim Level skipped due to 0 or already set. Value=%d"), duty);
2018-11-24 02:29:32 +00:00
AddLog(LOG_LEVEL_DEBUG);
}
}
void PS16DZResetWifi(void)
{
if (!Settings.flag.button_restrict) {
char scmnd[20];
snprintf_P(scmnd, sizeof(scmnd), D_CMND_WIFICONFIG " %d", 2);
ExecuteCommand(scmnd, SRC_BUTTON);
}
}
/*********************************************************************************************\
* API Functions
\*********************************************************************************************/
boolean PS16DZModuleSelected(void)
{
2018-11-24 04:08:14 +00:00
light_type = LT_SERIAL1;
2018-11-24 02:29:32 +00:00
return true;
}
void PS16DZInit(void)
{
PS16DZSerial = new TasmotaSerial(pin[GPIO_RXD], pin[GPIO_TXD], 2);
if (PS16DZSerial->begin(19200)) {
if (PS16DZSerial->hardwareSerial()) { ClaimSerial(); }
}
}
void PS16DZSerialInput(void)
{
char scmnd[20];
while (PS16DZSerial->available()) {
yield();
2018-11-25 21:43:28 +00:00
byte serial_in_byte = PS16DZSerial->read();
if (serial_in_byte != 0x1B){
2018-11-25 22:41:11 +00:00
if (ps16dz_byte_counter || (!ps16dz_byte_counter && serial_in_byte == 'A'));
2018-11-25 21:43:28 +00:00
ps16dz_rx_buffer[ps16dz_byte_counter++] = serial_in_byte;
}
else {
ps16dz_rx_buffer[ps16dz_byte_counter++] = 0x00;
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: command received: %s"), ps16dz_rx_buffer);
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
if(!strncmp(ps16dz_rx_buffer+3, "UPDATE", 6) || !strncmp(ps16dz_rx_buffer+3, "RESULT", 6)) {
char *end_str;
char *string = ps16dz_rx_buffer+10;
char* token = strtok_r(string, ",", &end_str);
while (token != NULL) {
char* end_token;
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: token = %s"), token);
2018-11-24 02:29:32 +00:00
AddLog(LOG_LEVEL_DEBUG);
2018-11-25 21:43:28 +00:00
char* token2 = strtok_r(token, ":", &end_token);
char* token3 = strtok_r(NULL, ":", &end_token);
if(!strncmp(token2, "\"switch\"", 8)){
ps16dz_power = !strncmp(token3, "\"on\"", 4)?true:false;
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: power received: %s"), token3);
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
if((power || Settings.light_dimmer > 0) && (power !=ps16dz_power)) {
ExecuteCommandPower(1, ps16dz_power, SRC_SWITCH); // send SRC_SWITCH? to use as flag to prevent loop from inbound states from faceplate interaction
}
2018-11-24 02:29:32 +00:00
}
2018-11-25 21:43:28 +00:00
else if(!strncmp(token2, "\"bright\"", 8)){
ps16dz_bright = atoi(token3);
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: brightness received: %d"), ps16dz_bright);
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
if(power && ps16dz_bright > 0) {
2018-11-24 02:29:32 +00:00
2018-11-25 21:43:28 +00:00
snprintf_P(scmnd, sizeof(scmnd), PSTR(D_CMND_DIMMER " %d"), ps16dz_bright );
2018-11-24 02:29:32 +00:00
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: Send CMND_DIMMER_STR=%s"), scmnd );
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
2018-11-24 02:29:32 +00:00
2018-11-25 21:43:28 +00:00
ps16dz_ignore_dim = true;
ExecuteCommand(scmnd, SRC_SWITCH);
}
2018-11-24 02:29:32 +00:00
}
2018-11-25 21:43:28 +00:00
else if(!strncmp(token2, "\"sequence\"", 10)){
//ps16dz_seq = strtoull(token3+1, NULL, 10);
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: sequence received: %s"), token3);
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
}
token = strtok_r(NULL, ",", &end_str);
2018-11-24 02:29:32 +00:00
}
}
2018-11-25 21:43:28 +00:00
else if(!strncmp(ps16dz_rx_buffer+3, "SETTING", 7)) {
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR("PSZ: Reset"));
2018-11-25 21:43:28 +00:00
AddLog(LOG_LEVEL_DEBUG);
PS16DZResetWifi();
}
memset(ps16dz_rx_buffer, 0, sizeof(ps16dz_rx_buffer));
ps16dz_byte_counter = 0;
snprintf_P(ps16dz_tx_buffer, sizeof(ps16dz_tx_buffer), PSTR( "AT+SEND=ok"));
2018-11-26 14:27:51 +00:00
snprintf_P(log_data, sizeof(log_data), PSTR( "PSZ: Send serial command: %s"), ps16dz_tx_buffer );
2018-11-24 02:29:32 +00:00
AddLog(LOG_LEVEL_DEBUG);
2018-11-25 21:43:28 +00:00
PS16DZSerial->print(ps16dz_tx_buffer);
PS16DZSerial->write(0x1B);
PS16DZSerial->flush();
2018-11-24 02:29:32 +00:00
}
}
}
/*********************************************************************************************\
* Interface
\*********************************************************************************************/
boolean Xdrv19(byte function)
{
boolean result = false;
if (PS_16_DZ == Settings.module) {
switch (function) {
case FUNC_MODULE_INIT:
result = PS16DZModuleSelected();
break;
case FUNC_INIT:
PS16DZInit();
break;
case FUNC_LOOP:
if (PS16DZSerial) { PS16DZSerialInput(); }
break;
case FUNC_SET_DEVICE_POWER:
result = PS16DZSetPower();
break;
}
}
return result;
}
#endif // USE_PS_16_DZ