calendar.py
 1  # SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries
 2  #
 3  # SPDX-License-Identifier: MIT
 4  
 5  alarms = {
 6      'bed' : '10:00 PM',
 7      'breakfast' : '8:00 AM',
 8      'lunch' : '12:00 PM',
 9      'dinner' : '6:30 PM',
10      'trash' : ('Fri.', '1:00 PM')
11      }
12  
13  timers = {
14      'snooze_time' : 300
15      }
16  
17  holidays = {
18      'new years' : ('Jan. 1', 'Happy New Year!'),
19      'valentines' : ('Feb. 14', "Happy Valentine's Day! <3"),
20      'halloween' : ('Oct. 31', 'Happy Halloween!'),
21      'xmas' : ('Dec. 25', 'Merry Christmas!')
22      }