Loom
|
Abstract base class of RTC modules. More...
#include <RTC.h>
Public Member Functions | |
CONSTRUCTORS / DESTRUCTOR | |
LoomRTC (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, TimeZone timezone, const bool use_local_time, const bool custom_time) | |
Constructor. More... | |
virtual | ~LoomRTC ()=default |
Destructor. More... | |
OPERATION | |
virtual void | package (JsonObject json) override |
Adds a timestamp to the provided data Json. More... | |
virtual DateTime | now () const =0 |
Get DateTime of current time. More... | |
void | time_adjust (const DateTime time, const bool is_utc=true) |
Set time to provided timezone. More... | |
void | get_timestamp (char *header, char *timestamp, const char delimiter, const uint8_t format=3) |
Get timestamp. More... | |
virtual void | set_alarm (DateTime time)=0 |
Set an alarm to go off at the specified time. More... | |
void | set_alarm (const TimeSpan duration) |
Set an alarm for a duration. More... | |
virtual void | clear_alarms ()=0 |
Clear alarms. More... | |
GETTERS | |
const char * | get_datestring () |
Get the pin the RTC interrupt is assumed to be connected to. More... | |
void | get_datestring (char *buf) |
Get string of date. More... | |
const char * | get_timestring () |
Get string of time. More... | |
void | get_timestring (char *buf) |
Get string of time. More... | |
const char * | get_weekday () |
Get string of weekday. More... | |
void | get_weekday (char *buf) |
Get string of weekday. More... | |
![]() | |
LoomModule (LoomManager *manager, const char *module_name="Unknown", const Type module_type=Type::Unknown) | |
Constructor. More... | |
virtual | ~LoomModule ()=default |
Destructor. More... | |
virtual void | second_stage_ctor () |
Second stage construction. More... | |
virtual bool | dispatch (JsonObject json) |
Route command to driver. More... | |
virtual void | power_down () |
Turn off any hardware. More... | |
virtual void | power_up () |
Turn on any hardware. More... | |
virtual void | add_config (JsonObject json) |
Add configuration information to JsonObject. More... | |
Type | get_module_type () const |
Get module type. More... | |
LoomManager * | get_device_manager () const |
Get the device manager class if linked. More... | |
void | get_module_name (char *buf) const |
Copy module name into buffer. More... | |
const char * | get_module_name () const |
Get module name. More... | |
Verbosity | get_print_verbosity () const |
Get print verbosity. More... | |
Verbosity | get_package_verbosity () const |
Get package verbosity. More... | |
bool | get_active () const |
Get whether or not the module should be treated as active. More... | |
Category | category () const |
Get the category of the module. More... | |
void | set_print_verbosity (const Verbosity v) |
Set print verbosity Controlls level of detail included in debug prints. More... | |
void | set_package_verbosity (const Verbosity v) |
Set package verbosity. More... | |
void | set_active (const bool enable) |
Set whether or not the module should be treated as active. More... | |
Protected Attributes | |
TimeZone | timezone |
The TimeZone to use. More... | |
bool | use_local_time |
Whether or not use local time, else UTC time. More... | |
bool | converted |
Whether or not converted daylight saving / summer time or not. More... | |
bool | custom_time |
DateTime | local_time |
DateTime variable for the Local Time. More... | |
char | local_datestring [20] |
Latest saved string of Local Date (year/month/day) More... | |
char | local_timestring [20] |
Latest saved string of Local time (hour:minute:second) More... | |
char | datestring [20] |
Latest saved string of the Date (year/month/day) More... | |
char | timestring [20] |
Latest saved string of the time (hour:minute:second) More... | |
![]() | |
const Type | module_type |
Module type. More... | |
LoomManager * | device_manager |
Pointer to manager. More... | |
const String | module_name_base |
The name of the module (Should have a DEFAULT but can be overriden if provided to constructor) More... | |
const char * | module_name |
bool | active |
Whether or not the module should be treated as active. More... | |
Verbosity | print_verbosity |
Print verbosity. More... | |
Verbosity | package_verbosity |
Package verbosity. More... | |
PRINT INFORMATION | |
virtual void | print_config () const override |
Display the configuration settings of the module. More... | |
virtual void | print_state () const override |
Display current state of the module. More... | |
void | print_time (const bool verbose=false) |
Print the current time. More... | |
static void | print_DateTime (DateTime time) |
Print an arbitrary DateTime object. More... | |
MISCELLANEOUS | |
void | link_device_manager (LoomManager *LM) override |
Add pointer back to device manager. More... | |
static char * | enum_timezone_string (const TimeZone t) |
Get string of name associated with time zone enum. More... | |
void | init () |
Initialize RTC. More... | |
virtual void | _adjust (const DateTime time)=0 |
Begin auxiliary function that subclasses need to implement. More... | |
virtual bool | _begin ()=0 |
Begin auxiliary function that subclasses need to implement. More... | |
virtual bool | _initialized ()=0 |
Initialization auxiliary function that subclasses need to implement. More... | |
void | read_rtc () |
Read the RTC, update time and date strings. More... | |
void | local_rtc () |
Read local time if local time is enable to read It will be updated on contents array in the data json. More... | |
void | set_rtc_to_compile_time () |
Set the RTC time to compile time. More... | |
void | set_rtc_to_computer_time () |
Set the RTC time to computer time by user input if the board is connected to computer. More... | |
void | convert_local_to_utc (const bool to_utc=true) |
Convert time between local and UTC. More... | |
bool | rtc_validity_check () |
Check if current RTC time is valid (not necessarily correct) More... | |
DateTime | convert_daylight_to_standard (DateTime local_time) |
Convert time between daylight saving time and standard time. More... | |
DateTime | us_daylight_to_standard (DateTime local_time) |
Convert the time in the US daylight saving and standard. More... | |
DateTime | eu_daylight_to_standard (DateTime local_time) |
Convert the time in the EU summer time and standard. More... | |
Additional Inherited Members | |
![]() | |
static const char * | enum_verbosity_string (const Verbosity v) |
Get string of name associated with verbosity enum. More... | |
static const char * | enum_category_string (const Category c) |
Get string of the category associated with a Category. More... | |
![]() | |
void | print_module_label () const |
Print the module name as a label. More... | |
Abstract base class of RTC modules.
|
strong |
LoomRTC::LoomRTC | ( | LoomManager * | manager, |
const char * | module_name, | ||
const LoomModule::Type | module_type, | ||
TimeZone | timezone, | ||
const bool | use_local_time, | ||
const bool | custom_time | ||
) |
Constructor.
[in] | module_name | Name of the module (provided by derived classes) |
[in] | module_type | Type of the module (provided by derived classes) |
[in] | timezone | Which timezone device is in |
[in] | use_local_time | True for local time, false for UTC time |
[in] | custom_time | True for user input time, false otherwise |
|
virtualdefault |
Destructor.
|
protectedpure virtual |
Begin auxiliary function that subclasses need to implement.
Implemented in Loom_PCF8523, and Loom_DS3231.
|
protectedpure virtual |
Begin auxiliary function that subclasses need to implement.
Implemented in Loom_PCF8523, and Loom_DS3231.
|
protectedpure virtual |
Initialization auxiliary function that subclasses need to implement.
Implemented in Loom_PCF8523, and Loom_DS3231.
|
pure virtual |
Clear alarms.
Implemented in Loom_PCF8523, and Loom_DS3231.
|
protected |
Convert time between daylight saving time and standard time.
[in] | local_time | The updated version of local time after convertion of daylight saving / summer time or standard time |
|
protected |
Convert time between local and UTC.
Uses current timezone setting
[in] | to_utc | True to switch to UTC, false to go to local from UTC |
|
static |
Get string of name associated with time zone enum.
[in] | t | TimeZone value to get string of |
|
protected |
Convert the time in the EU summer time and standard.
[in] | local_time | The updated local_time based on eu summmer time |
const char * LoomRTC::get_datestring | ( | ) |
Get the pin the RTC interrupt is assumed to be connected to.
void LoomRTC::get_datestring | ( | char * | buf | ) |
Get string of date.
[out] | buf | Buffer to fill |
void LoomRTC::get_timestamp | ( | char * | header, |
char * | timestamp, | ||
const char | delimiter, | ||
const uint8_t | format = 3 |
||
) |
Get timestamp.
[out] | header | Column header(s) of timestamp element |
[out] | timestamp | String to fill with timestamp element(s) |
[in] | delimiter | Delimiter to use |
[in] | format | How to format timestamp (0: no timestamp added, 1: only date added, 2: only time added, 3: both date and time added (two fields), 4: both date and time added (combined field) ), |
const char * LoomRTC::get_timestring | ( | ) |
Get string of time.
void LoomRTC::get_timestring | ( | char * | buf | ) |
Get string of time.
[out] | buf | Buffer to fill] |
|
inline |
Get string of weekday.
void LoomRTC::get_weekday | ( | char * | buf | ) |
Get string of weekday.
[out] | buf | Buffer to fill |
|
protected |
Initialize RTC.
Called by subclass constructors
|
overridevirtual |
Add pointer back to device manager.
Generally only called when device manager links module to provide pointer both directions. Derived modules may override this for increased function, such as linking a submanager or RTC module.
[in] | LM | LoomManager to point to |
Reimplemented from LoomModule.
|
protected |
Read local time if local time is enable to read It will be updated on contents array in the data json.
|
pure virtual |
|
overridevirtual |
Adds a timestamp to the provided data Json.
[out] | json | Object to add timestamp to |
Implements LoomModule.
|
overridevirtual |
Display the configuration settings of the module.
Reimplemented from LoomModule.
Reimplemented in Loom_PCF8523, and Loom_DS3231.
|
static |
Print an arbitrary DateTime object.
[in] | time | Time to print |
|
overridevirtual |
Display current state of the module.
Reimplemented from LoomModule.
void LoomRTC::print_time | ( | const bool | verbose = false | ) |
Print the current time.
[in] | verbose | True for multile lines, false for short display |
|
protected |
Read the RTC, update time and date strings.
|
protected |
Check if current RTC time is valid (not necessarily correct)
|
pure virtual |
Set an alarm to go off at the specified time.
[in] | time | DateTime of time alarm should go off |
Implemented in Loom_PCF8523, and Loom_DS3231.
|
inline |
Set an alarm for a duration.
[in] | duration | TimeSpan of duration before alarm goes off |
|
protected |
Set the RTC time to compile time.
|
protected |
Set the RTC time to computer time by user input if the board is connected to computer.
void LoomRTC::time_adjust | ( | const DateTime | time, |
const bool | is_utc = true |
||
) |
Set time to provided timezone.
[in] | time | Time to set to |
[in] | is_utc | True if 'time' is in UTC, false if local |
|
protected |
Convert the time in the US daylight saving and standard.
[in] | local_time | The updated local_time based on us daylight saving |
|
protected |
Whether or not converted daylight saving / summer time or not.
|
protected |
|
protected |
Latest saved string of the Date (year/month/day)
|
protected |
Latest saved string of Local Date (year/month/day)
|
protected |
DateTime variable for the Local Time.
|
protected |
Latest saved string of Local time (hour:minute:second)
|
protected |
Latest saved string of the time (hour:minute:second)
|
protected |
The TimeZone to use.
|
protected |
Whether or not use local time, else UTC time.