From 3eaa1ba31b98db69638a816e33a9f9a05577bf2b Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Thu, 17 Apr 2025 09:35:23 +0200 Subject: [PATCH] Compatibility fixes --- src/Things/TouchSensor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Things/TouchSensor.cs b/src/Things/TouchSensor.cs index f85cfd9..c1a7fd0 100644 --- a/src/Things/TouchSensor.cs +++ b/src/Things/TouchSensor.cs @@ -24,7 +24,7 @@ namespace RoboidControl { //thisParticipant = participant; } - public TouchSensor(Thing parent) : base(parent) { } + public TouchSensor(Thing parent, bool invokeEvent = true) : base(parent, (byte)Type.TouchSensor, invokeEvent) { } public ParticipantUDP thisParticipant;