hoymilesClient/inc/hoymiles.h

19 lines
No EOL
231 B
C++

#ifndef HOYMILES_H
#define HOYMILES_H
struct _modbus;
typedef _modbus modbus_t;
class Dtu{
private:
modbus_t *modbus_t;
public:
Dtu(const char *ip_address, int port);
void readTest();
~Dtu();
};
#endif