diff options
author | kb0iic <kb0iic@berzerkula.org> | 2019-07-27 22:34:16 -0500 |
---|---|---|
committer | kb0iic <kb0iic@berzerkula.org> | 2019-07-27 22:34:16 -0500 |
commit | b5825974903b208b5ffc75575e5b253d543e9459 (patch) | |
tree | 4fd6440a5ea0347960880ed98bc6e65649fe4fc3 /main.h | |
parent | e6bffe23c87a9f6de8abdec747600f674b9cab62 (diff) |
Refactor weekofday to weekOfDay
Diffstat (limited to 'main.h')
-rwxr-xr-x | main.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ unsigned int sec = 30;
unsigned int min = 42;
unsigned int hour = 21;
-unsigned int dayofweek = 7;
+unsigned int dayOfWeek = 7;
unsigned int date = 27;
unsigned int month = 7;
unsigned int year = 19;
@@ -44,7 +44,7 @@ void format_DateTimeChars(void); // Format msb and lsb for temperature display
void format_Temperature(void);
-// Determine day of week with dayofweek from DS3231
+// Determine day of week from DS3231
void getWeekDay(unsigned int);
// Determine Alarm status from control registers
|