Smart Home Automation Forum

Full Version: Error on ESPHOME Official Config?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible that addresses for input channels on Kincony868 A16 were exchanged on official configuration on esphome? 
https://devices.esphome.io/devices/KinCo...figuration

I was testing my new device and it surprised me that adresses were exchanged
This is my configuration for input addresses
Code:
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x22
  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x21
sure, you can replace the i2c address, it will auto scanned by ESPHome, you can see the i2c address in ESPHome LOG.
I know, I had to flip them too to get the right inputs to outputs.

Is wrong:

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x21

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x22

Is correct:

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x22

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x21
whether work well now?
(06-18-2024, 05:07 AM)admin Wrote: [ -> ]whether work well now?

Yes it worked !
ok, good.