[Gelöst] Westinghouse Deckenventilator mit 433 MHz Modul steuern

Begonnen von ErzGabriel, 11 Mai 2016, 20:01:40

Vorheriges Thema - Nächstes Thema

nagelreo

Hallo elektron-bbs,

nach dem erfolgreichen "Projekt" für den "TuerGong model GEA-028DB" habe ich mir die Steuerung unseres Deckenventilators CasaFan vorgenommen.

Der Deckenventilator wird über die Fernbedienung RH787T (9 Tasten) gesteuert. Die Fernbedienung wurde mit dem Protokoll P#83 erkannt. Der Ventilator lässt sich nach dem Erhöhen der repeats auf 10 fehlerfrei steuern.
Ein kleines Problem habe ich dennoch. Ich steuere mit dem SIGNALDuino unsere Somfy Rolläden (433.24 Mhz) und den TürGong (433.92 Mhz). Mit der Frequenz 433.60 und Bandwidth 812 Khz werden die Signale aller Somfy Handsender und der Sender vom TürGong erkannt.
Leider ist der Deckenventilator etwas "anspruchsvoller" und funktioniert erst ab 433.70 Mhz. Im Protokoll "ProtoclData.pm" ist als Frequenz "knownFreqs => '433.92'" eingetragen. In Anlehnung an das Somfy Protokoll P#43 habe ich die Zeile durch "frequency         => '10B071550A'" ersetzt. Wie erwartet funktioniert der Ventilator unabhängig von der im CUL eingestellten Frequenz.

Gibt es eine Möglichkeit die Frequenz für das Senden im Device Modul einzustellen (im Forum habe ich dazu leider nichts gefunden) oder muss das über das ProtoclData.pm erfolgen?
Wenn ja, kann das mit dem nächsten update gemacht werden? Bis dahin kann ich ja meine geänderte Version verwenden.

Gruß
Rolf
P.S. der Sender vom TürGong wird ohne Ausreißer erkannt und das Signal über die Fritzbox an die Telefongeräte (nach Wahl) weitergeleitet. Damit sind wir auch im Garten erreichbar.

elektron-bbs

Das gleiche Problem wurde auch gerade in https://forum.fhem.de/index.php/topic,58396.msg1047596.html#msg1047596 behandelt. Vielleicht funktioniert es bei dir mit diesen Einstellungen ja auch.

Das zuverlässigste Verfahren dürfte es sein, einen zweiten SIGNALduino zu verwenden.

Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

Ralf9

Am Besten ist es wahrscheinlich es so wie beim IT - Modul zu machen und dafür ein neues Attribut "UTfrequency" zu nehmen.
Es ist dazu nur eine kleine Anpassung im UT Modul zu machen.

Dazu muss in die
$hash->{AttrList}
dies "UTfrequency" eingefügt werden.

Und die ein wenig angepasste Codezeilen (ungetestet) vom IT-Modul
my $f = AttrVal($name,'UTfrequency',undef);
if (defined($f)) {
$f = $f / 26 * 65536;
my $f2 = sprintf("%02x", $f / 65536);
my $f1 = sprintf("%02x", int($f % 65536) / 256);
my $f0 = sprintf("%02x", $f % 256);
my $arg = sprintf("%.3f", (hex($f2)*65536+hex($f1)*256+hex($f0))/65536*26);
Log3 $hash, 3, "$ioname: SD_UT_Set: Setting UTfrequency (0D,0E,0F) to $f2 $f1 $f0 = $arg MHz";
$msg .="#F$f2$f1$f0";
}


müssen in der sub SD_UT_Set vor der folgenden Zeile eingefügt werden:
$msg .= '#C' . $UTclock if (defined($UTclock));  # optional Clockpulse

Gruß Ralf
FHEM auf Cubietruck mit Igor-Image, SSD und  hmland + HM-CFG-USB-2,  HMUARTLGW Lan,   HM-LC-Bl1PBU-FM, HM-CC-RT-DN, HM-SEC-SC-2, HM-MOD-Re-8, HM-MOD-Em-8
HM-Wired:  HMW_IO_12_FM, HMW_Sen_SC_12_DR, Selbstbau IO-Module HBW_IO_SW
Maple-SIGNALduino, WH3080,  Hideki, Id 7

elektron-bbs

#123
Diese Variante gefällt mir eigentlich auch besser, als die Sendefrequenz fest in der SD_ProtocolData.pm zu verankern.

Ich habe das, so wie du vorschlägst mal zum Test eingebaut. Scheint allerdings nicht zu funktionieren.
Ich setze UTfrequency auf 868.35 und hätte eigentlich erwartet, das das dann vom sduino868 empfangen wird, wird es aber nicht. Es kann natürlich auch sein, das das Antennenfilter so gut ist und diese Frequenz dann nur "schlecht raus lässt".

Im Log (leicht angepasst) sehe ich folgendes:

2020.05.05 21:23:03 3: sduinoIP: SD_UT_Set: Setting UTfrequency (0D,0E,0F) to 21 65 e8 = 868.350 MHz
2020.05.05 21:23:03 3: sduinoIP: Set_sendMsg, sending : SR;R=5;P0=-9500;P1=380;P2=-380;P3=760;P4=-760;D=0141414141232323232341414141414141;F=2165e8;
2020.05.05 21:23:03 3: sduinoIP: TR60C1_0 set light_off_fan_off
2020.05.05 21:23:03 3: sduinoIP: TR60C1_0 SD_UT_Set sendMsg P104#0000111110000000#R5#F2165e8, rawData F80


EDIT:
Nachdem ich zwischen Sender und Empfänger den Abstand verringert habe, funktioniert es doch.
Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

nagelreo

Hallo zusammen,

vielen Dank für die schnelle Rückmeldungen.

ZitatDas gleiche Problem wurde auch gerade in https://forum.fhem.de/index.php/topic,58396.msg1047596.html#msg1047596 behandelt. Vielleicht funktioniert es bei dir mit diesen Einstellungen ja auch.

Das Problem ist leider nicht ganz vergleichbar, da hierbei die beiden Devices mit unterschiedlichen Frequenzen empfangen soll. In meinem Fall soll der Ventilator nur senden. Einen weiteren Signalduino halte ich für nicht ökonomisch/ökologisch und auch nicht für erforderlich.

Den Lösungsansatz von Ralf
ZitatUnd die ein wenig angepasste Codezeilen (ungetestet) vom IT-Modul
kann ich ohne Tests nicht beurteilen und erst in den nächsten Tagen testen.

Unabhängig davon verstehe ich aber nicht, warum im P#83 die Frequenz nicht vergleichbar zum Somfy Rolladen im P#43 definitiv vorgegeben werden kann.
P#83: ist: knownFreqs => '433.92',   neu: frequency => '10B071550A',
P#43 Somfy: ist: frequency => '10AB85550A',

Mit dieser Änderung konnte ich den Ventilator selbst mit der eingestellten Frequenz 430 Mhz steuern.

Gruß
Rolf


elektron-bbs

Zitat von: nagelreo am 05 Mai 2020, 22:24:26
Unabhängig davon verstehe ich aber nicht, warum im P#83 die Frequenz nicht vergleichbar zum Somfy Rolladen im P#43 definitiv vorgegeben werden kann.

Die Variante mit dem Attribut ist flexibler. Das Protokoll ist ja nicht an diese feste Frequenz gebunden.

Ich habe das neue Attribut 'UTfrequency' jetzt in einem neuen Branch eingebaut. Du kannst das mit folgendem Update-Befehl installieren und dann testen:

update all https://raw.githubusercontent.com/RFD-FHEM/RFFHEM/dev-r34_SD_UT-frequ/controls_signalduino.txt
Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

nagelreo

Hallo elektron-bbs,

der support und das update ist ja einfach super.

Das attr funktioniert bei neuer Definition vom Device, aber auch im Nachhinein.
attr Winter_CasaFan UTfrequency 433.92
attr Winter_CasaFan model RH787T


Der Ventilator reagiert nun unabhängig von der im CUL eingestellten Frequenz. Im Log wird auch die Frequenz beim Senden "10B071 = 433.92" angezeigt.
2020.05.06 21:03:23 4: CUL1: Set_sendMsg, sending : SR;R=9;P0=-11725;P1=335;P2=-670;P3=-335;P4=670;D=01343434343421212121213421;F=10b071;
2020.05.06 21:03:23 3: CUL1: Winter_CasaFan set fan_off


Vielen Dank und Gruß
Rolf

elektron-bbs

Hallo Rolf,

mach doch bitte nochmal ein Update auf diesen Branch. Ich habe noch etwas geändert (Dokumentation, Prüfung auf gültige Werte etc.).
Über eine Rückmeldung würde ich mich freuen.
Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

nagelreo

Hallo elektron-bbs,

keine Frage, ich teste die Version. Momentan habe ich aber ein kleines Problem mit meinen Sonnen-Sensor. Ich glaube nicht, dass es an dem update liegt.
Sobald das device wieder funktioniert, teste ich.

Gruß
Rolf

nagelreo

Hallo elektron-bbs,

Zitatmach doch bitte nochmal ein Update auf diesen Branch. Ich habe noch etwas geändert (Dokumentation, Prüfung auf gültige Werte etc.).
Über eine Rückmeldung würde ich mich freuen.

Ich habe die Version mit dem Link vom 5.05. (update all https://raw.githubusercontent.com/RFD-FHEM/RFFHEM/dev-r34_SD_UT-frequ/controls_signalduino.txt) heute getestet. Der Ventilator lässt sich nach wie vor steuern.

Noch eine Frage zur "Prüfung auf gültige Werte". Buchstaben, Sonderzeichen und Zahlen < 1 bzw. >999 werden bei der Eingabe nicht akzeptiert.
Ist der Frequenzbereich 1 - 999 so gewollt (CC1101 ist 315 - 915 Mhz)? Für mich ist das kein Problem und ok.

Nochmals vielen Dank und Gruß
Rolf

elektron-bbs

Naja, ich wollte tatsächlich nur unsinnige Werte abfangen. Ich habe nirgends Angaben gefunden, wie sich der Chip außerhalb der in der Doku angegebenen ISM-Bänder verhält. Ich könnte das natürlich auch noch auf die angegebenen Frequenzen einschränken (300-348 MHz, 387-464 MHz und 779-928 MHz). Das finde ich dann aber doch etwas übertrieben.
Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

nagelreo

Hallo elektron-bbs,

wie erwähnt, ich habe mit den aktuellen Grenzen kein Problem, wollte nur den Hintergrund verstehen.

Gruß
Rolf

monosurr0und

Moin zusammen,

habe mein Server nach dem Update auf Debian 11 neu aufsetzen müssen.
Hat mir ein paar schlaflose Nächte bereitet bis wieder alles lief wie es soll. (Backup/Deb10 war natürlich vorhanden)
Jetzt habe ich noch zwei Probleme, Homebridge und der Westinghouse:

Habe meinen SIGNALduino dummerweise auf 3.5.0 geupdatet und kann nun mit den RAWmsg scheinbar nichts mehr anfangen.
Die V 3.3.1-dev SIGNALduino cc1101 - compiled at Mar 10 2017 22:54:50 wird mir nicht mehr angeboten, zudem lässt avrdude meinen PI4 scheinbar nicht mehr mit WLAN verbinden..

Jetzt habe ich ihn über  SD_UT (Buttons_five E) eingebunden (Wobei die Funke eigentlich 6 Buttons-einen für Dimm hat)


1_fan_low_speed funktioniert, wenn auch nicht beim ersten mal
2_fan_medium_speed will nicht....wenn ich auf der Funke drücke, spuckt er mir     
111011 aus...drücke ich schneller erkennt er auch mal den Befehl
3_fan_high_speed funktioniert hin und wieder, wird von mir aber nicht benutzt


Stehe jetzt wieder komplett am Anfang.  :'(

Ist es möglich den in RFFHEM einzupflegen? (pull request auf git?)

Jemand ne Idee was ich sonst noch machen könnte?

Was bislang funktioniert hat:

Low: raw SR;;;;R=3;;;;P0=250;;;;P1=-492;;;;P2=166;;;;P3=-255;;;;P4=491;;;;P5=-8588;;;;D=052341212121212121212121234523412121212121212121212345234121212121212121212123452341212121212121212121234;;;;CP=0;;;;SP=5;;;;
Med: raw SR;;;;R=3;;;;P0=250;;;;P1=-492;;;;P2=166;;;;P3=-255;;;;P4=491;;;;P5=-8588;;;;D=052121212341212121212121234521212123412121212121212345212121234121212121212123452121212341212121212121234;;;;CP=0;;;;SP=5;;;;
High: raw SR;;;;R=3;;;;P0=250;;;;P1=-492;;;;P2=166;;;;P3=-255;;;;P4=491;;;;P5=-8588;;;;D=052121212123412121212121234521212121234121212121212345212121212341212121212123452121212123412121212121234;;;;CP=0;;;;SP=5;;;;
off: raw SR;;R=3;;P0=250;;P1=-492;;P2=166;;P3=-255;;P4=491;;P5=-8588;;D=052121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234;;CP=0;;SP=5;;


LG

elektron-bbs

Bitte nicht wieder auf eine ältere Firmwareversion wechseln. Es wurden diverse Verbesserungen vorgenommen.
FHEM und SIGNALduino sind hoffentlich auf aktuellem Stand? Wenn nicht, dann bitte Update durchführen.
Den SIGNALduino bitte auf Standardeinstellungen setzen (Befehl dafür: set SIGNALduino raw e)

   version    V 3.5.0 SIGNALduino cc1101 (chip CC1101) - compiled at Jul  8 2022 18:09:56
   versionProtocols 1.46
   versionmodul 3.5.4+20220614


Für die Integration der Fernbedienung benötigen wird etwas Zuarbeit:


  • von jeder Taste 2 bis 3 RAWMSG (SIGNALduino verbose 4)
  • falls die Fernbedienung Kodierschalter hat, von diesen auch RAWMSG
  • genaue Bezeichnung der Fernbedienung (es existieren schon 3 Fernbedienungen von Westinghouse im Modul SD_UT)
  • Bilder der Fernbedienung, wenn möglich auch von der Platine, so das Beschriftung der ICs lesbar ist

Ob du die Sachen hier hoch lädst oder bei Github ist eigentlich egal.
Intel(R) Atom(TM) CPU N270 mit 2 SIGNALduino nanoCC1101 + ESPEasy 2x serial server SIGNALduino nanoCC1101, Raspberry Pi 2 mit 2 CUL Stackable CC1101, Raspberry Pi 3 mit SIGNALduino radino + nano328 + 2 x SIGNAL-ESP CC1101 + 2 x rf_Gateway

monosurr0und

#134
Hey elektron-bbs,

Auf alte Software habe ich auch keine Lust, fhem und der gesamte Unterbau ist aktuell und soll es auch bleiben.

Ich fange bei der Zuarbeit mal mit den Fotos der FB und des Innenlebens an.
Bezeichnung kann ich dir nicht nennen. Vielleicht nennen wir sie "Six_Buttons_dimm" ;)

Grüße

Edit:

Hier der abgefangene Code für Hauscode 0001

Taste 0 (off)

2022.07.26 19:14:11 4: SIGNALduinoONE: Read, msg: MU;P0=1836;P1=-497;P2=189;P3=-275;P4=416;P5=-8062;D=01212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121;CP=2;R=49;O;
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -49.5
2022.07.26 19:14:11 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111110111110, hlen 3
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -49.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -49.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -49.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:11 4: SIGNALduinoONE: Read, msg: MU;P0=196;P1=-497;P2=-266;P3=412;P4=-8054;D=01023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231;CP=0;R=42;O;
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -53
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -53
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -53
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -53
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:11 4: SIGNALduinoONE: Read, msg: MU;P0=177;P1=-502;P3=-273;P4=423;P5=-8070;D=0101010103450101010101034101010101034501010101010341010101010345010101010101010101010103450101010101010101010101034;CP=0;R=45;
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -51.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -51.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(3/4) RSSI = -51.5
2022.07.26 19:14:11 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -51.5
2022.07.26 19:14:11 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:14:11 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Read, msg: MU;P0=22184;P1=-493;P2=193;P3=-253;P4=436;P5=-8052;D=01212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121;CP=2;R=53;O;
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -47.5
2022.07.26 19:14:12 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111110111110, hlen 3
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -47.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -47.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -47.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Read, msg: MU;P0=192;P1=-489;P2=-265;P3=431;P4=-8054;D=01023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231;CP=0;R=49;O;
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -49.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -49.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -49.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -49.5
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Read, msg: MU;P0=203;P1=-488;P2=-261;P3=422;P4=-8047;D=0101010102340101010101023101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=48;
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -50
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(2/4) RSSI = -50
2022.07.26 19:14:12 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(3/4) RSSI = -50
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -50
2022.07.26 19:14:12 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:14:12 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:13 4: SIGNALduinoONE: Read, msg: MU;P0=8960;P1=-480;P2=203;P3=-272;P4=410;P5=-8062;D=01212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121;CP=2;R=48;O;
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -50
2022.07.26 19:14:13 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111110111110, hlen 3
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -50
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -50
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -50
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:13 4: SIGNALduinoONE: Read, msg: MU;P0=192;P1=-494;P2=-265;P3=429;P4=-8051;D=01023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010101;CP=0;R=42;O;
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -53
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -53
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -53
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -53
2022.07.26 19:14:13 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:13 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:14 4: SIGNALduinoONE: Read, msg: MU;P0=19616;P1=-497;P2=193;P3=-272;P4=415;P5=-8063;D=01212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121;CP=2;R=48;O;
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -50
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -50
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -50
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -50
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:14 4: SIGNALduinoONE: Read, msg: MU;P0=188;P1=-493;P2=-272;P3=425;P4=-8056;D=01023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231;CP=0;R=42;O;
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -53
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -53
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -53
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -53
2022.07.26 19:14:14 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Read, msg: MU;P0=190;P1=-499;P2=-265;P3=416;P4=-8065;D=010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=46;
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -51
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -51
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -51
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -51
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Read, msg: MU;P0=15068;P1=-477;P2=203;P3=-273;P4=422;P5=-8065;D=01212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121212345212121212123412121212123452121212121234121212121234521212121212341212121;CP=2;R=45;O;
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -51.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -51.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -51.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -51.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Read, msg: MU;P0=180;P1=-500;P2=-269;P3=424;P4=-8065;D=01023401010101010231010101010234010101010102310101010102340101010101023101010101023401010101010231010101010234010101010102310101010102340101010101010101010101023;CP=0;R=43;
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(1/4) RSSI = -52.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(2/4) RSSI = -52.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(3/4) RSSI = -52.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FBE length 12 dispatch(4/4) RSSI = -52.5
2022.07.26 19:14:15 4: SIGNALduinoONE: Dispatch, P29#FBE, Dropped due to short time or equal msg
2022.07.26 19:14:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate


Taste 1 (low)
2022.07.26 19:16:16 4: SIGNALduinoONE: Read, msg: MU;P0=23744;P1=-259;P2=419;P3=-512;P4=172;P5=-8061;D=01234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343;CP=4;R=43;O;
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: SD_UT protocol 29, bitData 011111111110, hlen 3
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(4/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:16:16 4: SIGNALduinoONE: Read, msg: MU;P0=189;P1=-498;P2=-273;P3=413;P4=-8055;D=01023402310101010101010101010234023101010101010101010102340231010101010101010101023402310101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=43;
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(4/4) RSSI = -52.5
2022.07.26 19:16:16 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:16 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Read, msg: MU;P0=18912;P1=-260;P2=425;P3=-482;P4=200;P5=-8059;D=01234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343;CP=4;R=49;O;
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(4/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Read, msg: MU;P0=190;P1=-495;P2=-273;P3=422;P4=-8058;D=01023402310101010101010101010234023101010101010101010102340231010101010101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=40;
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -54
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -54
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -54
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -54
2022.07.26 19:16:17 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Read, msg: MU;P0=9172;P1=-260;P2=423;P3=-491;P4=193;P5=-8065;D=01234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343434125412343434343434343434341254123434343434343434343412541234343434343434343;CP=4;R=49;O;
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: SD_UT protocol 29, bitData 011111111110, hlen 3
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(4/4) RSSI = -49.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Read, msg: MU;P0=183;P1=-493;P2=-277;P3=422;P4=-8056;D=01023402310101010101010101010234023101010101010101010102340231010101010101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=41;
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(1/4) RSSI = -53.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(2/4) RSSI = -53.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#7FE length 12 dispatch(3/4) RSSI = -53.5
2022.07.26 19:16:17 4: SIGNALduinoONE: Dispatch, P29#7FE, Dropped due to short time or equal msg
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -53.5
2022.07.26 19:16:17 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:16:17 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate


Taste 2 (med)
2022.07.26 19:17:20 4: SIGNALduinoONE: Read, msg: MU;P0=23576;P1=-501;P2=178;P4=-272;P5=425;P6=-8062;D=01212124512121212121212456212121245121212121212124562121212451212121212121245621212124512121212121212456212121245121212121212124562121212451212121212121245621212124512121212121212456212121245121212121212124562121212451212121212121245621212124512121212121;CP=2;R=35;O;
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(1/4) RSSI = -56.5
2022.07.26 19:17:20 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111011111110, hlen 3
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(2/4) RSSI = -56.5
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(3/4) RSSI = -56.5
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(4/4) RSSI = -56.5
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Read, msg: MU;P0=186;P1=-502;P2=-270;P3=413;P4=-8050;D=010234010101010101010101010102340101010101010101010101023;CP=0;R=20;
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(1/4) RSSI = -64
2022.07.26 19:17:20 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(2/4) RSSI = -64
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Read, msg: MU;P0=18284;P1=-493;P2=201;P3=-270;P4=429;P5=-8040;D=01212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121;CP=2;R=40;O;
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(1/4) RSSI = -54
2022.07.26 19:17:20 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111011111110, hlen 3
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(2/4) RSSI = -54
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(3/4) RSSI = -54
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(4/4) RSSI = -54
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Read, msg: MU;P0=192;P1=-494;P2=-271;P3=419;P4=-8052;D=010234010101023101010101010102340101010231010101010101023;CP=0;R=14;
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(1/4) RSSI = -67
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(2/4) RSSI = -67
2022.07.26 19:17:20 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:20 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:17:21 4: SIGNALduinoONE: Read, msg: MU;P0=14948;P1=-503;P2=176;P3=-267;P4=423;P5=-8050;D=01212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121212345212121234121212121212123452121212341212121212121234521212123412121212121;CP=2;R=41;O;
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(1/4) RSSI = -53.5
2022.07.26 19:17:21 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(2/4) RSSI = -53.5
2022.07.26 19:17:21 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(3/4) RSSI = -53.5
2022.07.26 19:17:21 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(4/4) RSSI = -53.5
2022.07.26 19:17:21 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:17:21 4: SIGNALduinoONE: Read, msg: MU;P0=188;P1=-488;P2=-280;P3=410;P4=-8062;D=010234010101023101010101010102340101010101010101010101023;CP=0;R=28;
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#EFE length 12 dispatch(1/4) RSSI = -60
2022.07.26 19:17:21 4: SIGNALduinoONE: Dispatch, P29#EFE, Dropped due to short time or equal msg
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(2/4) RSSI = -60
2022.07.26 19:17:21 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:17:21 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate

jump to the top


Taste 3 (high)

2022.07.26 19:18:14 4: SIGNALduinoONE: Read, msg: MU;P0=10532;P1=-493;P2=197;P3=-247;P4=442;P5=-8037;D=01212121234121212121212345212121212341212121212123452121212123412121212121234521212121234121212121212345212121212341212121212123452121212123412121212121234521212121234121212121212345212121212341212121212123452121212123412121212121234521212121234121212121;CP=2;R=3;O;
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(1/4) RSSI = -72.5
2022.07.26 19:18:14 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111101111110, hlen 3
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(2/4) RSSI = -72.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(3/4) RSSI = -72.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(4/4) RSSI = -72.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Read, msg: MU;P0=230;P1=-461;P2=-232;P3=443;P4=-8587;D=0102340101010102310101010101023401010101023101010101010234;CP=0;R=243;
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(1/4) RSSI = -80.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(2/4) RSSI = -80.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Read, msg: MU;P0=-5148;P1=-446;P2=242;P3=-228;P4=477;P5=-8019;P6=172;D=1212121234121212121212345212121212341212121212123452121212123412121212121234521212121234121212161212345212121212341212121212123452121212123412121212121234521212121234121212121212340;CP=2;R=15;
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(1/4) RSSI = -66.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(2/4) RSSI = -66.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(3/4) RSSI = -66.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(4/4) RSSI = -66.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Read, msg: MU;P0=246;P1=-435;P2=-222;P3=472;P4=-7732;P5=92;P6=-156;P7=328;D=01010101023101010101010234567101010102310101010;CP=0;R=254;
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Read, msg: MU;P0=192;P1=-244;P2=344;P3=-480;P4=258;P5=447;P6=-7630;P7=-2688;D=01234343430153030303030301560303030303030303030303015603030303030303030303030156030303030303030303030301560303030303030303030303015607;CP=0;R=5;
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(1/4) RSSI = -71.5
2022.07.26 19:18:14 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(2/4) RSSI = -71.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(3/4) RSSI = -71.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:18:14 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -71.5
2022.07.26 19:18:14 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Read, msg: MU;P0=17264;P1=-477;P2=202;P4=-252;P5=440;P6=-8046;D=01212121245121212121212456212121212451212121212124562121212124512121212121245621212121245121212121212456212121212451212121212124562121212124512121212121245621212121245121212121212456212121212451212121212124562121212124512121212121245621212121245121212121;CP=2;R=25;O;
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(1/4) RSSI = -61.5
2022.07.26 19:18:15 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111101111110, hlen 3
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(2/4) RSSI = -61.5
2022.07.26 19:18:15 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(3/4) RSSI = -61.5
2022.07.26 19:18:15 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(4/4) RSSI = -61.5
2022.07.26 19:18:15 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:18:15 4: SIGNALduinoONE: Read, msg: MU;P0=194;P1=-494;P2=-259;P3=431;P4=-8050;D=010234010101010231010101010102340101010102310101010101023;CP=0;R=13;
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(1/4) RSSI = -67.5
2022.07.26 19:18:15 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#F7E length 12 dispatch(2/4) RSSI = -67.5
2022.07.26 19:18:15 4: SIGNALduinoONE: Dispatch, P29#F7E, Dropped due to short time or equal msg
2022.07.26 19:18:15 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate


Taste Licht

2022.07.26 19:19:29 4: SIGNALduinoONE: Read, msg: MU;P0=6008;P1=-475;P2=212;P3=-237;P4=454;P5=-8031;D=01234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121;CP=2;R=24;O;
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(1/4) RSSI = -62
2022.07.26 19:19:29 4: SIGNALduinoONE: SD_UT protocol 29, bitData 101111111110, hlen 3
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(2/4) RSSI = -62
2022.07.26 19:19:29 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(3/4) RSSI = -62
2022.07.26 19:19:29 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(4/4) RSSI = -62
2022.07.26 19:19:29 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:19:29 4: SIGNALduinoONE: Read, msg: MU;P0=203;P1=-492;P2=-225;P3=445;P4=-8038;P6=-14400;P7=112;D=01023401023101010101010101010234010231010101010101010102367;CP=0;R=242;
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(1/4) RSSI = -81
2022.07.26 19:19:29 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(2/4) RSSI = -81
2022.07.26 19:19:29 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:29 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:19:31 4: SIGNALduinoONE: Read, msg: MU;P0=26620;P1=-495;P2=191;P3=-254;P4=429;P5=-8055;D=01234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121212345212341212121212121212123452123412121212121212121234521234121212121212121;CP=2;R=10;O;
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(1/4) RSSI = -69
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(2/4) RSSI = -69
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(3/4) RSSI = -69
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(4/4) RSSI = -69
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:19:31 4: SIGNALduinoONE: Read, msg: MU;P0=246;P1=-422;P2=-238;P3=472;P4=-8009;P6=92;P7=-112;D=01023401023101010101010101010234010231010101010101010102340102310101010101010101023401010101010101010101010234010101010101010101010102340101026701010101013;CP=0;R=15;
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(1/4) RSSI = -66.5
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(2/4) RSSI = -66.5
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#BFE length 12 dispatch(3/4) RSSI = -66.5
2022.07.26 19:19:31 4: SIGNALduinoONE: Dispatch, P29#BFE, Dropped due to short time or equal msg
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -66.5
2022.07.26 19:19:31 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:19:31 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate


Taste Dimm

2022.07.26 19:20:26 4: SIGNALduinoONE: Read, msg: MU;P0=3652;P1=-500;P2=178;P3=-260;P4=417;P5=-8052;D=01212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121;CP=2;R=46;O;
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(1/4) RSSI = -51
2022.07.26 19:20:26 4: SIGNALduinoONE: SD_UT protocol 29, bitData 110111111110, hlen 3
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(2/4) RSSI = -51
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(3/4) RSSI = -51
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(4/4) RSSI = -51
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:20:26 4: SIGNALduinoONE: Read, msg: MU;P0=194;P1=-495;P2=-272;P3=407;P4=-8063;D=01023401010231010101010101010234010102310101010101010102340101023101010101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=42;
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(1/4) RSSI = -53
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(2/4) RSSI = -53
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(3/4) RSSI = -53
2022.07.26 19:20:26 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -53
2022.07.26 19:20:26 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:20:26 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Read, msg: MU;P0=24164;P1=-495;P2=191;P3=-271;P4=415;P5=-8052;D=01212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121;CP=2;R=52;O;
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(1/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: SD_UT protocol 29, bitData 110111111110, hlen 3
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(2/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(3/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(4/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Read, msg: MU;P0=193;P1=-495;P2=-271;P3=421;P4=-8061;D=01023401010231010101010101010234010102310101010101010102340101010101010101010101023401010101010101010101010234010101010101010101010102340101010101010101010101023;CP=0;R=46;
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(1/4) RSSI = -51
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(2/4) RSSI = -51
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(3/4) RSSI = -51
2022.07.26 19:20:27 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(4/4) RSSI = -51
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Read, msg: MU;P0=10336;P1=-506;P2=173;P3=-271;P4=419;P5=-8068;D=01212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121212345212123412121212121212123452121234121212121212121234521212341212121212121;CP=2;R=52;O;
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(1/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: SD_UT protocol 29, bitData 110111111110, hlen 3
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(2/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(3/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#DFE length 12 dispatch(4/4) RSSI = -48
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#DFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Read, msg: MU;P0=179;P1=-500;P2=-264;P3=429;P4=-8072;D=010234010101010101010101010102340101010101010101010101023;CP=0;R=34;
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 29 -> HT12e matches, trying to demodulate
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(1/4) RSSI = -57
2022.07.26 19:20:27 4: SIGNALduinoONE: SD_UT protocol 29, bitData 111111111110, hlen 3
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Decoded matched MU protocol id 29 dmsg P29#FFE length 12 dispatch(2/4) RSSI = -57
2022.07.26 19:20:27 4: SIGNALduinoONE: Dispatch, P29#FFE, Dropped due to short time or equal msg
2022.07.26 19:20:27 4: SIGNALduinoONE: Parse_MU, Fingerprint for MU protocol id 104 -> TR60C-1 matches, trying to demodulate