mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
64 lines
1.1 KiB
YAML
64 lines
1.1 KiB
YAML
|
i2c:
|
||
|
id: i2c_bus
|
||
|
scl: ${scl_pin}
|
||
|
sda: ${sda_pin}
|
||
|
scan: true
|
||
|
frequency: 600kHz
|
||
|
|
||
|
# component declaration
|
||
|
wk2168_i2c:
|
||
|
- id: bridge_i2c
|
||
|
i2c_id: i2c_bus
|
||
|
address: 0x70
|
||
|
uart:
|
||
|
- id: id0
|
||
|
channel: 0
|
||
|
baud_rate: 115200
|
||
|
stop_bits: 1
|
||
|
parity: none
|
||
|
- id: id1
|
||
|
channel: 1
|
||
|
baud_rate: 115200
|
||
|
- id: id2
|
||
|
channel: 2
|
||
|
baud_rate: 115200
|
||
|
- id: id3
|
||
|
channel: 3
|
||
|
baud_rate: 115200
|
||
|
|
||
|
# individual binary_sensor inputs
|
||
|
binary_sensor:
|
||
|
- platform: gpio
|
||
|
name: "pin_0"
|
||
|
pin:
|
||
|
wk2168_i2c: bridge_i2c
|
||
|
number: 0
|
||
|
mode:
|
||
|
input: true
|
||
|
- platform: gpio
|
||
|
name: "pin_1"
|
||
|
pin:
|
||
|
wk2168_i2c: bridge_i2c
|
||
|
number: 1
|
||
|
mode:
|
||
|
input: true
|
||
|
inverted: true
|
||
|
|
||
|
# Individual binary outputs
|
||
|
switch:
|
||
|
- platform: gpio
|
||
|
name: "pin_2"
|
||
|
pin:
|
||
|
wk2168_i2c: bridge_i2c
|
||
|
number: 2
|
||
|
mode:
|
||
|
output: true
|
||
|
- platform: gpio
|
||
|
name: "pin_3"
|
||
|
pin:
|
||
|
wk2168_i2c: bridge_i2c
|
||
|
number: 3
|
||
|
mode:
|
||
|
output: true
|
||
|
inverted: true
|