On the frontend, my garbage collection shows the correct date and days remaining if I do not add verbose_state: True
I wish to display just the remaining days. If I add verbose_state: True
, to each of the sensors. it shows 1 2 2 2 2 2
for each of the sensors.
This is how some of the sensors are coded in yaml.
garbage_collection:
sensors:
- name: 'Combustible Waste'
frequency: 'weekly'
collection_days:
- mon
- thu
verbose_state: True
expire_after: '10:00'
exclude_dates:
- '2020-12-31'
- name: 'Plastic Waste'
frequency: 'weekly'
collection_days: 'wed'
verbose_state: True
expire_after: '12:00'
exclude_dates:
- '2020-12-30'
- name: 'Can Bottle Waste'
frequency: 'even-weeks'
first_month: 'mar'
last_month: 'dec'
collection_days: 'tue'
verbose_state: True
exclude_dates:
- '2020-12-29'