Skip to content

Commit

Permalink
import switch
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Oct 17, 2023
1 parent 20b779e commit 1988cdf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/BalboaGL/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.components import climate
from esphome.components import switch
from esphome.components.logger import HARDWARE_UART_TO_SERIAL
from esphome.const import (
CONF_ID,
Expand All @@ -25,7 +26,7 @@
CONF_PANEL_SELECT_PIN = "panel_select_pin"

BalboaGL = cg.global_ns.class_(
"BalboaGL", climate.Climate, cg.PollingComponent
"BalboaGL", climate.Climate, switch.Switch, cg.PollingComponent
)


Expand Down

0 comments on commit 1988cdf

Please sign in to comment.