mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 23:48:11 +01:00
Fix typo/spelling
This commit is contained in:
parent
a24e9b849e
commit
aa0f305b75
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ async def to_code(config):
|
|||
|
||||
cg.add(var.set_carrier_duty_percent(config[CONF_CARRIER_DUTY_PERCENT]))
|
||||
|
||||
if one_wite_config := config.get(CONF_ONE_WIRE):
|
||||
cg.add(var.set_one_wire(one_wite_config))
|
||||
if one_wire_config := config.get(CONF_ONE_WIRE):
|
||||
cg.add(var.set_one_wire(one_wire_config))
|
||||
|
||||
if on_transmit_config := config.get(CONF_ON_TRANSMIT):
|
||||
await automation.build_automation(
|
||||
|
|
Loading…
Reference in a new issue