![]() |
|
K868-A16 433 RF MHz receiver - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20) +--- Forum: KC868-A16 (https://www.kincony.com/forum/forumdisplay.php?fid=25) +--- Thread: K868-A16 433 RF MHz receiver (/showthread.php?tid=1756) |
RE: K868-A16 433 RF MHz receiver - admin - 03-27-2023 see these images. Do you will install on KC868-A16 board? RE: K868-A16 433 RF MHz receiver - Olsen@HuaHin - 03-27-2023 I will install on KC868-A16 board as I got it from you guys. Which antenna is for sender long or short one? RE: K868-A16 433 RF MHz receiver - admin - 03-27-2023 long is "sender". RE: K868-A16 433 RF MHz receiver - Olsen@HuaHin - 03-27-2023 Thank you for prompt reply!
RE: K868-A16 433 RF MHz receiver - admin - 03-27-2023 you are welcome. RE: K868-A16 433 RF MHz receiver - MnM - 12-22-2024 Hi have installed the send/receive antennas and the modules in my kincony device. I have not added and configuration for these. However, what I have found is that after I installed the modules it kills my home garage remote. The home garage remote only works when i very close proxymity of the garage door motor (like 12 meters). Anything outside of this range it doesnt work anymore. If I cut power to the kincony device it works normal again. So I am wondering if there is any ESPHome configuration to adjust the power of the RF modules? Thanks RE: K868-A16 433 RF MHz receiver - admin - 12-22-2024 do you use ESPHome or KCS firmware? if you are using ESPHome. maybe you have config the yaml always send RF signal. RE: K868-A16 433 RF MHz receiver - MnM - 12-22-2024 I use ESPHome. No RF configured in ESPHome yet. my config looks like this: # Device Specific Config esphome: platform: ESP32 board: esp32dev name: ${device_name} comment: ${device_description} project: name: "${project_name}" version: "${project_version}" time: - platform: sntp id: sntp_time timezone: XXXXXXXX servers: !secret sntp_server on_time_sync: then: - logger.log: "Synchronized sntp clock" web_server: port: 80 auth: username: admin password: !secret web_server_password include_internal: true # Configuration entry for ESP32 i2c: sda: 4 scl: 5 scan: true id: bus_a # Channels configuration pcf8574: - id: 'pcf8574_hub_out_1' # for output channel 1-8 address: 0x24 - id: 'pcf8574_hub_out_2' # for output channel 9-16 address: 0x25 - id: 'pcf8574_hub_in_1' # for input channel 1-8 address: 0x21 - id: 'pcf8574_hub_in_2' # for input channel 9-16 address: 0x22 # Individual inputs sensor: # Uptime Sensor - platform: uptime name: Uptime id: uptime_sensor update_interval: 360s on_raw_value: then: - text_sensor.template.publish: id: uptime_human state: !lambda |- int seconds = round(id(uptime_sensor).raw_state); int days = seconds / (24 * 3600); seconds = seconds % (24 * 3600); int hours = seconds / 3600; seconds = seconds % 3600; int minutes = seconds / 60; seconds = seconds % 60; return ( (days ? to_string(days) + "d " : "") + (hours ? to_string(hours) + "h " : "") + (minutes ? to_string(minutes) + "m " : "") + (to_string(seconds) + "s") ).c_str(); - platform: template name: KinKony A16 Internal Temperature id: temp lambda: return temperatureRead(); unit_of_measurement: °C accuracy_decimals: 2 RE: K868-A16 433 RF MHz receiver - admin - 12-22-2024 you can remove the RF sender module from KC868-A16 PCB. RE: K868-A16 433 RF MHz receiver - MnM - 12-23-2024 Yes I know I can - but I want to use it. That is why I am asking how to configure it in ESPHome yaml and adjust the power of it. |