Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions spartronics_clock.ino
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,23 @@ static const char *_messages[] = {
"Did you do your survey?",
"ROCKIN' ROBOT!",
"ENABLING!",
"FIRST RISE: The Force is Building",
"ATLaS",
"GAEA",
"ARES",
"HELIOS",
"THEMIS",
"CHAOS",
"INFINITE RECHARGE!",
"ATHENA",
"RAPID REACT!",
"Sleep? Who has time for that?",
"Safety Glasses!",
"More than Robots",
"How about a scissor lift?",
"I buid robots...",
"I build robots...",
"Do. Or do not. There is no try.",
"Camden is above average",
"Mr. Chee is a great teacher!",
"owo"
};

/**
Expand All @@ -91,13 +94,11 @@ typedef struct {
* List of events to count-down to. They must be sorted in ascending order.
*/
static const CalendarTime_t _important_times[] = {
{ 2019, 10, 11, 15, 15, 0, "GirlsGen" }, // GirlsGen pack time
{ 2020, 1, 4, 7, 0, 0, "Kickoff" }, // Kickoff
{ 2020, 2, 18, 21, 0, 0, "Bag day" }, // Pseudo-bag-day
{ 2020, 2, 28, 12, 0, 0, "Glacier Peak" }, // Glacier Peak
{ 2020, 3, 20, 12, 0, 0, "Bellingham" }, // Bellingham
{ 2020, 4, 1, 9, 0, 0, "Districts" }, // District Champs
{ 2020, 4, 14, 12, 0, 0, "Worlds" }, // Worlds
{ 2022, 1, 8, 7, 0, 0, "Kickoff" }, // Kickoff
{ 2022, 2, 18, 12, 0, 0, "Sammamish" }, // Sammammish
{ 2022, 3, 25, 12, 0, 0, "Auburn" }, // Auburn
{ 2022, 4, 6, 9, 0, 0, "Districts" }, // District Champs
{ 2022, 4, 23, 12, 0, 0, "Worlds" }, // Worlds
};

static time_t _target_time;
Expand Down