Skip to content

Commit

Permalink
Update sensor_custom.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xirixiz authored Nov 2, 2021
1 parent ca04184 commit faeb98c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions custom_components/afvalwijzer/sensor_custom.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
import hashlib
from datetime import datetime

from homeassistant.helpers.entity import Entity
Expand All @@ -10,6 +11,10 @@
ATTR_YEAR_MONTH_DAY_DATE,
CONF_DEFAULT_LABEL,
CONF_ID,
CONF_INCLUDE_DATE_TODAY,
CONF_POSTAL_CODE,
CONF_STREET_NUMBER,
CONF_SUFFIX,
MIN_TIME_BETWEEN_UPDATES,
PARALLEL_UPDATES,
SENSOR_ICON,
Expand All @@ -36,11 +41,20 @@ def __init__(self, hass, waste_type, fetch_afvalwijzer_data, config):
self._state = self.config.get(CONF_DEFAULT_LABEL)
self._icon = SENSOR_ICON
self._year_month_day_date = None
self._unique_id = hashlib.sha1(
f"{self.waste_type}{self.config.get(CONF_ID)}{self.config.get(CONF_POSTAL_CODE)}{self.config.get(CONF_STREET_NUMBER)}{self.config.get(CONF_SUFFIX,'')}".encode(
"utf-8"
)
).hexdigest()

@property
def name(self):
return self._name

@property
def unique_id(self):
return self._unique_id

@property
def icon(self):
return self._icon
Expand Down

0 comments on commit faeb98c

Please sign in to comment.