I have a nfc tag that i use to log how long im working. (input_boolean.tag_rene)
Im running history stats to count the on time.
- platform: history_stats
name: René uren vandaag
entity_id: input_boolean.tag_rene
state: “on”
type: time
start: “{{ now().replace(hour=0, minute=0, second=0) }}”
end: “{{ now() }}”
Im getting a nice graph. Where I can see the history and the peeks from this graph give me the totals every day.
But what I like to see is a counter that displays the total “on” time for every week day, last week.
Or 5 counters that display a day of the week.
So history stats that show last monday, last tuesday, last wednesday, last thursday, last friday
Sort of a punch clock system from work.
Is there an easy way?