-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.ts
More file actions
34 lines (33 loc) · 716 Bytes
/
schedule.ts
File metadata and controls
34 lines (33 loc) · 716 Bytes
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
import type { ScheduleEntry } from '../types/system';
export const scheduleEntries: ScheduleEntry[] = [
{
id: 'morning-rise',
label: 'Morning Rise',
sceneId: 'aurora-rise',
startMinute: 6 * 60,
},
{
id: 'midday-trace',
label: 'Midday Trace',
sceneId: 'signal-trace',
startMinute: 11 * 60 + 30,
},
{
id: 'sunset-ribbon',
label: 'Sunset Ribbon',
sceneId: 'twilight-ribbon',
startMinute: 17 * 60 + 30,
},
{
id: 'event-crown',
label: 'Event Crown',
sceneId: 'crown-pulse',
startMinute: 20 * 60,
},
{
id: 'late-night-nocturne',
label: 'Late Night Nocturne',
sceneId: 'nocturne-shimmer',
startMinute: 22 * 60 + 30,
},
];