[gelöst] FS20-Befehle werden teilweise wiederholt gesendet

Begonnen von dadoc, 21 November 2014, 12:36:59

Vorheriges Thema - Nächstes Thema

dadoc

Hallo zusammen,
ich habe das Problem, dass einige FS20-Befehle ohne (für mich erkennbaren) Grund doppelt ausgesandt werden.

Zum Beispiel folgendes notify:
define show_off_FB notify Kino_sala_FS20_FB_Stop {\
  fhem("set Funktionsgruppe_Rolllaeden_WZ off");;\
  fhem("set projektor_ir off");;\
  fhem("set Leinwand on");;\
  fhem("set Balustrade_unten off");;\
  fhem("set Balustrade_oben off");;\
  fhem("set Pflanzen off");;\
  fhem("set Treppe off");;\
  fhem("set projektor_ir off");;\
  }



das ausgelöst wird über:
define Kino_sala_FS20_FB_Stop FS20 12121212 3221
attr Kino_sala_FS20_FB_Stop IODev CUL_0
attr Kino_sala_FS20_FB_Stop
attr Kino_sala_FS20_FB_Stop dummy 1
attr Kino_sala_FS20_FB_Stop eventMap on:on off:off
attr Kino_sala_FS20_FB_Stop room TV,Favourites


Wenn ich dann "FS20 Kino_sala_FS20_FB_Stop on" im Web-Interface auslöse, sieht in der Logfile alles korrekt aus:
2014.11.21 12:23:14 3: FS20 set Kino_sala_FS20_FB_Stop on
2014.11.21 12:23:14 3: FS20 set Funktionsgruppe_Rolllaeden_WZ off
2014.11.21 12:23:16 3: n_projektor_off return value: -1
2014.11.21 12:23:16 3: FS20 set Leinwand on
2014.11.21 12:23:16 3: FS20 set Balustrade_unten off
2014.11.21 12:23:16 3: FS20 set Balustrade_oben off
2014.11.21 12:23:16 3: FS20 set Pflanzen off
2014.11.21 12:23:16 3: FS20 set Treppe off
2014.11.21 12:23:17 3: n_projektor_off return value: -1


In den Events sieht man dagegen die doppelten Befehle, und auch die Chronologie erscheint seltsam:
Events:
2014-11-21 12:23:15 FS20 Funktionsgruppe_Rolllaeden_WZ off
2014-11-21 12:23:16 dummy projektor_ir off
2014-11-21 12:23:16 FS20 Leinwand on
2014-11-21 12:23:16 FS20 Balustrade_unten off
2014-11-21 12:23:16 FS20 Balustrade_oben off
2014-11-21 12:23:16 FS20 Pflanzen off
2014-11-21 12:23:16 FS20 Treppe off
2014-11-21 12:23:17 dummy projektor_ir off
2014-11-21 12:23:17 FS20 Kino_sala_FS20_FB_Stop on
2014-11-21 12:23:17 FS20 Funktionsgruppe_Rolllaeden_WZ off
2014-11-21 12:23:19 FS20 Treppe off


Das geschieht auch, wenn ich das über eine FS20-Fernbedienung auslöse - und führt natürlich dazu, dass die Leinwand bzw. die Rolläden mitten in der Fahrt stehen bleiben.
CUL-Config ist:
define fbaha FBAHA localhost:2002
define eventTypes eventTypes ./log/eventTypes.txt
define CUL_0 CUL /dev/ttyACM0@9600 1034


Hat jemand eine Ahnung, was da falsch laufen könnte? Habe ich evtl. einen Fehler im notify oder muss man Pausen einbauen? Ich habe gesehen, dass es 2012 wohl mal einen solchen Bug in fhem gab, der aber schnell behoben wurde.
Grüße
Martin
Standort 1: FS20 mit CUL und FHEM auf Raspi. HM-Komponenten (Heizung, Rollladen, Schalter). HM IP über Raspimatic (testweise)
Standort 2: Homematic (Wired) über CCU2 und PocketHome HD
3 x Raspi3 mit piCorePlayer/Kodi für Multiroom Audio (+ Tablets/iPeng/iPods

rudolfkoenig

Vermutlich existieren weitere notifies, die die erwaehnten Events ausloesen.
Am besten erhoeht man das globale loglevel, um zu verstehen, was in welcher Reihenfolge durchgefuehrt wird.

dadoc

Danke für die Antwort. Weitere notfies, die diese Events auslösen könnten, gibt es nicht (zumindest keine manuell angelegten).
Bei verbose = 5 sieht das so aus:
Log: 2014.11.21 13:00:43 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem?cmd.Kino_sala_FS20_FB_Stop=set%20Kino_sala_FS20_FB_Stop%20on&room=TV
2014.11.21 13:00:43 5: Cmd: >set Kino_sala_FS20_FB_Stop on<
2014.11.21 13:00:43 3: FS20 set Kino_sala_FS20_FB_Stop on
2014.11.21 13:00:43 5: Triggering Kino_sala_FS20_FB_Stop (1 changes)
2014.11.21 13:00:43 5: Notify loop for Kino_sala_FS20_FB_Stop on
2014.11.21 13:00:43 4: eventTypes: FS20 Kino_sala_FS20_FB_Stop on -> on
2014.11.21 13:00:43 4: eventTypes: FS20 Kino_sala_FS20_FB_Stop state: on -> state: on
2014.11.21 13:00:43 5: Triggering show_off_FB
2014.11.21 13:00:44 4: show_off_FB exec {
  fhem("set Funktionsgruppe_Rolllaeden_WZ off");;
  fhem("set projektor_ir off");;
  fhem("set Leinwand on");;
  fhem("set Balustrade_unten off");;
  fhem("set Balustrade_oben off");;
  fhem("set Pflanzen off");;
  fhem("set Treppe off");;
  fhem("set projektor_ir off");;
  }
2014.11.21 13:00:44 5: Cmd: >{
  fhem("set Funktionsgruppe_Rolllaeden_WZ off");
  fhem("set projektor_ir off");
  fhem("set Leinwand on");
  fhem("set Balustrade_unten off");
  fhem("set Balustrade_oben off");
  fhem("set Pflanzen off");
  fhem("set Treppe off");
  fhem("set projektor_ir off");
  }<
2014.11.21 13:00:44 5: Cmd: >set Funktionsgruppe_Rolllaeden_WZ off<
2014.11.21 13:00:44 3: FS20 set Funktionsgruppe_Rolllaeden_WZ off
2014.11.21 13:00:44 5: CUL_0 sending F1c11f300
2014.11.21 13:00:44 5: SW: F1c11f300
2014.11.21 13:00:44 5: Triggering Funktionsgruppe_Rolllaeden_WZ (1 changes)
2014.11.21 13:00:44 5: Notify loop for Funktionsgruppe_Rolllaeden_WZ off
2014.11.21 13:00:44 4: eventTypes: FS20 Funktionsgruppe_Rolllaeden_WZ off -> off
2014.11.21 13:00:44 4: eventTypes: FS20 Funktionsgruppe_Rolllaeden_WZ state: off -> state: off
2014.11.21 13:00:44 5: Cmd: >set projektor_ir off<
2014.11.21 13:00:44 4: dummy set projektor_ir off
2014.11.21 13:00:44 5: Triggering projektor_ir (1 changes)
2014.11.21 13:00:44 5: Notify loop for projektor_ir off
2014.11.21 13:00:44 4: eventTypes: dummy projektor_ir off -> off
2014.11.21 13:00:44 4: eventTypes: dummy projektor_ir state: off -> state: off
2014.11.21 13:00:44 5: Triggering n_projektor_off
2014.11.21 13:00:44 4: n_projektor_off exec {
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_POWER");;
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_OK");;
}
2014.11.21 13:00:44 5: Cmd: >{
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_POWER");
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_OK");
}<
2014.11.21 13:00:45 3: n_projektor_off return value: -1
2014.11.21 13:00:45 5: Cmd: >set Leinwand on<
2014.11.21 13:00:45 3: FS20 set Leinwand on
2014.11.21 13:00:45 5: CUL_0 sending F1c115b11
2014.11.21 13:00:45 5: Triggering Leinwand (1 changes)
2014.11.21 13:00:45 5: Notify loop for Leinwand on
2014.11.21 13:00:45 4: eventTypes: FS20 Leinwand on -> on
2014.11.21 13:00:45 4: eventTypes: FS20 Leinwand state: on -> state: on
2014.11.21 13:00:45 5: Cmd: >set Balustrade_unten off<
2014.11.21 13:00:45 3: FS20 set Balustrade_unten off
2014.11.21 13:00:45 5: CUL_0 sending F1c11d500
2014.11.21 13:00:45 5: Triggering Balustrade_unten (1 changes)
2014.11.21 13:00:45 5: Notify loop for Balustrade_unten off
2014.11.21 13:00:45 4: eventTypes: FS20 Balustrade_unten off -> off
2014.11.21 13:00:45 4: eventTypes: FS20 Balustrade_unten state: off -> state: off
2014.11.21 13:00:45 5: Cmd: >set Balustrade_oben off<
2014.11.21 13:00:45 3: FS20 set Balustrade_oben off
2014.11.21 13:00:45 5: CUL_0 sending F1c11e100
2014.11.21 13:00:45 5: Triggering Balustrade_oben (1 changes)
2014.11.21 13:00:45 5: Notify loop for Balustrade_oben off
2014.11.21 13:00:45 4: eventTypes: FS20 Balustrade_oben off -> off
2014.11.21 13:00:45 4: eventTypes: FS20 Balustrade_oben state: off -> state: off
2014.11.21 13:00:45 5: Cmd: >set Pflanzen off<
2014.11.21 13:00:45 3: FS20 set Pflanzen off
2014.11.21 13:00:45 5: CUL_0 sending F1c11d400
2014.11.21 13:00:45 5: Triggering Pflanzen (1 changes)
2014.11.21 13:00:45 5: Notify loop for Pflanzen off
2014.11.21 13:00:45 4: eventTypes: FS20 Pflanzen off -> off
2014.11.21 13:00:45 4: eventTypes: FS20 Pflanzen state: off -> state: off
2014.11.21 13:00:45 5: Cmd: >set Treppe off<
2014.11.21 13:00:45 3: FS20 set Treppe off
2014.11.21 13:00:45 5: CUL_0 sending F1c11d600
2014.11.21 13:00:45 5: Triggering Treppe (1 changes)
2014.11.21 13:00:45 5: Notify loop for Treppe off
2014.11.21 13:00:45 4: eventTypes: FS20 Treppe off -> off
2014.11.21 13:00:45 4: eventTypes: FS20 Treppe state: off -> state: off
2014.11.21 13:00:45 5: Cmd: >set projektor_ir off<
2014.11.21 13:00:45 4: dummy set projektor_ir off
2014.11.21 13:00:45 5: Triggering projektor_ir (1 changes)
2014.11.21 13:00:45 5: Notify loop for projektor_ir off
2014.11.21 13:00:45 4: eventTypes: dummy projektor_ir off -> off
2014.11.21 13:00:45 4: eventTypes: dummy projektor_ir state: off -> state: off
2014.11.21 13:00:45 5: Triggering n_projektor_off
2014.11.21 13:00:45 4: n_projektor_off exec {
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_POWER");;
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_OK");;
}
2014.11.21 13:00:45 5: Cmd: >{
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_POWER");
system ("sudo /usr/bin/irsend -d /dev/lircd SEND_ONCE projektor KEY_OK");
}<
2014.11.21 13:00:46 3: n_projektor_off return value: -1
2014.11.21 13:00:46 5: SW: F1c115b11
2014.11.21 13:00:46 5: CUL/RAW: /F1C11F30026

2014.11.21 13:00:46 4: CUL_Parse: CUL_0 F1C11F30026 -55
2014.11.21 13:00:46 5: CUL_0 dispatch 810b04xx0101a0011c11f30000
2014.11.21 13:00:46 4: FS20 Funktionsgruppe_Rolllaeden_WZ off
2014.11.21 13:00:46 5: Triggering Funktionsgruppe_Rolllaeden_WZ (1 changes)
2014.11.21 13:00:46 5: Notify loop for Funktionsgruppe_Rolllaeden_WZ off
2014.11.21 13:00:46 4: eventTypes: FS20 Funktionsgruppe_Rolllaeden_WZ off -> off
2014.11.21 13:00:46 4: eventTypes: FS20 Funktionsgruppe_Rolllaeden_WZ state: off -> state: off
2014.11.21 13:00:46 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem?room=TV
2014.11.21 13:00:46 5: ENIGMA2 kathi1: called function ENIGMA2_Set()
2014.11.21 13:00:46 4: /fhem?room=TV / RL:4383 / text/html; charset=UTF-8 / Content-Encoding: gzip
/
2014.11.21 13:00:46 5: SW: F1c11d500
2014.11.21 13:00:46 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/images/default/big_leinwand_down.png
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/images/default/big_projektor_power_off.png
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51363
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/images/default/icoEverything.png
2014.11.21 13:00:47 5: SW: F1c11e100
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/images/default/denon_power.png
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/images/default/big_denon_power_off.png
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51367
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51368
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/images/default/FS20.on.png
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/images/default/toggle.png
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51369
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/images/default/closeG.png
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/images/default/IMG_1867.JPG
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51372
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_up
2014.11.21 13:00:47 4: Connection accepted from FHEMWEB:192.168.50.201:51373
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/images/default/kino_off.png
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_blank
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/big_volume_down
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/big_volume_up
2014.11.21 13:00:47 5: SW: F1c11d400
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/big_rec
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/big_pause
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_power
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/big_1
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_2
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/big_3
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/big_left
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/big_ok
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/big_right
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_rewind
2014.11.21 13:00:47 5: SW: F1c11d600
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/big_play
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_forward
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/big_stop
2014.11.21 13:00:47 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/big_4
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/big_5
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/big_6
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_exit
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/big_down
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_mute
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/big_menu
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/big_info
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/big_guide
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/big_text
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_7
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/big_8
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_9
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/big_red
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/big_green
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/big_yellow
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/big_blue
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/big_channel_up
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/big_0
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/big_channel_down
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/pr_power
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/pr_blank
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/icons/remotecontrol/pr_1
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/icons/remotecontrol/pr_2
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem/icons/remotecontrol/pr_3
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51372 GET /fhem/icons/remotecontrol/pr_4
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51368 GET /fhem/icons/remotecontrol/pr_5
2014.11.21 13:00:48 5: CUL/RAW: /F1C11D60026

2014.11.21 13:00:48 4: CUL_Parse: CUL_0 F1C11D60026 -55
2014.11.21 13:00:48 5: CUL_0 dispatch 810b04xx0101a0011c11d60000
2014.11.21 13:00:48 4: FS20 Treppe off
2014.11.21 13:00:48 5: Triggering Treppe (1 changes)
2014.11.21 13:00:48 5: Notify loop for Treppe off
2014.11.21 13:00:48 4: eventTypes: FS20 Treppe off -> off
2014.11.21 13:00:48 4: eventTypes: FS20 Treppe state: off -> state: off
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51367 GET /fhem/icons/remotecontrol/pr_6
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51373 GET /fhem/icons/remotecontrol/pr_menu
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51369 GET /fhem/images/default/big_kathi_power_off.png
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51363 GET /fhem/images/default/Shutdown.png
2014.11.21 13:00:48 4: HTTP FHEMWEB:192.168.50.201:51361 GET /fhem?XHR=1&inform=type=status;filter=room=TV×tamp=1416571259383
2014.11.21 13:00:48 5: ENIGMA2 kathi1: called function ENIGMA2_Set()
2014.11.21 13:00:48 5: CUL/RAW: /T2B4400A60015


Events:
2014-11-21 13:00:44 FS20 Funktionsgruppe_Rolllaeden_WZ off
2014-11-21 13:00:45 dummy projektor_ir off
2014-11-21 13:00:45 FS20 Leinwand on
2014-11-21 13:00:45 FS20 Balustrade_unten off
2014-11-21 13:00:45 FS20 Balustrade_oben off
2014-11-21 13:00:45 FS20 Pflanzen off
2014-11-21 13:00:45 FS20 Treppe off
2014-11-21 13:00:46 dummy projektor_ir off
2014-11-21 13:00:46 FS20 Kino_sala_FS20_FB_Stop on
2014-11-21 13:00:46 FS20 Funktionsgruppe_Rolllaeden_WZ off
2014-11-21 13:00:48 FS20 Treppe off

Ich kann nicht behaupten, dass ich aus dem Log schlau werde - da scheinen sich nach dem Abarbeiten der Befehle noch einmal die betreffenden notify loops zu wiederholen?
Grüße
Martin
Standort 1: FS20 mit CUL und FHEM auf Raspi. HM-Komponenten (Heizung, Rollladen, Schalter). HM IP über Raspimatic (testweise)
Standort 2: Homematic (Wired) über CCU2 und PocketHome HD
3 x Raspi3 mit piCorePlayer/Kodi für Multiroom Audio (+ Tablets/iPeng/iPods

rudolfkoenig

Soweit ich sehe, wird  F1c11f300 fuer "Funktionsgruppe_Rolllaeden_WZ off" um 13:00:44 gesendet, und um 13:00:46 empfangen. Das Gleiche fuer "Treppe off". Vermutlich gibts irgendwo einen Hardware-Repeater.

dadoc

Vielen Dank - Volltreffer! Da fristete tatsächlich ein halb vergessener FS20-Repeater sein Dasein in einer dunklen Ecke. Wobei ich zugeben muss, dass ich selbst dann, wenn ich ihn noch auf dem Radar gehabt hätte, nicht wusste, dass er mit CUL/fhem Probleme machen könnte.
Grüße
Martin
Standort 1: FS20 mit CUL und FHEM auf Raspi. HM-Komponenten (Heizung, Rollladen, Schalter). HM IP über Raspimatic (testweise)
Standort 2: Homematic (Wired) über CCU2 und PocketHome HD
3 x Raspi3 mit piCorePlayer/Kodi für Multiroom Audio (+ Tablets/iPeng/iPods