mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
00_SIGNALduino: Fix Bresser Sensor max length was to short (Forum #79929)
git-svn-id: https://svn.fhem.de/fhem/trunk@15470 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
ac573a2c99
commit
6cdba99e90
@ -1,5 +1,7 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- fix: 00_SIGNALduino: Fix Bresser Sensor
|
||||||
|
max length was to short (Forum #79929)
|
||||||
- gugfix: 74_GardenaSmartBridge: change state to connected
|
- gugfix: 74_GardenaSmartBridge: change state to connected
|
||||||
- bugfix: 74_XiaomiFlowerSens: fix change InternalTimer now
|
- bugfix: 74_XiaomiFlowerSens: fix change InternalTimer now
|
||||||
- bugfix: 49_SSCam: V3.2.4, don't retrieve presets during restart if cam is
|
- bugfix: 49_SSCam: V3.2.4, don't retrieve presets during restart if cam is
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
##############################################
|
##############################################
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
# v3.3.1 (stable release 3.3)
|
# v3.3.2 (stable release 3.3)
|
||||||
# The module is inspired by the FHEMduino project and modified in serval ways for processing the incomming messages
|
# The module is inspired by the FHEMduino project and modified in serval ways for processing the incomming messages
|
||||||
# see http://www.fhemwiki.de/wiki/SIGNALDuino
|
# see http://www.fhemwiki.de/wiki/SIGNALDuino
|
||||||
# It was modified also to provide support for raw message handling which can be send from the SIGNALduino
|
# It was modified also to provide support for raw message handling which can be send from the SIGNALduino
|
||||||
@ -838,7 +838,7 @@ my %ProtocolListSIGNALduino = (
|
|||||||
preamble => 'W37#', # prepend to converted message
|
preamble => 'W37#', # prepend to converted message
|
||||||
clientmodule => 'SD_WS',
|
clientmodule => 'SD_WS',
|
||||||
length_min => '40',
|
length_min => '40',
|
||||||
length_max => '40',
|
length_max => '41',
|
||||||
},
|
},
|
||||||
"38" =>
|
"38" =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user