Add sensor platform to romy integration (#112388)
* poc romy status sensor working * poc romy adc sensor working * code review changes * code review changes base enitity.py see branch romy_binary_sensor * code review change: move CoordinatorEntity to the base class * code review changes: sensors disabled per default * code review: icons.json added * checkout main entity.py * code review changes: sensors enabled per default again * disable rssi sensor per default * Update homeassistant/components/romy/strings.json Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * code review changes * code review changes * code review changes * pylint fix --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
This commit is contained in:
parent
380f192c93
commit
2beab34de8
6 changed files with 149 additions and 2 deletions
|
@ -6,6 +6,6 @@ import logging
|
|||
from homeassistant.const import Platform
|
||||
|
||||
DOMAIN = "romy"
|
||||
PLATFORMS = [Platform.BINARY_SENSOR, Platform.VACUUM]
|
||||
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR, Platform.VACUUM]
|
||||
UPDATE_INTERVAL = timedelta(seconds=5)
|
||||
LOGGER = logging.getLogger(__package__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue