Tasmota/sonoff/xdrv_19_ps16dz_dimmer.ino

394 lines
14 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) 2019 Joel Stein and Theo Arends
2018-11-24 02:29:32 +00:00
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_LIGHT
2018-11-24 02:29:32 +00:00
#ifdef USE_PS_16_DZ
#define XDRV_19 19
2019-04-10 13:54:50 +01:00
#define PS16DZ_BUFFER_SIZE 140
2018-11-24 02:29:32 +00:00
2018-11-27 16:18:41 +00:00
#define PS16DZ_TYPE_ACK 0
#define PS16DZ_TYPE_PWR 1
#define PS16DZ_TYPE_DIM 2
2019-04-10 13:54:50 +01:00
#define PS16DZ_SONOFF_L1_MODE_COLORFUL 1 // Colorful (static color)
#define PS16DZ_SONOFF_L1_MODE_COLORFUL_GRADIENT 2 // Colorful Gradient
#define PS16DZ_SONOFF_L1_MODE_COLORFUL_BREATH 3 // Colorful Breath
#define PS16DZ_SONOFF_L1_MODE_DIY_GRADIENT 4 // DIY Gradient (fade in and out) [Speed 1- 100, color]
#define PS16DZ_SONOFF_L1_MODE_DIY_PULSE 5 // DIY Pulse (faster fade in and out) [Speed 1- 100, color]
#define PS16DZ_SONOFF_L1_MODE_DIY_BREATH 6 // DIY Breath (toggle on/off) [Speed 1- 100, color]
#define PS16DZ_SONOFF_L1_MODE_DIY_STROBE 7 // DIY Strobe (faster toggle on/off) [Speed 1- 100, color]
#define PS16DZ_SONOFF_L1_MODE_RGB_GRADIENT 8 // RGB Gradient
#define PS16DZ_SONOFF_L1_MODE_RGB_PULSE 9 // RGB Pulse
#define PS16DZ_SONOFF_L1_MODE_RGB_BREATH 10 // RGB Breath
#define PS16DZ_SONOFF_L1_MODE_RGB_STROBE 11 // RGB strobe
#define PS16DZ_SONOFF_L1_MODE_SYNC_TO_MUSIC 12 // Sync to music [Speed 1- 100, sensitivity 1 - 10]
2018-11-24 02:29:32 +00:00
#include <TasmotaSerial.h>
TasmotaSerial *PS16DZSerial = nullptr;
bool ps16dz_switch = false;
uint8_t ps16dz_dimmer = 0;
uint8_t ps16dz_color[3]; // Most recent serial sent/received values
char *ps16dz_tx_buffer = nullptr; // Serial transmit buffer
char *ps16dz_rx_buffer = nullptr; // Serial receive buffer
2018-11-25 21:43:28 +00:00
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)
{
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s%d%03d"), ps16dz_tx_buffer, LocalTime(), millis()%1000);
}
2018-11-27 16:18:41 +00:00
void PS16DZSendCommand(char type = 0, uint8_t value = 0)
{
switch(type){
case PS16DZ_TYPE_ACK:
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "AT+SEND=ok"));
break;
case PS16DZ_TYPE_PWR:
case PS16DZ_TYPE_DIM:
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "AT+UPDATE=\"sequence\":\""));
printTimestamp();
2018-11-27 17:02:00 +00:00
if ( type == PS16DZ_TYPE_PWR) {
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s\",\"switch\":\"%s\""), ps16dz_tx_buffer, value?"on":"off");
}
else if ( type == PS16DZ_TYPE_DIM) {
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s\",\"bright\":%d"), ps16dz_tx_buffer, round(value * (100. / 255.)));
}
2018-11-27 16:18:41 +00:00
break;
}
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Send serial command: %s"), ps16dz_tx_buffer );
2018-11-27 16:18:41 +00:00
PS16DZSerial->print(ps16dz_tx_buffer);
PS16DZSerial->write(0x1B);
PS16DZSerial->flush();
}
bool PS16DZSetPower(void)
2018-11-24 02:29:32 +00:00
{
bool status = false;
2018-11-24 02:29:32 +00:00
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-27 16:18:41 +00:00
PS16DZSendCommand(PS16DZ_TYPE_PWR, rpower);
2018-11-24 02:29:32 +00:00
status = true;
}
return status;
}
bool PS16DZSetChannels(void)
{
2019-04-10 13:54:50 +01:00
if(PS16DZSerial) {
switch (light_subtype) {
case LST_SINGLE:
// PS16DZSerialDuty(((uint8_t*)XdrvMailbox.data)[0]);
break;
case LST_RGB:
P16DZSetChannelsIfRequired();
break;
}
}
return true;
}
2019-04-10 13:54:50 +01:00
void P16DZSetChannelsIfRequired()
{
uint8_t light_state_rgb[3];
light_state.getRGB(&light_state_rgb[0], &light_state_rgb[1], &light_state_rgb[2]);
bool is_color_change = memcmp(light_state_rgb, ps16dz_color, 3) != 0;
2019-04-10 13:54:50 +01:00
uint8_t light_state_dimmer;
light_state_dimmer = light_state.getDimmer();
bool is_brightness_change = light_state_dimmer != ps16dz_dimmer;
2019-04-10 13:54:50 +01:00
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: SetChannel: last: R:%d, G:%d, B:%d, Brightness: %d"), ps16dz_color[0], ps16dz_color[1], ps16dz_color[2], ps16dz_dimmer);
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: SetChannel: new: R:%d, G:%d, B:%d, Brightness: %d"), light_state_rgb[0], light_state_rgb[1], light_state_rgb[2], light_state_dimmer);
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: SetChannel: Color changed %d, Brightness changed %d"), is_color_change, is_brightness_change);
2019-04-10 13:54:50 +01:00
if(!is_color_change && !is_brightness_change) return;
PS16DZSerialRGB();
2019-04-10 13:54:50 +01:00
}
2018-11-24 02:29:32 +00:00
void PS16DZSerialDuty(uint8_t duty)
{
if (duty > 0)
{
// Dimming acts odd below 25(10%) - this mirrors the threshold set on the faceplate itself
duty = (duty < 25) ? 25 : duty;
2018-11-27 16:18:41 +00:00
PS16DZSendCommand(PS16DZ_TYPE_DIM, duty);
2018-11-24 02:29:32 +00:00
}
}
// Write out static color update eg.
// AT+UPDATE="sequence":"1554682835320","bright":100,"mode":1,"colorR":255,"colorG":46,"colorB":101,"light_types":1
void PS16DZSerialRGB()
2019-04-10 13:54:50 +01:00
{
uint8_t light_state_dimmer;
light_state_dimmer = light_state.getDimmer();
// Dimming acts odd below 10% - this mirrors the threshold set on the faceplate itself
light_state_dimmer = (light_state_dimmer < 10) ? 10 : light_state_dimmer;
2019-04-10 13:54:50 +01:00
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "AT+UPDATE=\"sequence\":\""));
printTimestamp();
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s\",\"bright\":%d"), ps16dz_tx_buffer, light_state_dimmer);
bool light_supports_color = LST_RGB <= light_subtype;
if(light_supports_color)
{
int light_types_value = 1;
uint8_t light_state_rgb[3];
light_state.getRGB(&light_state_rgb[0], &light_state_rgb[1], &light_state_rgb[2]);
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s,\"mode\":%d"), ps16dz_tx_buffer, PS16DZ_SONOFF_L1_MODE_COLORFUL);
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s,\"colorR\":%d"), ps16dz_tx_buffer, light_state_rgb[0]);
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s,\"colorG\":%d"), ps16dz_tx_buffer, light_state_rgb[1]);
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s,\"colorB\":%d"), ps16dz_tx_buffer, light_state_rgb[2]);
snprintf_P(ps16dz_tx_buffer, PS16DZ_BUFFER_SIZE, PSTR( "%s,\"light_types\":%d"), ps16dz_tx_buffer, light_types_value);
}
2019-04-10 13:54:50 +01:00
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Send serial command: %s"), ps16dz_tx_buffer );
PS16DZSerial->print(ps16dz_tx_buffer);
PS16DZSerial->write(0x1B);
PS16DZSerial->flush();
}
2018-11-24 02:29:32 +00:00
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
\*********************************************************************************************/
bool PS16DZModuleSelected(void)
2018-11-24 02:29:32 +00:00
{
2019-04-10 13:54:50 +01:00
switch (my_module_type)
{
case PS_16_DZ:
light_type = LT_SERIAL1;
break;
case SONOFF_L1:
light_type = LT_PWM3;
break;
}
2018-11-24 02:29:32 +00:00
return true;
}
void PS16DZInit(void)
{
ps16dz_tx_buffer = (char*)(malloc(PS16DZ_BUFFER_SIZE));
if (ps16dz_tx_buffer != nullptr) {
ps16dz_rx_buffer = (char*)(malloc(PS16DZ_BUFFER_SIZE));
if (ps16dz_rx_buffer != nullptr) {
PS16DZSerial = new TasmotaSerial(pin[GPIO_RXD], pin[GPIO_TXD], 2);
if (PS16DZSerial->begin(19200)) {
if (PS16DZSerial->hardwareSerial()) { ClaimSerial(); }
}
}
2018-11-24 02:29:32 +00:00
}
}
void PS16DZSerialInput(void)
{
char scmnd[20];
while (PS16DZSerial->available()) {
yield();
uint8_t serial_in_byte = PS16DZSerial->read();
2018-11-25 21:43:28 +00:00
if (serial_in_byte != 0x1B){
if (ps16dz_byte_counter >= PS16DZ_BUFFER_SIZE - 1) {
memset(ps16dz_rx_buffer, 0, PS16DZ_BUFFER_SIZE);
ps16dz_byte_counter = 0;
}
2018-12-23 20:06:10 +00:00
if (ps16dz_byte_counter || (!ps16dz_byte_counter && serial_in_byte == 'A')) {
ps16dz_rx_buffer[ps16dz_byte_counter++] = serial_in_byte;
}
2018-11-25 21:43:28 +00:00
}
else {
ps16dz_rx_buffer[ps16dz_byte_counter++] = 0x00;
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: command received: %s"), ps16dz_rx_buffer);
2019-04-10 13:54:50 +01:00
if(!strncmp(ps16dz_rx_buffer+3, "UPDATE", 6)) {
2018-11-25 21:43:28 +00:00
char *end_str;
char *string = ps16dz_rx_buffer+10;
char* token = strtok_r(string, ",", &end_str);
2019-04-10 13:54:50 +01:00
char color_channel_name;
bool color_channel_updated[3] = { false, false, false };
memcpy(ps16dz_color, Settings.light_color, 3);
bool is_switch_change = false;
2019-04-10 13:54:50 +01:00
bool is_color_change = false;
bool is_brightness_change = false;
bool light_supports_color = LST_RGB <= light_subtype;
2019-04-10 13:54:50 +01:00
while (token != nullptr) {
2018-11-25 21:43:28 +00:00
char* end_token;
char* token2 = strtok_r(token, ":", &end_token);
char* token3 = strtok_r(nullptr, ":", &end_token);
2019-04-10 13:54:50 +01:00
2018-11-25 21:43:28 +00:00
if(!strncmp(token2, "\"switch\"", 8)){
ps16dz_switch = !strncmp(token3, "\"on\"", 4)?true:false;
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: switch received: %d"), ps16dz_switch);
is_switch_change = ps16dz_switch != power;
if(is_switch_change) {
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Send CMND_POWER=%d"), ps16dz_switch );
ExecuteCommandPower(1, ps16dz_switch, SRC_SWITCH); // send SRC_SWITCH? to use as flag to prevent loop from inbound states from faceplate interaction
}
2019-04-10 13:54:50 +01:00
}
else if(light_supports_color && sscanf(token2, "\"color%c\"", &color_channel_name)==1){
2019-04-10 13:54:50 +01:00
int color_channel_index;
switch(color_channel_name)
{
case 'R':
color_channel_index = 0;
break;
case 'G':
color_channel_index = 1;
break;
case 'B':
color_channel_index = 2;
break;
}
int color_channel_value = atoi(token3);
ps16dz_color[color_channel_index] = color_channel_value;
2019-04-10 13:54:50 +01:00
color_channel_updated[color_channel_index] = true;
bool all_color_channels_updated =
color_channel_updated[0] &&
color_channel_updated[1] &&
color_channel_updated[2];
if(all_color_channels_updated)
{
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: color received: R:%d, G:%d, B:%d"),
ps16dz_color[0],
ps16dz_color[1],
ps16dz_color[2]);
2019-04-10 13:54:50 +01:00
}
is_color_change = memcmp(ps16dz_color, Settings.light_color, 3) != 0;
2019-04-10 13:54:50 +01:00
if(power && all_color_channels_updated && is_color_change)
{
snprintf_P(scmnd, sizeof(scmnd), PSTR(D_CMND_COLOR "2 %02x%02x%02x"),
ps16dz_color[0],
ps16dz_color[1],
ps16dz_color[2]);
2019-04-10 13:54:50 +01:00
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Send CMND_COLOR_STR=%s"), scmnd );
ExecuteCommand(scmnd, SRC_SWITCH);
2018-11-25 21:43:28 +00:00
}
2018-11-24 02:29:32 +00:00
}
2018-11-25 21:43:28 +00:00
else if(!strncmp(token2, "\"bright\"", 8)){
2018-11-24 02:29:32 +00:00
ps16dz_dimmer = atoi(token3);
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: brightness received: %d"), ps16dz_dimmer);
2018-11-24 02:29:32 +00:00
is_brightness_change = ps16dz_dimmer != Settings.light_dimmer;
2018-11-24 02:29:32 +00:00
if(power && ps16dz_dimmer > 0 && is_brightness_change) {
snprintf_P(scmnd, sizeof(scmnd), PSTR(D_CMND_DIMMER " %d"), ps16dz_dimmer );
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Send CMND_DIMMER_STR=%s"), scmnd );
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, nullptr, 10);
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: sequence received: %s"), token3);
}
token = strtok_r(nullptr, ",", &end_str);
2018-11-24 02:29:32 +00:00
}
2019-04-10 13:54:50 +01:00
if(!is_color_change && !is_brightness_change)
2019-04-10 13:54:50 +01:00
{
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("PSZ: Update received"));
PS16DZSendCommand(PS16DZ_TYPE_ACK);
}
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)) {
AddLog_P(LOG_LEVEL_DEBUG, PSTR("PSZ: Reset"));
2018-11-25 21:43:28 +00:00
PS16DZResetWifi();
}
memset(ps16dz_rx_buffer, 0, PS16DZ_BUFFER_SIZE);
2018-11-25 21:43:28 +00:00
ps16dz_byte_counter = 0;
2018-11-24 02:29:32 +00:00
}
}
}
/*********************************************************************************************\
* Interface
\*********************************************************************************************/
bool Xdrv19(uint8_t function)
2018-11-24 02:29:32 +00:00
{
bool result = false;
2018-11-24 02:29:32 +00:00
2019-04-10 13:54:50 +01:00
if (PS_16_DZ == my_module_type ||
SONOFF_L1 == my_module_type) {
2018-11-24 02:29:32 +00:00
switch (function) {
case FUNC_LOOP:
if (PS16DZSerial) { PS16DZSerialInput(); }
break;
2018-11-24 02:29:32 +00:00
case FUNC_MODULE_INIT:
result = PS16DZModuleSelected();
break;
case FUNC_INIT:
PS16DZInit();
break;
case FUNC_SET_DEVICE_POWER:
result = PS16DZSetPower();
break;
case FUNC_SET_CHANNELS:
result = PS16DZSetChannels();
break;
2018-11-24 02:29:32 +00:00
}
}
return result;
}
#endif // USE_PS_16_DZ
#endif // USE_LIGHT