Update group_object.cpp

This commit is contained in:
Maggyver 2019-05-17 16:56:04 +02:00 committed by GitHub
parent de231bac0e
commit 38d7177b72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,6 +165,12 @@ bool GroupObject::objectReadBool()
return _data[0] > 0;
}
uint8_t GroupObject::objectReadByte()
{
return _data[0];
}
void GroupObject::requestObjectRead()
{
_commFlag = ReadRequest;