LoomTempSync class

Used to synchronize temperatures between sensors that read sensors and modules that need it.

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

void measure()
Sync the temperature.
void package(JsonObject json) override
No package necessary.

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
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.