We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The mission here is to add a Vector table that stores a structure:
// Structure for an activity struct Day_activity { uint8_t day_week; // 1 Monday to 5 Friday (Weekend sleeps) uint8_t hr_start; uint8_t mm_start; uint8_t hr_end; uint8_t mm_end; char * note; }; vector<Day_activity> date_vector; void activity_load() { // Monday da.day_week = 1; da.hr_start = 11; da.mm_start = 0; da.hr_end = 12; da.mm_end = 0; da.note = (char*)"STRIKING\nGRAPPLING\nOPEN MAT"; // Like this for each activity time }
And then compare with current time delivered by RTC to show the current activity.
11:00 to 12:00 STRIKING GRAPPLING OPEN MAT
The text was updated successfully, but these errors were encountered:
#28 Add activities using Vectors
393a82c
#28 Activities for Fight Club
0397c63
#28 Activities auslagern in header file
dc3e1da
#28 Add script tools to convert image
1b4250f
#28 activities correction
5d49f9a
#28 ./fontconvert FatSansRound.ttf 44 32 93 > fatsans.h IMPORTANT: As…
e09b26e
…cii space is 32
#28 events customization
74ee02d
martinberlin
No branches or pull requests
The mission here is to add a Vector table that stores a structure:
And then compare with current time delivered by RTC to show the current activity.
11:00 to 12:00
STRIKING
GRAPPLING
OPEN MAT
The text was updated successfully, but these errors were encountered: