/* ClientRespondTele.ino - Example for TasmotaClient to respond to ClientSend ON and ClientSend OFF commands via console or telemetry. In this example the ON and OFF is case sensitive so needs to be sent in capital letters from the Tasmota device. Upon receiving ON/OFF the client will turn the LED on/off respectively and respond with a telemetry message sent back to Tasmota that will be published for telemetry and rules processing on the Tasmota device. Copyright (C) 2019 Andre Thomas 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 . */ #include #include TasmotaClient client(&Serial); /*******************************************************************\ * Normal setup() function for Arduino to configure the serial port * speed (which should match what was configured in Tasmota) and * attach any callback functions associated with specific requests * or commands that are sent by Tasmota. \*******************************************************************/ void setup() { // Configure the LED pin as OUTPUT pinMode(LED_BUILTIN, OUTPUT); // Configure the serial port for the correct baud rate Serial.begin(57600); // Attach the callback function which will be called when Tasmota requests it client.attach_FUNC_COMMAND_SEND(user_FUNC_RECEIVE); } /*******************************************************************\ * Function which will be called when Tasmota sends a * ClientSend command \*******************************************************************/ void user_FUNC_RECEIVE(char *data) { if (!strcasecmp(data, "ON")) { // ClientSend ON digitalWrite(LED_BUILTIN, HIGH); char response[20]; sprintf(response,"{\"Led\":\"On\"}"); client.SendTele(response); } if (!strcasecmp(data, "OFF")) { // ClientSend OFF digitalWrite(LED_BUILTIN, LOW); char response[20]; sprintf(response,"{\"Led\":\"Off\"}"); client.SendTele(response); } } void loop() { client.loop(); // Call the client loop function every so often to process incoming requests }