Loom
|
Abstract root of Loom component modules inheritance hierarchy. More...
#include <Module.h>
Public Member Functions | |
CONSTRUCTORS / DESTRUCTOR | |
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... | |
OPERATION | |
virtual void | package (JsonObject json)=0 |
Package a modules measurements or state. 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... | |
GETTERS | |
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... | |
SETTERS | |
virtual void | link_device_manager (LoomManager *LM) |
Add pointer back to device manager. 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... | |
Static Public Member Functions | |
MISCELLANEOUS | |
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... | |
Protected Attributes | |
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 |
Display the configuration settings of the module. More... | |
virtual void | print_state () const |
Display current state of the module. More... | |
void | print_module_label () const |
Print the module name as a label. More... | |
Abstract root of Loom component modules inheritance hierarchy.
All modules in Loom inherit from LoomModule
|
strong |
Enum to classify modules.
Similar LoomModule::Type but represents the astract classes rather than the leaf node modules in the inheritance tree. For a given module, its category often shares a name with the abstract class it is derived from
|
strong |
Enum to check against to when finding individual component managed by a LoomManager.
Used because we cannot use dynamic_cast to check type of modules (rtti disabled by Arduino IDE)
LoomModule::LoomModule | ( | LoomManager * | manager, |
const char * | module_name = "Unknown" , |
||
const Type | module_type = Type::Unknown |
||
) |
Constructor.
[in] | module_name | Name of the module (provided by derived classes) |
[in] | module_type | Type of the module (provided by derived classes) |
|
virtualdefault |
Destructor.
|
inlinevirtual |
Add configuration information to JsonObject.
LoomManager iterates over modules to build complete configuration
[in] | json | Json configuration object to add to |
Reimplemented in Loom_Analog, Loom_LoRa, Loom_nRF, Loom_Digital, Loom_Bluetooth, Loom_Stepper, Loom_Neopixel, Loom_Servo, and Loom_Relay.
LoomModule::Category LoomModule::category | ( | ) | const |
Get the category of the module.
|
inlinevirtual |
Route command to driver.
Reimplemented in Loom_Multiplexer, Loom_Stepper, Loom_Neopixel, Loom_Servo, LoomNTPSync, Loom_MaxPub, and Loom_Relay.
|
static |
Get string of the category associated with a Category.
[in] | c | Category value to get string representation of |
|
static |
Get string of name associated with verbosity enum.
[in] | v | Verbosity value to get string representation of |
|
inline |
Get whether or not the module should be treated as active.
|
inline |
Get the device manager class if linked.
void LoomModule::get_module_name | ( | char * | buf | ) | const |
Copy module name into buffer.
[out] | buf | The buffer to copy module name into |
|
inline |
Get module name.
|
inline |
Get module type.
|
inline |
Get package verbosity.
|
inline |
Get print verbosity.
|
virtual |
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 in Loom_Interrupt_Manager, LoomRTC, Loom_SD, and Loom_Sleep_Manager.
|
pure virtual |
Package a modules measurements or state.
[out] | json | Object to put data into |
Implemented in Loom_Interrupt_Manager, Loom_Analog, Loom_Multiplexer, LoomCommPlat, LoomInternetPlat, Loom_ADS1115, LoomRTC, Loom_BatchSD, Loom_WiFi, Loom_MPU6050, Loom_Sleep_Manager, Loom_Digital, Loom_AS7265X, Loom_AS7263, Loom_AS7262, Loom_ZXGesture, Loom_TSL2591, Loom_K30, Loom_TSL2561, Loom_MAX31856, Loom_MS5803, Loom_MMA8451, LoomTempSync, LoomPublishPlat, Loom_LIS3DH, Loom_FXOS8700, Loom_MaxSub, Loom_FXAS21002, Loom_SHT31D, Loom_TMP007, Loom_MAX31855, Loom_Servo, LoomNTPSync, LoomLogPlat, Loom_MB1232, Loom_Relay, Loom_DecagonGS3, Loom_Decagon5TM, Loom_STEMMA, LoomActuator, and Loom_WarmUp_Manager.
|
inlinevirtual |
Turn off any hardware.
Reimplemented in Loom_Multiplexer, Loom_LoRa, Loom_SD, Loom_LTE, and Loom_BatchSD.
|
inlinevirtual |
Turn on any hardware.
Reimplemented in Loom_Multiplexer, Loom_LoRa, Loom_SD, Loom_LTE, and Loom_BatchSD.
|
virtual |
Display the configuration settings of the module.
Reimplemented in Loom_Interrupt_Manager, LoomCommPlat, Loom_Multiplexer, LoomRTC, Loom_Analog, Loom_LoRa, Loom_SD, Loom_OLED, Loom_nRF, Loom_Bluetooth, Loom_LTE, Loom_ADS1115, Loom_BatchSD, Loom_Sleep_Manager, Loom_WiFi, LoomPublishPlat, Loom_Digital, Loom_Ethernet, Loom_AS7263, Loom_AS7262, Loom_ZXGesture, LoomSubscribePlat, Loom_Neopixel, Loom_MMA8451, Loom_MaxSub, LoomTempSync, LoomLogPlat, Loom_PCF8523, LoomNTPSync, Loom_MaxPub, LoomI2CSensor, Loom_DS3231, Loom_GoogleSheets, LoomSensor, Loom_DecagonGS3, Loom_Decagon5TM, and LoomSerialSensor.
|
protected |
Print the module name as a label.
Used for matching debug prints to corresponding module
|
virtual |
Display current state of the module.
Reimplemented in Loom_Interrupt_Manager, LoomCommPlat, Loom_Multiplexer, LoomRTC, Loom_LTE, Loom_WiFi, Loom_MPU6050, Loom_Ethernet, LoomPublishPlat, LoomSubscribePlat, Loom_Neopixel, Loom_Stepper, Loom_Servo, LoomNTPSync, and Loom_Relay.
|
inlinevirtual |
Second stage construction.
Perform any actions that need all of the devices to be initized beforehand - such as looking up an internet platform This function is guranteed to be called AFTER all modules have been constructed.
Reimplemented in LoomSubscribePlat, LoomPublishPlat, LoomTempSync, Loom_MaxSub, Loom_MaxPub, and LoomNTPSync.
|
inline |
Set whether or not the module should be treated as active.
[in] | enable | Whether or not to enable module |
void LoomModule::set_package_verbosity | ( | const Verbosity | v | ) |
Set package verbosity.
Controlls level of detail included in bundles
[in] | v | The verbosity setting |
void LoomModule::set_print_verbosity | ( | const Verbosity | v | ) |
Set print verbosity Controlls level of detail included in debug prints.
|
protected |
Whether or not the module should be treated as active.
If inactive at setup (due to failed initialization, module will be deleted)
|
protected |
Pointer to manager.
LoomManager provides to any modules passed to add_module
|
protected |
|
protected |
The name of the module (Should have a DEFAULT but can be overriden if provided to constructor)
|
protected |
Module type.
|
protected |
Package verbosity.
|
protected |
Print verbosity.