blob: c39964116378c54c3809f193ef98b54bf51fbb71 (
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
|
#include <Arduino.h>
#include <Wire.h>
#include <homekit/main.h>
#include <homekit/mqtt/mqtt.h>
#include <homekit/mqtt/module/relay.h>
#include <homekit/relay.h>
using namespace homekit;
using main::LoopConfig;
using mqtt::Mqtt;
using mqtt::MqttRelayModule;
MqttRelayModule* mqttRelayModule = nullptr;
static void onMqttCreated(Mqtt& mqtt);
LoopConfig loopConfig = {
.onMqttCreated = onMqttCreated
};
void setup() {
main::setup();
relay::init();
}
void loop() {
main::loop(&loopConfig);
}
static void onMqttCreated(Mqtt& mqtt) {
if (mqttRelayModule == nullptr) {
mqttRelayModule = new MqttRelayModule();
mqtt.addModule(mqttRelayModule);
}
}
|