Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
K868-A16 433 RF MHz receiver
#41
see these images. Do you will install on KC868-A16 board?
   
   
Reply
#42
I will install on KC868-A16 board as I got it from you guys.
Which antenna is for sender long or short one?
Reply
#43
long is "sender".
Reply
#44
Smile 
Thank you for prompt reply!  Smile
Reply
#45
you are welcome.
Reply
#46
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
Reply
#47
do you use ESPHome or KCS firmware? if you are using ESPHome. maybe you have config the yaml always send RF signal.
Reply
#48
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
Reply


Forum Jump:


Users browsing this thread:
1 Guest(s)