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:
Manuel Dipolt 2024-04-24 17:06:46 +02:00 committed by GitHub
parent 380f192c93
commit 2beab34de8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 149 additions and 2 deletions

View file

@ -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__)