|
enum | Type {
Type::Unknown = 0,
Type::Other =1000,
Type::Interrupt_Manager,
Type::Sleep_Manager,
Type::Multiplexer,
Type::NTP,
Type::TempSync,
Type::WarmUp_Manager,
Type::Sensor =2000,
Type::Analog,
Type::Digital,
Type::I2C =2100,
Type::ADS1115,
Type::AS7262,
Type::AS7263,
Type::AS7265X,
Type::FXAS21002,
Type::FXOS8700,
Type::LIS3DH,
Type::MB1232,
Type::MMA8451,
Type::MPU6050,
Type::MS5803,
Type::SHT31D,
Type::TMP007,
Type::TSL2561,
Type::TSL2591,
Type::ZXGesture,
Type::STEMMA,
Type::SDI12 =2200,
Type::Decagon5TM,
Type::DecagonGS3,
Type::SPI =2300,
Type::MAX31855,
Type::MAX31856,
Type::L_SERIAL =2400,
Type::K30,
Type::L_RTC =3000,
Type::DS3231,
Type::PCF8523,
Type::Actuator =4000,
Type::Neopixel,
Type::Relay,
Type::Servo,
Type::Stepper,
Type::LogPlat =5000,
Type::OLED,
Type::SDCARD,
Type::BATCHSD,
Type::CommPlat =6000,
Type::LoRa,
Type::nRF,
Type::Bluetooth,
Type::InternetPlat =7000,
Type::Ethernet,
Type::WiFi,
Type::LTE,
Type::PublishPlat =8000,
Type::GoogleSheets,
Type::MaxPub,
Type::SpoolPub,
Type::SubscribePlats =9000,
Type::MaxSub
} |
| Enum to check against to when finding individual component managed by a LoomManager. More...
|
|
enum | Category {
Category::Unknown =0,
Category::Other =1,
Category::Sensor =2,
Category::L_RTC =3,
Category::Actuator =4,
Category::LogPlat =5,
Category::CommPlat =6,
Category::InternetPlat =7,
Category::PublishPlat =8,
Category::SubscribePlat =9
} |
| Enum to classify modules. More...
|
|
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...
|
|
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...
|
|