Initial lib commit with cmake

This commit is contained in:
TraYali 2024-04-10 18:25:36 +02:00
commit e39d6cda18
31 changed files with 7172 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#ifndef SUNSPEC_PARAMETERS_H
#define SUNSPEC_PARAMETERS_H
#include "sunspecParametersGeneric.h"
class SunspecParameterManufacturer : public SunspecParameterString32 {
protected:
public:
SunspecParameterManufacturer();
void getValueFromRegisters(uint16_t *registers, int addressOffset);
};
#endif