You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Retekess pagers get more and more popular. You can buy a controller with 10 pagers for around 100€ (https://retekess.eu/shop/pager-system/retekess-td158-pager/).
The controller can have a unit ID from 0-999, the pagers can have device ID from 0-999, too.
When i use the original controller,I receive messages like
20;10;Eurodomest;ID=0977eb;SWITCH=05;CMD=ALLON;
But when I try to send a command, the pager does not respond. In detail I tried:
10;Eurodomest;0977eb;05;ALLON;
-> 20;23;CMD UNKNOWN;
10;Eurodomest;0977eb;0;5;ALLON;
-> 20;24;OK;
10;Eurodomest;0977eb;5;ALLON;
-> 20;26;OK;
My conclusion is that either the decoding is not working properly, and the protocol might even be a different one, or the coding of the transmission.
Can anybody help?
The text was updated successfully, but these errors were encountered:
It turned out to be a static code that Flipper Zero identifies as "SMC5326 25bit".
The timing is identical to Eurodomest, but one bit more, and the coding is 10bits for housecode, 10bits for unitcode (pager) and 5 bits for command.
I have implemented a plugin for decoding and sending commands (plugin20.c).
If somebody is interessted, I can share.
The Retekess pagers get more and more popular. You can buy a controller with 10 pagers for around 100€ (https://retekess.eu/shop/pager-system/retekess-td158-pager/).
The controller can have a unit ID from 0-999, the pagers can have device ID from 0-999, too.
When i use the original controller,I receive messages like
20;10;Eurodomest;ID=0977eb;SWITCH=05;CMD=ALLON;
But when I try to send a command, the pager does not respond. In detail I tried:
10;Eurodomest;0977eb;05;ALLON;
-> 20;23;CMD UNKNOWN;
10;Eurodomest;0977eb;0;5;ALLON;
-> 20;24;OK;
10;Eurodomest;0977eb;5;ALLON;
-> 20;26;OK;
My conclusion is that either the decoding is not working properly, and the protocol might even be a different one, or the coding of the transmission.
Can anybody help?
The text was updated successfully, but these errors were encountered: