ESP32 RF - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1) +--- Forum: KC868-Server Raspberry Pi4 local server (https://www.kincony.com/forum/forumdisplay.php?fid=17) +--- Thread: ESP32 RF (/showthread.php?tid=2451) |
RE: ESP32 RF - Mandlap - 03-28-2023 I'm new to the ESP flashing. trying to follow instructions on this thread, flashing the ESP chip to receive RF output on the Arduino without success. Getting the attached error messages. I noticed that i don't have the option to reduce the baud rate lower than 115200. RE: ESP32 RF - admin - 03-29-2023 what you want to do? use by "KCS" firmware? or use by home assistant? or ??? RE: ESP32 RF - Mandlap - 03-29-2023 (03-29-2023, 12:17 AM)admin Wrote: what you want to do? use by "KCS" firmware? or use by home assistant? or ??? Use with Home Assistant to capture RF signal for TV etc. and control thereafter. RE: ESP32 RF - admin - 03-29-2023 you can use ESPHome, just config IR receiver or RF reciever gpio pin. make sure your product have IR or RF hardware function. RE: ESP32 RF - Mandlap - 03-30-2023 (03-29-2023, 09:56 AM)admin Wrote: you can use ESPHome, just config IR receiver or RF reciever gpio pin. make sure your product have IR or RF hardware function. How do I make sure that the KC868-Server has IR or RF hardware function? I have tried different configs using different pins (22, 36) in each instant. this is for Samsung TV. Here is config 1 below for ESPHome: captive_portal: remote_receiver: pin: 36 dump: all # Settings to optimize recognition of RF devices tolerance: 50% filter: 250us idle: 4ms buffer_size: 2kb Here is config 2 below for ESPHome: captive_portal: web_server: port: 80 remote_receiver: pin: number: 23 inverted: True dump: all remote_transmitter: pin: number: 22 carrier_duty_percent: 50% switch: - platform: template name: "TV Power" turn_on_action: - remote_transmitter.transmit_nec: address: 0x00BD command: 0x807F repeat: times: 10 wait_time: 50ms turn_off_action: - remote_transmitter.transmit_nec: address: 0x00BD command: 0x807F repeat: times: 10 wait_time: 50ms RE: ESP32 RF - admin - 03-30-2023 this is GPIOs for KC868-Server's ESP32 module: IR receiver: GPIO22 IR sender: GPIO23 433MHz wireless receiver: GPIO13 here is details: https://www.kincony.com/forum/showthread.php?tid=1735 RE: ESP32 RF - Mandlap - 03-30-2023 (03-30-2023, 10:49 AM)admin Wrote: this is GPIOs for KC868-Server's ESP32 module: Kindly share the .yaml RE: ESP32 RF - admin - 03-30-2023 about the IR and RF you can see our other KC868-A series board, have demo yaml file on our forum. RE: ESP32 RF - Mandlap - 03-30-2023 (03-30-2023, 11:12 AM)admin Wrote: about the IR and RF you can see our other KC868-A series board, have demo yaml file on our forum. I'm sorted. Thank You. RE: ESP32 RF - admin - 03-31-2023 you are welcome. |