mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-25 23:28:28 +02:00
21 lines
437 B
Python
21 lines
437 B
Python
from .defines import CONF_INDICATOR, CONF_KNOB, CONF_MAIN
|
|
from .types import LvBoolean
|
|
from .widget import WidgetType
|
|
|
|
CONF_SWITCH = "switch"
|
|
|
|
|
|
class SwitchType(WidgetType):
|
|
def __init__(self):
|
|
super().__init__(
|
|
CONF_SWITCH,
|
|
LvBoolean("lv_switch_t"),
|
|
(CONF_MAIN, CONF_INDICATOR, CONF_KNOB),
|
|
)
|
|
|
|
async def to_code(self, w, config):
|
|
return []
|
|
|
|
|
|
switch_spec = SwitchType()
|