48 lines
459 B
C++
48 lines
459 B
C++
/*
|
|
* productionMode.cpp
|
|
*
|
|
* Created on: Jul 26, 2020
|
|
* Author: wn
|
|
*/
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <mqttHandling.h>
|
|
|
|
|
|
|
|
|
|
#include "configuration.h"
|
|
|
|
|
|
|
|
|
|
|
|
// void subscribeApplication() {
|
|
// }
|
|
|
|
|
|
// void callbackApplication(char *topic, uint8_t tokenCnt, char **tokens) {
|
|
// }
|
|
|
|
|
|
void setupApplication() {
|
|
mqttSetup();
|
|
|
|
}
|
|
|
|
|
|
void loopApplication() {
|
|
mqttLoop();
|
|
|
|
}
|
|
|
|
|