My Project
Loading...
Searching...
No Matches
MTC4BTMQTTHandler.h
Go to the documentation of this file.
1#pragma once
2
3#include <Arduino.h>
4#include <XmlParser.h>
5
6// Class used to translate MQTT messages to BLE commands.
8{
9 public:
10 // Handles the given MQTT message and applies it to the applicable loco(s).
11 static void Handle(const char *message);
12
13 private:
14 static void handleSys(const char *message);
15 static void handleLc(const char *message);
16 static void handleFn(const char *message);
17};
Definition MTC4BTMQTTHandler.h:8
static void Handle(const char *message)
Definition MTC4BTMQTTHandler.cpp:8