diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-05-30 01:07:42 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-05-30 01:07:42 +0300 |
commit | b02a9c5473267da88a9182a5b06753f62b689042 (patch) | |
tree | 775b15c4b6d844996671ea7f5bc9adb856356622 /platformio | |
parent | d1435e2b1acc31fba64d21994d40297ae900c549 (diff) |
platformio: add 'temphum_relayctl' product
Diffstat (limited to 'platformio')
-rw-r--r-- | platformio/temphum_relayctl/src/main.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/platformio/temphum_relayctl/src/main.cpp b/platformio/temphum_relayctl/src/main.cpp new file mode 100644 index 0000000..0b05316 --- /dev/null +++ b/platformio/temphum_relayctl/src/main.cpp @@ -0,0 +1,50 @@ +#include <Arduino.h> +#include <Wire.h> +#include <homekit/main.h> +#include <homekit/mqtt/mqtt.h> +#include <homekit/mqtt/module/temphum.h> +#include <homekit/mqtt/module/relay.h> +#include <homekit/temphum.h> +#include <homekit/relay.h> + +using namespace homekit; +using main::LoopConfig; +using mqtt::Mqtt; +using mqtt::MqttTemphumModule; +using mqtt::MqttRelayModule; + +temphum::Sensor* sensor = nullptr; +MqttTemphumModule* mqttTemphumModule = nullptr; +MqttRelayModule* mqttRelayModule = nullptr; + +static void onMqttCreated(Mqtt& mqtt); + +LoopConfig loopConfig = { + .onMqttCreated = onMqttCreated +}; + +void setup() { + main::setup(); + + relay::init(); + +#if CONFIG_MODULE == HOMEKIT_SI7021 + sensor = new temphum::Si7021(); +#elif CONFIG_MODULE == HOMEKIT_DHT12 + sensor = new temphum::DHT12(); +#endif + sensor->setup(); +} + +void loop() { + main::loop(&loopConfig); +} + +static void onMqttCreated(Mqtt& mqtt) { + if (mqttTemphumModule == nullptr) { + mqttTemphumModule = new MqttTemphumModule(sensor); + mqttRelayModule = new MqttRelayModule(); + mqtt.addModule(mqttTemphumModule); + mqtt.addModule(mqttRelayModule); + } +}
\ No newline at end of file |