Files
BionxControl/bcvalue.cpp
2025-12-15 20:57:09 +01:00

18 lines
241 B
C++

#include <bcvalue.h>
BCRawValue::BCRawValue(BCDevice::ID deviceID_, BC::ID targetID_)
: deviceID{deviceID_}, targetID{targetID_}
{
}
void BCRawValue::setLongValue( uint8_t value)
{
}
uint8_t BCRawValue::getLongValue()
{
return 0;
}