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.
26 lines
384 B
C++
26 lines
384 B
C++
4 weeks ago
|
/*
|
||
|
* WeinbusTableUnit.cpp
|
||
|
*
|
||
|
* Author: Aleksey Gerasimenko
|
||
|
* gerasimenko.aleksey.n@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include "WEINBUS/WeinbusTableUnit.h"
|
||
|
|
||
|
namespace WEINBUS
|
||
|
{
|
||
|
//CONSTRUCTOR
|
||
|
WeinbusTableUnit::WeinbusTableUnit():
|
||
|
m_address(0),
|
||
|
m_param(0)
|
||
|
{}//CONSTRUCTOR
|
||
|
|
||
|
|
||
|
uint16_t WeinbusTableUnit::get_address()
|
||
|
{
|
||
|
return m_address;
|
||
|
//
|
||
|
}//
|
||
|
|
||
|
} /* namespace WEINBUS */
|