14 lines
288 B
C
Executable File
14 lines
288 B
C
Executable File
#include "protocols.h"
|
|
#include "date_time.h"
|
|
#include "rest.h"
|
|
#include "mqtt.h"
|
|
//#include "modbus_tcp.h"
|
|
|
|
void protocols_init(void)
|
|
{
|
|
date_time_init();
|
|
/* Serve static files from the SPIFFS data partition */
|
|
rest_init("/data");
|
|
//mqtt_init();
|
|
//modbus_tcp_init();
|
|
} |