summaryrefslogtreecommitdiff
path: root/platformio/common/libs/mqtt/homekit/mqtt/module.cpp
blob: e78ff12d8d0ab17fb50f769df70ad082dfca5128 (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
#include "./module.h"
#include <homekit/logging.h>

namespace homekit::mqtt {

bool MqttModule::tickElapsed() {
    if (!tickSw.elapsed(tickInterval*1000))
        return false;

    tickSw.save();
    return true;
}

void MqttModule::handlePayload(Mqtt& mqtt, String& topic, uint16_t packetId, const uint8_t* payload, size_t length,
                               size_t index, size_t total) {
    if (length != total)
        PRINTLN("mqtt: received partial message, not supported");

    // TODO
}

void MqttModule::handleOnPublish(uint16_t packetId) {}

void MqttModule::handleOnDisconnect(espMqttClientTypes::DisconnectReason reason) {}

}