From f6bab5ccc11f428b456621727ffb1622817cde71 Mon Sep 17 00:00:00 2001 From: sidey79 Date: Sat, 4 Jul 2026 19:42:43 +0200 Subject: [PATCH 01/11] feat: update devcontainer setup and improve README documentation - Bump base image version in Dockerfile - Add SVN support and related tasks in tasks.json - Refactor devcontainer.json to include multiple compose files - Enhance link_recursive.sh for better directory handling - Remove obsolete docker-compose.devcontainer.yml - Update README.md with detailed devcontainer usage instructions - Add .devcontainer/devcontainer.local.json to .gitignore --- CHANGED | 39 ++++++++++++++++++++ FHEM/00_SIGNALduino.pm | 4 +- lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm | 4 ++ lib/FHEM/Devices/SIGNALduino/SD_Clients.pm | 2 +- lib/FHEM/Devices/SIGNALduino/SD_IO.pm | 4 ++ lib/FHEM/Devices/SIGNALduino/SD_Logger.pm | 2 +- lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm | 2 +- lib/FHEM/Devices/SIGNALduino/SD_Message.pm | 2 +- lib/FHEM/Devices/SIGNALduino/SD_Utils.pm | 4 ++ 9 files changed, 57 insertions(+), 6 deletions(-) diff --git a/CHANGED b/CHANGED index 6ffc84714..8f3cfffdf 100644 --- a/CHANGED +++ b/CHANGED @@ -1,3 +1,42 @@ +2026-07-04 - Release 4.0.0 + +Release 4.0.0 since version 3.5.6 + + 00_SIGNALduino.pm + change: module version set to 4.0.0 + change: SIGNALduino internals moved into separate Perl packages + change: dispatch, clients, matchlist, message handling, IO, logger, CC1101 and utility code refactored + feature: WMBus dispatch support extended + feature: STM32 Maple Mini rfmode WMBus enabled + bugfix: Clients attribute handling restored for configured non-default values + bugfix: SIGNALduino_FW_Detail handles missing or existing FileLog devices more robustly + + 14_SD_WS.pm + feature: protocol 136 for EMOS E06016 wind, temperature and humidity sensor with DCF77 + feature: protocol 135 for TFA Dostmann 30.3255.02 temperature sensor + feature: protocol 131 for BRESSER lightning detector + feature: protocol 117 for BRESSER PM2.5/10 air quality meter + feature: SD_WS_48 TFA JOKER temperature transmitter 30.3212 + feature: DCF decoding for WH31E/DNT000005 + bugfix: Bresser 7-in-1 batteryState + bugfix: Bresser lightning counter overflow + bugfix: SD_WS sanity checks + bugfix: WH2/WH2A protocol 64 checksum, statistics model and reconstructBit handling + bugfix: Digest::CRC checks and META data corrected + + 14_SD_UT.pm + feature: new remote controls RCnoName20_15, Lumention_RFSETCCT, RCnoName130, SEAV BeEasy TX, CREATE 6601L, RCnoName20_09, HA-HX2 and CREATE 6601TL + feature: HAMULiGHT LED transformer support via protocol 22 + bugfix: CREATE 6601L identity handling + + 10_FS10.pm + bugfix: SetExtensions handling corrected + + Tests and build + change: tests adapted to the package restructure + feature: added and extended tests for dispatch, define handling, logger, matchlist, keepalive, SimpleWrite, SD_WS and SD_UT behavior + change: GitHub Actions and release automation updated + 2026-03-29 - little fix meta in 00_SIGNALduino.pm (#1365) * little fix in META (SD_UTILS -> SD_Utils) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index 3ba09cdbf..b78d7df83 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.1+20260306', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.0', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, @@ -4796,7 +4796,7 @@ USB-connected devices (SIGNALduino):
"web": "https://wiki.fhem.de/wiki/SIGNALduino" } }, - "version": "v4.0.1" + "version": "v4.0.0" } =end :application/json;q=META.json =cut diff --git a/lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm b/lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm index 5b042ade2..929b99b48 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm @@ -1,3 +1,7 @@ +# $Id: SD_CC1101.pm 0 2026-01-10 15:36:13Z sidey79 $ +# The file is part of the SIGNALduino project. +# Client functions for SIGNALduino device. + package FHEM::Devices::SIGNALduino::SD_CC1101; use strict; diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Clients.pm b/lib/FHEM/Devices/SIGNALduino/SD_Clients.pm index 3ae145ef9..08ad53032 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Clients.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Clients.pm @@ -1,4 +1,4 @@ -# $Id: Clients.pm 0 2026-01-10 15:36:13Z sidey79 $ +# $Id: SD_Clients.pm 0 2026-01-10 15:36:13Z sidey79 $ # The file is part of the SIGNALduino project. # Client functions for SIGNALduino device. diff --git a/lib/FHEM/Devices/SIGNALduino/SD_IO.pm b/lib/FHEM/Devices/SIGNALduino/SD_IO.pm index c62380ec9..a9892c7cb 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_IO.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_IO.pm @@ -1,3 +1,7 @@ +# $Id: SD_IO.pm 0 2026-01-10 15:36:13Z sidey79 $ +# The file is part of the SIGNALduino project. +# Client functions for SIGNALduino device. + package FHEM::Devices::SIGNALduino::SD_IO; use strict; diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Logger.pm b/lib/FHEM/Devices/SIGNALduino/SD_Logger.pm index c88338735..baf99867c 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Logger.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Logger.pm @@ -1,4 +1,4 @@ -# $Id: Logger.pm 0 2026-01-10 15:36:13Z sidey79 $ +# $Id: SD_Logger.pm 0 2026-01-10 15:36:13Z sidey79 $ # The file is part of the SIGNALduino project. # Logging helper functions for Packages in FHEM::Devices::SD. diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm b/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm index f680b8336..98616fe57 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm @@ -1,4 +1,4 @@ -# $Id: Logger.pm 0 2026-01-10 15:36:13Z sidey79 $ +# $Id: SD_Logger.pm 0 2026-01-10 15:36:13Z sidey79 $ # The file is part of the SIGNALduino project. # Matchlist functions for Signalduino device. diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Message.pm b/lib/FHEM/Devices/SIGNALduino/SD_Message.pm index 6fce64898..8ce7b6a7f 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Message.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Message.pm @@ -1,4 +1,4 @@ -# $Id: Message.pm 0 2026-01-10 15:36:13Z sidey79 $ +# $Id: SD_Message.pm 0 2026-01-10 15:36:13Z sidey79 $ # The file is part of the SIGNALduino project. # Message functions for SIGNALduino device messages. diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Utils.pm b/lib/FHEM/Devices/SIGNALduino/SD_Utils.pm index d707feedd..34f1602cb 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Utils.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Utils.pm @@ -1,3 +1,7 @@ +# $Id: SD_Utils.pm 0 2026-01-10 15:36:13Z sidey79 $ +# The file is part of the SIGNALduino project. +# Client functions for SIGNALduino device. + package FHEM::Devices::SIGNALduino::SD_Utils; use strict; From 505c66b13174f6fa6828c12abe99486545060c1e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 17:43:22 +0000 Subject: [PATCH 02/11] Automatic updated controls and CHANGED --- controls_signalduino.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/controls_signalduino.txt b/controls_signalduino.txt index 6aa8a28d3..bbc2d6397 100644 --- a/controls_signalduino.txt +++ b/controls_signalduino.txt @@ -1,4 +1,4 @@ -UPD 2026-03-29_12:32:27 212018 FHEM/00_SIGNALduino.pm +UPD 2026-07-04_19:42:43 212009 FHEM/00_SIGNALduino.pm UPD 2026-02-13_17:40:49 20101 FHEM/10_FS10.pm UPD 2024-01-03_23:05:39 27250 FHEM/10_SD_GT.pm UPD 2023-01-01_18:10:40 25403 FHEM/10_SD_Rojaflex.pm @@ -13,12 +13,12 @@ UPD 2023-01-23_21:06:26 38569 FHEM/14_SD_WS09.pm UPD 2023-01-09_19:54:48 16458 FHEM/14_SD_WS_Maverick.pm UPD 2023-01-28_20:08:00 40378 FHEM/41_OREGON.pm UPD 2026-02-18_22:40:33 15626 FHEM/90_SIGNALduino_un.pm -UPD 2026-02-18_20:27:30 12000 lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm -UPD 2026-01-16_10:54:58 1821 lib/FHEM/Devices/SIGNALduino/SD_Clients.pm -UPD 2026-03-06_17:44:50 12886 lib/FHEM/Devices/SIGNALduino/SD_IO.pm -UPD 2026-01-16_10:54:58 1364 lib/FHEM/Devices/SIGNALduino/SD_Logger.pm -UPD 2026-01-16_10:54:58 4868 lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm -UPD 2026-01-16_10:54:58 6330 lib/FHEM/Devices/SIGNALduino/SD_Message.pm +UPD 2026-07-04_19:42:43 12144 lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm +UPD 2026-07-04_19:42:43 1824 lib/FHEM/Devices/SIGNALduino/SD_Clients.pm +UPD 2026-07-04_19:42:43 13026 lib/FHEM/Devices/SIGNALduino/SD_IO.pm +UPD 2026-07-04_19:42:43 1367 lib/FHEM/Devices/SIGNALduino/SD_Logger.pm +UPD 2026-07-04_19:42:43 4871 lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm +UPD 2026-07-04_19:42:43 6333 lib/FHEM/Devices/SIGNALduino/SD_Message.pm UPD 2026-02-18_23:27:27 83387 lib/FHEM/Devices/SIGNALduino/SD_Protocols.pm -UPD 2026-02-18_20:27:30 3972 lib/FHEM/Devices/SIGNALduino/SD_Utils.pm +UPD 2026-07-04_19:42:43 4115 lib/FHEM/Devices/SIGNALduino/SD_Utils.pm UPD 2026-02-24_10:54:17 259898 lib/FHEM/Devices/SIGNALduino/SD_Protocols/Data.pm From 128f9e47f589b39dbff6caa1b7dd5f2f26a0d869 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 17:44:45 +0000 Subject: [PATCH 03/11] Update Versiondate --- FHEM/00_SIGNALduino.pm | 4 ++-- controls_signalduino.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index b78d7df83..349bb8392 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -1,4 +1,4 @@ -# $Id: 00_SIGNALduino.pm 0 2026-03-06 20:36:18Z sidey79 $ +# $Id: 00_SIGNALduino.pm 0 2026-07-04 17:44:16Z sidey79 $ # https://github.com/RFD-FHEM/RFFHEM/tree/master # The module is inspired by the FHEMduino project and modified in serval ways for processing the incoming messages # see http://www.fhemwiki.de/wiki/SIGNALDuino @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.0', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.0+20260704', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, diff --git a/controls_signalduino.txt b/controls_signalduino.txt index bbc2d6397..bce4848ba 100644 --- a/controls_signalduino.txt +++ b/controls_signalduino.txt @@ -1,4 +1,4 @@ -UPD 2026-07-04_19:42:43 212009 FHEM/00_SIGNALduino.pm +UPD 2026-07-04_19:42:43 212018 FHEM/00_SIGNALduino.pm UPD 2026-02-13_17:40:49 20101 FHEM/10_FS10.pm UPD 2024-01-03_23:05:39 27250 FHEM/10_SD_GT.pm UPD 2023-01-01_18:10:40 25403 FHEM/10_SD_Rojaflex.pm From 355040865e31d85b1b5342154afbb2a5921cb4dd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 21:36:09 +0000 Subject: [PATCH 04/11] Automatic updated controls and CHANGED --- controls_signalduino.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls_signalduino.txt b/controls_signalduino.txt index bce4848ba..9ef07b10c 100644 --- a/controls_signalduino.txt +++ b/controls_signalduino.txt @@ -1,4 +1,4 @@ -UPD 2026-07-04_19:42:43 212018 FHEM/00_SIGNALduino.pm +UPD 2026-07-04_17:44:45 212018 FHEM/00_SIGNALduino.pm UPD 2026-02-13_17:40:49 20101 FHEM/10_FS10.pm UPD 2024-01-03_23:05:39 27250 FHEM/10_SD_GT.pm UPD 2023-01-01_18:10:40 25403 FHEM/10_SD_Rojaflex.pm From ea2c4d01552abbe0fedc03640dbd27241dd58a47 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 21:37:23 +0000 Subject: [PATCH 05/11] Update Versiondate --- FHEM/00_SIGNALduino.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index 349bb8392..6745ed602 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -1,4 +1,4 @@ -# $Id: 00_SIGNALduino.pm 0 2026-07-04 17:44:16Z sidey79 $ +# $Id: 00_SIGNALduino.pm 0 2026-07-04 21:36:53Z sidey79 $ # https://github.com/RFD-FHEM/RFFHEM/tree/master # The module is inspired by the FHEMduino project and modified in serval ways for processing the incoming messages # see http://www.fhemwiki.de/wiki/SIGNALDuino From c370aca55e13688d29291a15c3afcc08b53d687f Mon Sep 17 00:00:00 2001 From: sidey79 Date: Sat, 4 Jul 2026 23:46:14 +0200 Subject: [PATCH 06/11] Release 4.0.1 --- CHANGED | 6 +++--- FHEM/00_SIGNALduino.pm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGED b/CHANGED index 8f3cfffdf..ee7249b29 100644 --- a/CHANGED +++ b/CHANGED @@ -1,9 +1,9 @@ -2026-07-04 - Release 4.0.0 +2026-07-04 - Release 4.0.1 -Release 4.0.0 since version 3.5.6 +Release 4.0.1 since version 3.5.6 00_SIGNALduino.pm - change: module version set to 4.0.0 + change: module version set to 4.0.1 change: SIGNALduino internals moved into separate Perl packages change: dispatch, clients, matchlist, message handling, IO, logger, CC1101 and utility code refactored feature: WMBus dispatch support extended diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index 6745ed602..b7f60ac8c 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.0+20260704', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.1', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, @@ -4796,7 +4796,7 @@ USB-connected devices (SIGNALduino):
"web": "https://wiki.fhem.de/wiki/SIGNALduino" } }, - "version": "v4.0.0" + "version": "v4.0.1" } =end :application/json;q=META.json =cut From 72ce549a2aabe38dc609160bd1debd8a4dca294a Mon Sep 17 00:00:00 2001 From: sidey79 Date: Sat, 4 Jul 2026 23:46:37 +0200 Subject: [PATCH 07/11] Korrigiere die ID-Referenz in der SD_Matchlist.pm-Datei --- lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm b/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm index 98616fe57..1a7cc00a8 100644 --- a/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm +++ b/lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm @@ -1,4 +1,4 @@ -# $Id: SD_Logger.pm 0 2026-01-10 15:36:13Z sidey79 $ +# $Id: SD_Matchlist.pm 0 2026-01-10 15:36:13Z sidey79 $ # The file is part of the SIGNALduino project. # Matchlist functions for Signalduino device. From 12b8142259972693a0d088cee0b864fd4e5131be Mon Sep 17 00:00:00 2001 From: sidey79 Date: Sat, 4 Jul 2026 23:47:36 +0200 Subject: [PATCH 08/11] Update release version references to 4.0.1 --- FHEM/00_SIGNALduino.pm | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index b7f60ac8c..e1bfc9268 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -15,7 +15,7 @@ use strict; use warnings; use Storable qw(dclone); use FHEM::Core::Utils::Math; -#use version 0.77; our $VERSION = version->declare('v4.0.0'); +#use version 0.77; our $VERSION = version->declare('v4.0.1'); my $missingModulSIGNALduino = ' '; diff --git a/README.md b/README.md index 9a67f387f..fb5cb10c0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -SIGNALduino - FHEM Modules Version 4.0.0 +SIGNALduino - FHEM Modules Version 4.0.1 Base Branch: From a90754973c7424491bc66ef4a96737b377b6a88a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 21:49:01 +0000 Subject: [PATCH 09/11] Update Versiondate --- FHEM/00_SIGNALduino.pm | 4 ++-- controls_signalduino.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index e1bfc9268..98be5e248 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -1,4 +1,4 @@ -# $Id: 00_SIGNALduino.pm 0 2026-07-04 21:36:53Z sidey79 $ +# $Id: 00_SIGNALduino.pm 0 2026-07-04 21:48:29Z sidey79 $ # https://github.com/RFD-FHEM/RFFHEM/tree/master # The module is inspired by the FHEMduino project and modified in serval ways for processing the incoming messages # see http://www.fhemwiki.de/wiki/SIGNALDuino @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.1', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.1+20260704', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, diff --git a/controls_signalduino.txt b/controls_signalduino.txt index 9ef07b10c..cdda9b285 100644 --- a/controls_signalduino.txt +++ b/controls_signalduino.txt @@ -1,4 +1,4 @@ -UPD 2026-07-04_17:44:45 212018 FHEM/00_SIGNALduino.pm +UPD 2026-07-04_23:47:36 212018 FHEM/00_SIGNALduino.pm UPD 2026-02-13_17:40:49 20101 FHEM/10_FS10.pm UPD 2024-01-03_23:05:39 27250 FHEM/10_SD_GT.pm UPD 2023-01-01_18:10:40 25403 FHEM/10_SD_Rojaflex.pm @@ -17,7 +17,7 @@ UPD 2026-07-04_19:42:43 12144 lib/FHEM/Devices/SIGNALduino/SD_CC1101.pm UPD 2026-07-04_19:42:43 1824 lib/FHEM/Devices/SIGNALduino/SD_Clients.pm UPD 2026-07-04_19:42:43 13026 lib/FHEM/Devices/SIGNALduino/SD_IO.pm UPD 2026-07-04_19:42:43 1367 lib/FHEM/Devices/SIGNALduino/SD_Logger.pm -UPD 2026-07-04_19:42:43 4871 lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm +UPD 2026-07-04_23:46:37 4874 lib/FHEM/Devices/SIGNALduino/SD_Matchlist.pm UPD 2026-07-04_19:42:43 6333 lib/FHEM/Devices/SIGNALduino/SD_Message.pm UPD 2026-02-18_23:27:27 83387 lib/FHEM/Devices/SIGNALduino/SD_Protocols.pm UPD 2026-07-04_19:42:43 4115 lib/FHEM/Devices/SIGNALduino/SD_Utils.pm From 7bb814342613b6cbbde0406de49f028b6dcd2583 Mon Sep 17 00:00:00 2001 From: sidey79 Date: Sat, 4 Jul 2026 23:57:35 +0200 Subject: [PATCH 10/11] Aktualisiere die SDUINO_VERSION auf 4.0.1 --- FHEM/00_SIGNALduino.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index 98be5e248..7a63ee3c9 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.1+20260704', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.1', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, From e07f76af037d27195ff8297866acb9be7c5fb73c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 4 Jul 2026 21:58:28 +0000 Subject: [PATCH 11/11] Update Versiondate --- FHEM/00_SIGNALduino.pm | 4 ++-- controls_signalduino.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FHEM/00_SIGNALduino.pm b/FHEM/00_SIGNALduino.pm index 7a63ee3c9..b1470f6ec 100644 --- a/FHEM/00_SIGNALduino.pm +++ b/FHEM/00_SIGNALduino.pm @@ -1,4 +1,4 @@ -# $Id: 00_SIGNALduino.pm 0 2026-07-04 21:48:29Z sidey79 $ +# $Id: 00_SIGNALduino.pm 0 2026-07-04 21:57:54Z sidey79 $ # https://github.com/RFD-FHEM/RFFHEM/tree/master # The module is inspired by the FHEMduino project and modified in serval ways for processing the incoming messages # see http://www.fhemwiki.de/wiki/SIGNALDuino @@ -27,7 +27,7 @@ no warnings 'portable'; eval {use Data::Dumper qw(Dumper);1}; use constant { - SDUINO_VERSION => '4.0.1', # Datum wird automatisch bei jedem pull request aktualisiert + SDUINO_VERSION => '4.0.1+20260704', # Datum wird automatisch bei jedem pull request aktualisiert SDUINO_INIT_WAIT_XQ => 1.5, # wait disable device SDUINO_INIT_WAIT => 2, SDUINO_INIT_MAXRETRY => 3, diff --git a/controls_signalduino.txt b/controls_signalduino.txt index cdda9b285..9dcb07254 100644 --- a/controls_signalduino.txt +++ b/controls_signalduino.txt @@ -1,4 +1,4 @@ -UPD 2026-07-04_23:47:36 212018 FHEM/00_SIGNALduino.pm +UPD 2026-07-04_23:57:35 212018 FHEM/00_SIGNALduino.pm UPD 2026-02-13_17:40:49 20101 FHEM/10_FS10.pm UPD 2024-01-03_23:05:39 27250 FHEM/10_SD_GT.pm UPD 2023-01-01_18:10:40 25403 FHEM/10_SD_Rojaflex.pm