diff --git a/esp-vent-main/inc/Fan.h b/esp-vent-main/inc/Fan.h new file mode 100644 index 0000000..ffe61e6 --- /dev/null +++ b/esp-vent-main/inc/Fan.h @@ -0,0 +1,22 @@ +/* + * Fan.h + * + * Created on: Oct 26, 2022 + * Author: tylen + */ + +#include "Modbus/ModbusRegister.h" + +#ifndef FAN_H_ +#define FAN_H_ + +class Fan { +public: + Fan(ModbusRegister * A01); + virtual ~Fan(); + +private: + ModbusRegister * _A01; +}; + +#endif /* FAN_H_ */ diff --git a/esp-vent-main/src/Fan.cpp b/esp-vent-main/src/Fan.cpp new file mode 100644 index 0000000..fde3f3b --- /dev/null +++ b/esp-vent-main/src/Fan.cpp @@ -0,0 +1,18 @@ +/* + * Fan.cpp + * + * Created on: Oct 26, 2022 + * Author: tylen + */ + +#include "Fan.h" + +Fan::Fan(ModbusRegister * A01) { + // TODO Auto-generated constructor stub + +} + +Fan::~Fan() { + // TODO Auto-generated destructor stub +} +