You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
500 B
C++
29 lines
500 B
C++
/*
|
|
* WeinbusTableCoil.cpp
|
|
*
|
|
* Author: Aleksey Gerasimenko
|
|
* gerasimenko.aleksey.n@gmail.com
|
|
*/
|
|
|
|
#include "WEINBUS/WeinbusTableCoil.h"
|
|
|
|
namespace WEINBUS
|
|
{
|
|
//CONSTRUCTOR
|
|
WeinbusTableCoil::WeinbusTableCoil():
|
|
WeinbusTableUnit(),
|
|
m_coil(WEINBUS::COIL00)
|
|
{}//CONSTRUCTOR
|
|
|
|
|
|
void WeinbusTableCoil::add(uint16_t address, WEINBUS::weinbus_coil_t coil, uint16_t* param)
|
|
{
|
|
m_address = address;
|
|
m_param = param;
|
|
m_coil = coil;
|
|
//
|
|
}//
|
|
//
|
|
|
|
} /* namespace WEINBUS */
|