From 8088ef6be21aee79ccc9c1359c93248fb0496a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Tr=C3=B6ger?= Date: Wed, 13 Dec 2023 09:03:18 +0100 Subject: [PATCH] no message --- DHCPSniffer/module.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DHCPSniffer/module.php b/DHCPSniffer/module.php index 33ae132..aa058e0 100644 --- a/DHCPSniffer/module.php +++ b/DHCPSniffer/module.php @@ -219,12 +219,12 @@ protected function SendEvent() $this->SetValue('EVENT', true); break; case 1: // IMPULSE - $this->SetValue('EVENT', true); + $this->SetValue('IMPULSE', true); IPS_Sleep(1); - $this->SetValue('EVENT', false); + $this->SetValue('IMPULSE', false); break; case 2: // Toggle - $this->SetValue('EVENT', !$this->GetValue('EVENT')); + $this->SetValue('TOGGLE', !$this->GetValue('TOGGLE')); break; } }