aboutsummaryrefslogtreecommitdiff
path: root/platformio/temphum_relayctl/src/main.cpp
blob: 0b0531698d05bf6a651a90c223fc5392e9845092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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);
    }
}