Call services from frontend with fire-dom-event

This commit is contained in:
2022-07-18 23:23:15 +00:00
parent 7c6e749c3f
commit 8fe408bcc6
5 changed files with 21 additions and 19 deletions

View File

@@ -15,8 +15,8 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
class BrowserBinarySensor(BrowserModEntity, BinarySensorEntity):
def __init__(self, coordinator, deviceID, parameter, name):
super().__init__(coordinator, deviceID, name)
def __init__(self, coordinator, browserID, parameter, name):
super().__init__(coordinator, browserID, name)
self.parameter = parameter
@property