mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-14 04:56:48 +01:00
11 lines
183 B
C++
11 lines
183 B
C++
#include "include/unit.h"
|
|
|
|
namespace womolin::board::simulation::hal::unit
|
|
{
|
|
Relay::Relay( uint8_t relayId )
|
|
: womolin::unit::Relay()
|
|
, relayId( relayId )
|
|
{
|
|
}
|
|
}
|