03-27-2023, 10:58 AM
see these images. Do you will install on KC868-A16 board?
K868-A16 433 RF MHz receiver
|
03-27-2023, 10:58 AM
see these images. Do you will install on KC868-A16 board?
03-27-2023, 11:43 AM
I will install on KC868-A16 board as I got it from you guys.
Which antenna is for sender long or short one?
03-27-2023, 11:50 AM
long is "sender".
03-27-2023, 11:56 AM
Thank you for prompt reply!
03-27-2023, 12:17 PM
you are welcome.
Today, 04:44 AM
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
Today, 05:07 AM
do you use ESPHome or KCS firmware? if you are using ESPHome. maybe you have config the yaml always send RF signal.
6 hours ago
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 |
« Next Oldest | Next Newest »
|
Users browsing this thread: |
1 Guest(s) |