devices.esphome.io
KinCony KC868-A16
KinCony KC868-A16
Device Type: relayElectrical Standard: globalBoard: esp32
GPIO Pinout
| Pin | Function |
|---|---|
| GPIO36 | ANALOG_A1 |
| GPIO34 | ANALOG_A2 |
| GPIO35 | ANALOG_A3 |
| GPIO39 | ANALOG_A4 |
| GPIO4 | IIC_SDA |
| GPIO5 | IIC_SCL |
| GPIO32 | 1-Wire GPIO |
| GPIO33 | 1-Wire GPIO |
| GPIO14 | 1-Wire GPIO |
| GPIO2 | 433MHz Receiver |
| GPIO15 | 433MHz Sender |
| GPIO16 | RS485_RXD |
| GPIO13 | RS485_TXD |
Additional pinout/design details
Basic Configuration
# Basic Configesphome: name: relay1 platform: ESP32 board: esp32dev
# Example configuration entry for ESP32i2c: sda: 4 scl: 5 scan: true id: bus_a
# Example configuration entryethernet: type: LAN8720 mdc_pin: GPIO23 mdio_pin: GPIO18 clk_mode: GPIO17_OUT phy_addr: 0
# Optional manual IP manual_ip: static_ip: 192.168.1.199 gateway: 192.168.1.1 subnet: 255.255.255.0
# Example configuration entrypcf8574: - 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 outputsswitch: - platform: gpio name: "light1" pin: pcf8574: pcf8574_hub_out_1 # Use pin number 0 number: 0 # One of INPUT or OUTPUT mode: OUTPUT inverted: false
- platform: gpio name: "light9" pin: pcf8574: pcf8574_hub_out_2 # Use pin number 0 number: 0 # One of INPUT or OUTPUT mode: OUTPUT inverted: false
binary_sensor: - platform: gpio name: "input1" pin: pcf8574: pcf8574_hub_in_1 # Use pin number 0 number: 0 # One of INPUT or OUTPUT mode: INPUT inverted: false
- platform: gpio name: "input9" pin: pcf8574: pcf8574_hub_in_2 # Use pin number 0 number: 0 # One of INPUT or OUTPUT mode: INPUT inverted: false
# Enable logginglogger:
# Enable Home Assistant APIapi: