recuperator fan control with esp32
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* Modbus interface
|
|
*/
|
|
|
|
#ifndef mbiface_H
|
|
#define mbiface_H
|
|
|
|
#include "socket_server.h"
|
|
#include "modbus.h"
|
|
|
|
extern Tcpd_t g_mbifc_server;
|
|
extern ModbusSlave_t g_modbus;
|
|
|
|
void mbiface_setup();
|
|
|
|
#endif //mbiface_H
|
|
|