mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
.
This commit is contained in:
parent
ea88945f18
commit
ce190a44e4
@ -54,7 +54,7 @@ script:
|
||||
- if [ "$MODE" = "LINUX" ]; then make; fi
|
||||
- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-demo; fi
|
||||
- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-sonoffS20; fi
|
||||
#- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-bme680; fi
|
||||
- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-bme680; fi
|
||||
- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-hdc1008; fi
|
||||
|
||||
notifications:
|
||||
|
@ -247,8 +247,8 @@ void updateState(void)
|
||||
void triggerCallback(GroupObject& go)
|
||||
{
|
||||
Serial.println("trigger");
|
||||
Serial.println(go.value().boolValue());
|
||||
if (!go.value().boolValue())
|
||||
Serial.println((bool)go.value());
|
||||
if (!go.value())
|
||||
return;
|
||||
|
||||
trigger = true;
|
||||
|
Loading…
Reference in New Issue
Block a user