Skip to content

Commit

Permalink
feat: add more light controls (brigtness, modes)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuatakgun committed Oct 16, 2023
1 parent f8e6c2f commit ce049c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions custom_components/eufy_security/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ class PropertyToEntityDescription(Enum):
motionDetectionSensitivity = EntityDescription(id=auto(), category=EntityCategory.CONFIG)
speakerVolume = EntityDescription(id=auto(), category=EntityCategory.CONFIG)
nightvision = EntityDescription(id=auto(), icon="mdi:shield-moon", category=EntityCategory.CONFIG)
lightSettingsManualLightingActiveMode = EntityDescription(id=auto(), icon="mdi:cog-play", category=EntityCategory.CONFIG)
lightSettingsBrightnessManual = EntityDescription(id=auto(), icon="mdi:brightness-percent", category=EntityCategory.CONFIG)
lightSettingsManualDailyLighting = EntityDescription(id=auto(), category=EntityCategory.CONFIG)
lightSettingsScheduleDynamicLighting = EntityDescription(id=auto(), category=EntityCategory.CONFIG)

# station sensor
currentMode = EntityDescription(id=auto(), icon="mdi:security", category=EntityCategory.DIAGNOSTIC)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/eufy_security/eufy_security_api/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

_LOGGER: logging.Logger = logging.getLogger(__package__)

SCHEMA_VERSION = 18
SCHEMA_VERSION = 19

UNSUPPORTED = "Unsupported"

Expand Down

0 comments on commit ce049c1

Please sign in to comment.