Added BCValue creation, part II.

This commit is contained in:
2025-12-16 21:21:59 +01:00
parent b0d347ef79
commit afb5828a65
6 changed files with 80 additions and 12 deletions

View File

@@ -29,3 +29,28 @@
#include <bcvalue.h>
BCValue::BCValue(BCDevice::ID deviceID_, BC::ID targetID_)
: deviceID{deviceID_}, targetID{targetID_}
{
}
void BCValue::setLongValue( uint8_t value)
{
}
uint8_t BCValue::getLongValue()
{
return 0;
}
BCValue* BCValue::makeValue(BCDevice::ID deviceI, const BCValueParams& params )
{
return nullptr;
}