06-19-2024, 09:54 PM
Hello,
I am using ESPHome 2024.5.5 on the KC868-A8S device. After uploading the firmware that includes the remote_receiver component on GPIO16 for 433 MHz receiving module, the device becomes unresponsive and the web dashboard returns ERR_CONNECTION_REFUSED. Interestingly, when the remote_receiver component is not included, everything functions as expected.
Any ideas about that? Thank you!
I am using ESPHome 2024.5.5 on the KC868-A8S device. After uploading the firmware that includes the remote_receiver component on GPIO16 for 433 MHz receiving module, the device becomes unresponsive and the web dashboard returns ERR_CONNECTION_REFUSED. Interestingly, when the remote_receiver component is not included, everything functions as expected.
Any ideas about that? Thank you!
Code:
esphome:
name: kc868-a8s
platform: ESP32
board: esp32dev
# Enable logging
logger:
web_server:
port: 80
ota:
# Enable Home Assistant API
api:
#remote_receiver:
# pin: GPIO16
# dump: all
# tolerance: 50%
# filter: 250us
# idle: 2ms
# buffer_size: 2kb
# Example configuration entry for ESP32
i2c:
sda: 4
scl: 5
scan: true
id: bus_a
# Example configuration entry
ethernet:
type: LAN8720
mdc_pin: GPIO23
mdio_pin: GPIO18
clk_mode: GPIO17_OUT
phy_addr: 0
# Example configuration entry
pcf8574:
- id: 'pcf8574_hub_out_1' # for output channel 1-8
address: 0x24
- id: 'pcf8574_hub_in_1' # for input channel 9-16
address: 0x22
# Individual outputs
switch:
- platform: gpio
name: "relay1"
pin:
pcf8574: pcf8574_hub_out_1
number: 0
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay2"
pin:
pcf8574: pcf8574_hub_out_1
number: 1
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay3"
pin:
pcf8574: pcf8574_hub_out_1
number: 2
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay4"
pin:
pcf8574: pcf8574_hub_out_1
number: 3
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay5"
pin:
pcf8574: pcf8574_hub_out_1
number: 4
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay6"
pin:
pcf8574: pcf8574_hub_out_1
number: 5
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay7"
pin:
pcf8574: pcf8574_hub_out_1
number: 6
mode: OUTPUT
inverted: true
- platform: gpio
name: "relay8"
pin:
pcf8574: pcf8574_hub_out_1
number: 7
mode: OUTPUT
inverted: true
binary_sensor:
- platform: gpio
name: "input1"
pin:
pcf8574: pcf8574_hub_in_1
number: 0
mode: INPUT
inverted: true
- platform: gpio
name: "input2"
pin:
pcf8574: pcf8574_hub_in_1
number: 1
mode: INPUT
inverted: true
- platform: gpio
name: "input3"
pin:
pcf8574: pcf8574_hub_in_1
number: 2
mode: INPUT
inverted: true
- platform: gpio
name: "input4"
pin:
pcf8574: pcf8574_hub_in_1
number: 3
mode: INPUT
inverted: true
- platform: gpio
name: "input5"
pin:
pcf8574: pcf8574_hub_in_1
number: 4
mode: INPUT
inverted: true
- platform: gpio
name: "input6"
pin:
pcf8574: pcf8574_hub_in_1
number: 5
mode: INPUT
inverted: true
- platform: gpio
name: "input7"
pin:
pcf8574: pcf8574_hub_in_1
number: 6
mode: INPUT
inverted: true
- platform: gpio
name: "input8"
pin:
pcf8574: pcf8574_hub_in_1
number: 7
mode: INPUT
inverted: true
output:
- platform: ledc
pin: GPIO2
id: buzzer_output
rtttl:
output: buzzer_output
light:
- platform: fastled_clockless
chipset: WS2812B
pin: GPIO12
num_leds: 1
rgb_order: GRB
name: "rgb_led"
id: rgb_led
default_transition_length: 0s
restore_mode: ALWAYS_OFF