Aruna Tennakoon
Aruna Tennakoon
When you call this methods the server will send the last known status in the server to client. On Tue, 11 Aug 2020 at 7:12 PM Boris Jäger wrote: >...
Create a TV device When you ask Alexa to vol up/down, Alexa send a command to Sinric, and Sinric will forward those commands to your ESP module. Check the suppported...
Do you know how to flash the code using Arduino to ESP? On Thu, 4 Oct 2018 at 7:18 PM 6575bala wrote: > I am not software engineer so how...
When you mute or unmute it will send a command. This line will print it in the serial console. Serial.printf("[WSc] get text: %s\n", payload); if you do not know. Look...
I have added a new tv example https://github.com/kakopappa/sinric/blob/master/arduino_examples/tv_example.ino You have to change your sketch to send the IR signal accordingly. Send the IR signals in a separate sketch and make...
copy the sending ir code inside this sketch. whats the problem doing that?
.... ``` void turnOn(String deviceId) { if (deviceId == "5axxxxxxxxxxxxxxxxxxx") // Device ID of first device { Serial.println("Turn on SAMSUNG"); irsend.sendSAMSUNG(0xE0E040BF, 32); // Sends power on/off signal to TV }...
code seesm to be correct. whats the problem here?
just add it to the if condition. if(ChannelName=="national geographic") { ... } else if(ChannelName=="starmovies") { ... } else if(ChannelNumber=="353") { .... }
hello @emnik Thank you for your input. Right now when you set the temp I store it in the database and when you make it warmer and cooler I change...