-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensors.yaml
51 lines (50 loc) · 1.45 KB
/
sensors.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Garage desk sit/stand time tracking
- platform: history_stats
name: Garage desk time standing
entity_id: sensor.garage_desk_status
state: "Standing"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9
- platform: history_stats
name: Garage desk time sitting
entity_id: sensor.garage_desk_status
state: "Sitting"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9
- platform: history_stats
name: Loryan workday garage occupancy
entity_id: sensor.loryan_s21_room_location
state: "Garage"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9
# Study desk sit/stand time tracking
- platform: history_stats
name: Study desk time standing
entity_id: sensor.study_desk_status
state: "Standing"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9
- platform: history_stats
name: Study desk time sitting
entity_id: sensor.study_desk_status
state: "Sitting"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9
- platform: history_stats
name: Loryan workday study occupancy
entity_id: sensor.loryan_s21_room_location
state: "Study"
type: time
start: "{{ now().replace(hour=8, minute=30, second=0) }}"
duration:
hours: 9