mirror of
https://github.com/esphome/esphome.git
synced 2025-11-16 23:05:46 +00:00
34 lines
597 B
YAML
34 lines
597 B
YAML
esphome:
|
|
on_boot:
|
|
then:
|
|
- uart.write: 'Hello World'
|
|
- uart.write: [0x00, 0x20, 0x42]
|
|
|
|
uart:
|
|
- id: uart_uart
|
|
tx_pin: 4
|
|
rx_pin: 5
|
|
baud_rate: 9600
|
|
data_bits: 8
|
|
rx_buffer_size: 512
|
|
parity: EVEN
|
|
stop_bits: 2
|
|
|
|
switch:
|
|
- platform: uart
|
|
name: "UART Switch Array"
|
|
uart_id: uart_uart
|
|
data: [0x01, 0x02, 0x03]
|
|
- platform: uart
|
|
name: "UART Switch Dual"
|
|
uart_id: uart_uart
|
|
data:
|
|
turn_on: [0xA0, 0xA1]
|
|
turn_off: [0xB0, 0xB1]
|
|
|
|
button:
|
|
- platform: uart
|
|
name: "UART Button"
|
|
uart_id: uart_uart
|
|
data: [0xFF, 0xEE]
|