LoomTempSync class
Used to synchronize temperatures between sensors that read sensors and modules that need it.
Contents
Base classes
- class LoomModule
- Abstract root of Loom component modules inheritance hierarchy.
CONSTRUCTORS / DESTRUCTOR
-
LoomTempSync(LoomManager* manager,
const LoomModule::
Type source = LoomModule:: Type:: MS5803, const LoomModule:: Type dependant = LoomModule:: Type:: Analog) - Constructor.
- LoomTempSync(LoomManager* manager, JsonArrayConst p)
- Constructor that takes Json Array, extracts args and delegates to regular constructor.
- ~LoomTempSync() defaulted
- Destructor.
- void second_stage_ctor() override
- Verify that source and dependant modules exist, sync temperatures.
OPERATION
PRINT INFORMATION
- LoomModule* source
- Pointer to module to get temperature from.
- LoomModule* dependant
- Pointer to module to forward temperature to.
-
LoomModule::
Type source_type - Type of source module.
-
LoomModule::
Type dependant_type - Type of dependant module.
- void print_config() const override
- Display the configuration settings of the module.
Function documentation
LoomTempSync:: LoomTempSync(LoomManager* manager,
const LoomModule:: Type source = LoomModule:: Type:: MS5803,
const LoomModule:: Type dependant = LoomModule:: Type:: Analog)
Constructor.
Parameters | |
---|---|
manager | |
source in | Module type to get temperature from |
dependant in | Module type to forward temperature to |
LoomTempSync:: LoomTempSync(LoomManager* manager,
JsonArrayConst p)
Constructor that takes Json Array, extracts args and delegates to regular constructor.
Parameters | |
---|---|
manager | |
p in | The array of constuctor args to expand |
void LoomTempSync:: measure()
Sync the temperature.
Simply calls synchronization implementation LoomTempSync::sync_temp(). Allows the module to run regularly by emulating a sensor, which have thier measure methods called regularly.
void LoomTempSync:: package(JsonObject json) override
No package necessary.
Implement with empty body.