mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
31 lines
505 B
YAML
31 lines
505 B
YAML
|
<<: !include ../logger/common-usb_cdc.yaml
|
||
|
|
||
|
esphome:
|
||
|
on_boot:
|
||
|
then:
|
||
|
- uart.write:
|
||
|
id: uart_1
|
||
|
data: 'Hello World'
|
||
|
- uart.write:
|
||
|
id: uart_1
|
||
|
data: [0x00, 0x20, 0x42]
|
||
|
|
||
|
uart:
|
||
|
- id: uart_1
|
||
|
tx_pin: 4
|
||
|
rx_pin: 5
|
||
|
baud_rate: 9600
|
||
|
data_bits: 8
|
||
|
rx_buffer_size: 512
|
||
|
parity: EVEN
|
||
|
stop_bits: 2
|
||
|
|
||
|
- id: uart_2
|
||
|
tx_pin: 6
|
||
|
rx_pin: 7
|
||
|
baud_rate: 9600
|
||
|
data_bits: 8
|
||
|
rx_buffer_size: 512
|
||
|
parity: EVEN
|
||
|
stop_bits: 2
|