- Refactored friendly names in devices.yaml for consistency and clarity. - Added new devices and updated existing ones in devices.yaml. - Populated state.json with detailed state information for various devices, including brightness, power, and link quality. - Included update information for devices where applicable.
28 lines
562 B
YAML
Executable File
28 lines
562 B
YAML
Executable File
remote_transmitter:
|
|
id: irtx
|
|
pin: ${pin_ir_tx}
|
|
carrier_duty_percent: 50%
|
|
|
|
remote_receiver:
|
|
id: rcvr
|
|
pin:
|
|
number: ${pin_ir_rx}
|
|
inverted: true
|
|
# mode:
|
|
# input: true
|
|
# pullup: true
|
|
tolerance: 55%
|
|
dump: all
|
|
|
|
# Example configuration entry
|
|
infrared:
|
|
# IR transmitter instance
|
|
- platform: ir_rf_proxy
|
|
name: IR Proxy Transmitter
|
|
id: ir_proxy_tx
|
|
remote_transmitter_id: irtx
|
|
# IR receiver instance
|
|
- platform: ir_rf_proxy
|
|
name: IR Proxy Receiver
|
|
id: ir_proxy_rx
|
|
remote_receiver_id: rcvr |