add converstions to KnxValue and remove now obsolet methods

This commit is contained in:
Thomas Kunze
2019-06-12 00:01:21 +02:00
parent 57db264603
commit 378385ee97
10 changed files with 435 additions and 138 deletions

View File

@@ -45,7 +45,7 @@ void measureTemp()
// callback from reset-GO
void resetCallback(GroupObject& go)
{
if (go.value().boolValue())
if (go.value())
{
maxValue = 0;
minValue = 10000;

View File

@@ -14,7 +14,7 @@
// callback from switch-GO
void switchCallback(GroupObject& go)
{
if (goBlock.value().boolValue())
if (goBlock.value())
return;
bool value = goSwitch.value();