mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-11 19:46:48 +01:00
26 lines
585 B
C++
26 lines
585 B
C++
#include "include/unit.h"
|
|
#include <iostream>
|
|
|
|
namespace womolin::board::simulation
|
|
{
|
|
|
|
bool Relay::UpdateUnitSignalSetReset( std::string & key, std::string & value )
|
|
{
|
|
std::cout << key << ":" << value << std::endl;
|
|
return false;
|
|
}
|
|
|
|
bool Relay::UpdateUnitSignalOnOff( std::string & key, std::string & value )
|
|
{
|
|
std::cout << key << ":" << value << std::endl;
|
|
return false;
|
|
}
|
|
|
|
bool Relay::UpdateUnitSignalCloseOpen( std::string & key, std::string & value )
|
|
{
|
|
std::cout << key << ":" << value << std::endl;
|
|
return false;
|
|
}
|
|
|
|
}
|