Files
chargeflow/components/protocols/src/protocols.c
2025-06-06 22:20:37 +01:00

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();
}