Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
RF Connectivity
#21
the protocol is RFXMeter
RFXCom supports itm you just need to enable,, i think rf10 protocol
there each message has a specific id - which you can configure in the config tool, for each type of data
and the value is multiplied by 100
Reply
#22
Yes I have the protocol enabled and I can see messages like this in RFXmngr:
Code:
Packettype    = RFXMeter
subtype       = RFXMeter counter
Sequence nbr  = 29
ID            = 8676 decimal:34422
Counter       = 96600
if RFXPwr     = 96,6 kWh
Signal level  = 7  -64dBm
In this case RFXmngr has decoded the message I guess (CO² value is 966.00 ppm).

But in my home automation server (FHEM) I get the raw hex messages which looks like this:
0x0a710000867600017ae870

I am looking for information on how to decode that, please. I could not find specifications for protocol "RFXMeter".
Thanks!
Reply
#23
Here is the spec, but i was expecting that RFXCom would provide the data you see parsed = in some way to FHEM.. at least for Domoticz it works this way, you only assign a sensor type to the data you get from RFXCom

Here is the code
https://github.com/vlast3k/vESPrino-firm...t.cpp#L115

And this is the spec

RFXMeter RF data format.

Message length 48 bits (decimal)

Code:
|    Byte 0     |    Byte 1     |    Byte 2     |    Byte 3     |    Byte 4     |    Byte 5     |
7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0
4               4                   3                   2                   1  
7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
< - - - - - - address - - - - > < - - - - - - - - counter value - - - - - - - > < - - > <parity>
                                1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 1 1 1 1    |
                                5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 3 2 1 0 9 8 7 6    packet type


2 bytes address. Byte 2 = byte 1 with the complement of the upper nibble (bit 7-4). This way max 256 metering modules can be used.

Counter value for an RFXPwr module measures with an accuracy of 0.001kWh and thus a value from 0 to 16777.215 kWh.

Packet type:
           0000    normal data packet
           0001    new interval time set.
                       Byte 2 0x01    30 seconds
                                  0x02    1 minute
                                  0x04    6 minutes   (RFXPower = 5 minutes)
                                  0x08    12 minutes (RFXPower = 10 minutes)
                                  0x10    15 minutes
                                  0x20    30 minutes
                                  0x40    45 minutes
                                  0x80    60 minutes
0010    calibrate value in <counter value> in µsec.
0011    new address set
0100    counter value reset to zero
1011    counter value set
1100    set interval mode within 5 seconds
1101    calibration mode within 5 seconds
1110    set address mode within 5 seconds
1111    identification packet
                       Byte 2 = firmware version
                                  0x00 – 0x3F = RFXPower
                                  0x40 – 0x7F = RFU
                                  0x80 – 0xBF = RFU
                                  0xC0 – 0xFF = RFXMeter
                       Byte 3 = interval time (see packet type 0001)

4 bits parity. This is the complement of:
byte 0 bit 7-4 + byte 0 bit 3-0  +   byte 1 bit 7-4 + byte 1 bit 3-0
+ byte 2 bit 7-4 + byte 2 bit 3-0  +   byte 3 bit 7-4 + byte 3 bit 3-0
+ byte 4 bit 7-4 + byte 4 bit 3-0  +   byte 5 bit 7-4
Reply
#24
(02-26-2017, 12:05 PM)admin Wrote: Here is the spec, but i was expecting that RFXCom would provide the data you see parsed = in some way to FHEM.. at least for Domoticz it works this way, you only assign a sensor type to the data you get from RFXCom

I guess the RFXMeter protocol is supported in Domoticz already then. In FHEM it is not (at least not for the RfxTrx433). Thanks, I will look into that!
Reply
#25
ahhh Sad yeah - now when i was looking at some posts in google, this seems to be the case.
Reply
#26
I am onto implementing that for FHEM.
One thing I noticed and could not understand. Usually the periodic data message for the CO2 sensor looks like this (there is some sort of envelope from the RFX, so the message length is 10 bytes instead of the raw 6 byte message you are sending):

0a  7100 b2 8676 00 01c070 69
                     
sensor ID (0x86 -> 134)
3 byte value


So these are regular data messages with the default sensor ID of 134.





But when booting the device I always get a message like this but only once:

0a 7100 9a 42b2 00 0003e8 69



So a message from a sensor ID 0x42 with a value of exactly 1000 (0x3e8). Its always 1000.

Could you please explain what this is?
Reply
#27
great Smile you've decoded them all

this first message is a test message sent once during boot, i used it to quickly test if the devices are fine

let's hope now also the issue with the jamming will turn to be a hardware one
Reply
#28
(02-28-2017, 03:37 AM)admin Wrote: this first message is a test message sent once during boot, i used it to quickly test if the devices are fine

I have the normal messages now working reliably in FHEM, thats fine Smile

But it seems I was wrong about the other message type: In fact it is not only sent once on bootup but it is sent regularly (even quite often):

Code:
2017.03.02 21:33:47.588 5: TRX: TRX_Read '0a7100cf42b2000003e879'
2017.03.02 21:34:51.335 5: TRX: TRX_Read '0a7100d342b2000003e879'
2017.03.02 21:35:25.768 5: TRX: TRX_Read '0a7100d842b2000003e879'
2017.03.02 21:35:57.643 5: TRX: TRX_Read '0a7100dc42b2000003e879'
2017.03.02 21:37:01.430 5: TRX: TRX_Read '0a7100e042b2000003e879'
2017.03.02 21:37:35.843 5: TRX: TRX_Read '0a7100e542b2000003e879'
2017.03.02 21:38:07.718 5: TRX: TRX_Read '0a7100e842b2000003e879'
2017.03.02 21:38:39.593 5: TRX: TRX_Read '0a7100eb42b2000003e879'
2017.03.02 21:39:11.501 5: TRX: TRX_Read '0a7100ee42b2000003e879'
2017.03.02 21:39:45.918 5: TRX: TRX_Read '0a7100f342b2000003e879'
2017.03.02 21:40:17.809 5: TRX: TRX_Read '0a7100f742b2000003e879'
2017.03.02 21:41:21.559 5: TRX: TRX_Read '0a7100fc42b2000003e879'
2017.03.02 21:41:56.008 5: TRX: TRX_Read '0a71000042b2000003e879'
2017.03.02 21:42:27.852 5: TRX: TRX_Read '0a71000442b2000003e879'
2017.03.02 21:42:59.730 5: TRX: TRX_Read '0a71000742b2000003e879'
2017.03.02 21:43:31.618 5: TRX: TRX_Read '0a71000b42b2000003e879'
2017.03.02 21:44:06.051 5: TRX: TRX_Read '0a71001042b2000003e879'
2017.03.02 21:44:38.038 5: TRX: TRX_Read '0a71001242b2000003e879'
2017.03.02 21:45:10.041 5: TRX: TRX_Read '0a71001542b2000003e879'
2017.03.02 21:45:41.932 5: TRX: TRX_Read '0a71001942b2000003e879'
2017.03.02 21:46:16.349 5: TRX: TRX_Read '0a71001e42b2000003e879'
2017.03.02 21:46:48.224 5: TRX: TRX_Read '0a71002342b2000003e879'
2017.03.02 21:47:20.083 5: TRX: TRX_Read '0a71002542b2000003e879'
2017.03.02 21:47:51.990 5: TRX: TRX_Read '0a71002842b2000003e879'
2017.03.02 21:48:26.423 5: TRX: TRX_Read '0a71002d42b2000003e879'
2017.03.02 21:48:58.298 5: TRX: TRX_Read '0a71003142b2000003e879'
2017.03.02 21:49:30.178 5: TRX: TRX_Read '0a71003442b2'
2017.03.02 21:49:30.192 5: TRX: TRX_Read '0a71003442b2000003e879'
2017.03.02 21:50:02.065 5: TRX: TRX_Read '0a71003742b2000003e879'
2017.03.02 21:50:36.497 5: TRX: TRX_Read '0a71003c42b2000003e879'
2017.03.02 21:51:08.388 5: TRX: TRX_Read '0a71003f42b2000003e879'
2017.03.02 21:51:40.311 5: TRX: TRX_Read '0a71004242b2000003e879'
2017.03.02 21:52:46.651 5: TRX: TRX_Read '0a71004842b2000003e879'
2017.03.02 21:53:18.510 5: TRX: TRX_Read '0a71004c42b2000003e879'
2017.03.02 21:53:50.369 5: TRX: TRX_Read '0a71004f42b2000003e879'
2017.03.02 21:54:22.292 5: TRX: TRX_Read '0a71005242b2000003e879'
2017.03.02 21:54:55.864 5: TRX: TRX_Read '0a71005642b2'
2017.03.02 21:54:55.878 5: TRX: TRX_Read '0a71005642b2000003e879'
2017.03.02 21:55:27.737 5: TRX: TRX_Read '0a71005a42b2000003e879'
2017.03.02 21:55:59.611 5: TRX: TRX_Read '0a71005d42b2000003e879'
2017.03.02 21:56:31.534 5: TRX: TRX_Read '0a71006142b2000003e879'
2017.03.02 21:57:05.966 5: TRX: TRX_Read '0a71006642b2000003e879'
2017.03.02 21:57:37.841 5: TRX: TRX_Read '0a71006842b2000003e879'
2017.03.02 21:58:09.730 5: TRX: TRX_Read '0a71006c42b2000003e879'
2017.03.02 21:58:41.635 5: TRX: TRX_Read '0a71006f42b2000003e879'
2017.03.02 21:59:16.065 5: TRX: TRX_Read '0a71007442b2000003e879'
2017.03.02 21:59:47.939 5: TRX: TRX_Read '0a71007842b2000003e879'
2017.03.02 22:00:19.959 5: TRX: TRX_Read '0a71007a42b2000003e879'
2017.03.02 22:00:51.973 5: TRX: TRX_Read '0a71007c42b2000003e879'
2017.03.02 22:01:26.387 5: TRX: TRX_Read '0a71008142b2000003e879'
2017.03.02 22:01:58.262 5: TRX: TRX_Read '0a71008542b2000003e879'
2017.03.02 22:02:30.121 5: TRX: TRX_Read '0a71008742b2000003e879'
2017.03.02 22:03:02.029 5: TRX: TRX_Read '0a71008942b2000003e879'
2017.03.02 22:03:36.461 5: TRX: TRX_Read '0a71008e42b2000003e879'
2017.03.02 22:04:08.353 5: TRX: TRX_Read '0a71009142b2000003e879'
2017.03.02 22:04:40.228 5: TRX: TRX_Read '0a71009542b2000003e879'
2017.03.02 22:05:12.135 5: TRX: TRX_Read '0a71009842b2000003e879'
2017.03.02 22:05:46.572 5: TRX: TRX_Read '0a71009b42b2000003e879'
2017.03.02 22:06:18.432 5: TRX: TRX_Read '0a71009f42b2000003e879'
2017.03.02 22:06:50.303 5: TRX: TRX_Read '0a7100a342b2000003e879'
2017.03.02 22:07:22.226 5: TRX: TRX_Read '0a7100a542b2000003e879'
2017.03.02 22:07:55.785 5: TRX: TRX_Read '0a7100aa42b200'
2017.03.02 22:07:55.800 5: TRX: TRX_Read '0a7100aa42b2000003e879'
2017.03.02 22:08:27.655 5: TRX: TRX_Read '0a7100ad42b2000003e879'
2017.03.02 22:08:59.546 5: TRX: TRX_Read '0a7100b142b2000003e879'
2017.03.02 22:09:31.453 5: TRX: TRX_Read '0a7100b442b2000003e879'
2017.03.02 22:10:05.885 5: TRX: TRX_Read '0a7100b942b2000003e879'
2017.03.02 22:10:37.759 5: TRX: TRX_Read '0a7100bb42b2000003e879'
2017.03.02 22:11:09.638 5: TRX: TRX_Read '0a7100bf42b2000003e879'
2017.03.02 22:11:41.540 5: TRX: TRX_Read '0a7100c242b2000003e879'
2017.03.02 22:12:15.972 5: TRX: TRX_Read '0a7100c742b2000003e879'
2017.03.02 22:12:47.862 5: TRX: TRX_Read '0a7100cb42b2000003e879'
2017.03.02 22:13:51.657 5: TRX: TRX_Read '0a7100cf42b2000003e879'
2017.03.02 22:14:26.090 5: TRX: TRX_Read '0a7100d442b2000003e879'
2017.03.02 22:14:57.965 5: TRX: TRX_Read '0a7100d842b2000003e879'
2017.03.02 22:15:29.837 5: TRX: TRX_Read '0a7100dc42b2000003e879'
2017.03.02 22:16:01.857 5: TRX: TRX_Read '0a7100de42b2000003e879'
2017.03.02 22:16:36.450 5: TRX: TRX_Read '0a7100e242b2000003e8'
2017.03.02 22:16:36.470 5: TRX: TRX_Read '0a7100e242b2000003e879'
2017.03.02 22:17:08.327 5: TRX: TRX_Read '0a7100e542b2000003e879'
2017.03.02 22:17:40.186 5: TRX: TRX_Read '0a7100e942b20000'
2017.03.02 22:17:40.206 5: TRX: TRX_Read '0a7100e942b2000003e879'
2017.03.02 22:18:12.078 5: TRX: TRX_Read '0a7100eb42b2000003e879'
2017.03.02 22:18:46.528 5: TRX: TRX_Read '0a7100ef42b2000003e879'
2017.03.02 22:19:18.387 5: TRX: TRX_Read '0a7100f342b2000003e879'
2017.03.02 22:19:50.282 5: TRX: TRX_Read '0a7100f742b2000003e879'
2017.03.02 22:20:55.740 5: TRX: TRX_Read '0a7100fd42b2000003e879'
2017.03.02 22:21:27.632 5: TRX: TRX_Read '0a71000042b2000003'
2017.03.02 22:21:27.650 5: TRX: TRX_Read '0a71000042b2000003e879'
2017.03.02 22:21:59.523 5: TRX: TRX_Read '0a71000442b2000003e879'
2017.03.02 22:23:05.848 5: TRX: TRX_Read '0a71000c42b2000003e879'
2017.03.02 22:23:37.712 5: TRX: TRX_Read '0a71000e42b200'
2017.03.02 22:23:37.727 5: TRX: TRX_Read '0a71000e42b2000003e879'
2017.03.02 22:24:09.587 5: TRX: TRX_Read '0a71001242b2000003e879'
2017.03.02 22:24:41.490 5: TRX: TRX_Read '0a71001642b2000003e879'
2017.03.02 22:25:15.939 5: TRX: TRX_Read '0a71001a42b2000003e879'
2017.03.02 22:25:47.815 5: TRX: TRX_Read '0a71001e42b2000003e879'
2017.03.02 22:26:51.598 5: TRX: TRX_Read '0a71002342b2000003e879'
2017.03.02 22:27:26.799 5: TRX: TRX_Read '0a71002742b2000003e879'
2017.03.02 22:27:58.659 5: TRX: TRX_Read '0a71002b42b2000003e879'
2017.03.02 22:28:30.550 5: TRX: TRX_Read '0a71002f42b2000003e879'
2017.03.02 22:29:02.457 5: TRX: TRX_Read '0a71003242b2000003e879'
2017.03.02 22:29:36.875 5: TRX: TRX_Read '0a71003642b2000003e879'
2017.03.02 22:30:08.751 5: TRX: TRX_Read '0a71003942b2000003e879'
2017.03.02 22:30:40.626 5: TRX: TRX_Read '0a71003c42b2000003e879'
2017.03.02 22:31:12.518 5: TRX: TRX_Read '0a71004042b2000003e879'
2017.03.02 22:31:47.095 5: TRX: TRX_Read '0a71004342b2000003e879'
2017.03.02 22:32:19.098 5: TRX: TRX_Read '0a71004542b2000003e879'
2017.03.02 22:32:50.990 5: TRX: TRX_Read '0a71004842b2000003e879'
2017.03.02 22:33:22.884 5: TRX: TRX_Read '0a71004b42b2000003e879'
2017.03.02 22:33:57.602 5: TRX: TRX_Read '0a71004e42b2000003e879'
2017.03.02 22:34:29.478 5: TRX: TRX_Read '0a71005142b2000003e879'
2017.03.02 22:35:01.369 5: TRX: TRX_Read '0a71005542b2000003e879'
2017.03.02 22:35:33.261 5: TRX: TRX_Read '0a71005942b2000003e879'
2017.03.02 22:36:07.694 5: TRX: TRX_Read '0a71005d42b2000003e879'
2017.03.02 22:36:39.570 5: TRX: TRX_Read '0a71006042b2000003e879'
2017.03.02 22:37:11.446 5: TRX: TRX_Read '0a71006342b2000003e879'
2017.03.02 22:37:43.322 5: TRX: TRX_Read '0a71006742b20000'
2017.03.02 22:37:43.341 5: TRX: TRX_Read '0a71006742b2000003e879'
2017.03.02 22:38:17.755 5: TRX: TRX_Read '0a71006c42b2000003e879'
2017.03.02 22:38:49.630 5: TRX: TRX_Read '0a71006e42b2000003e879'
2017.03.02 22:39:53.398 5: TRX: TRX_Read '0a71007342b2000003e879'
2017.03.02 22:40:27.835 5: TRX: TRX_Read '0a71007742b2000003e879'
2017.03.02 22:40:59.691 5: TRX: TRX_Read '0a71007a42b2000003e879'
2017.03.02 22:41:31.570 5: TRX: TRX_Read '0a71007e42b200'
2017.03.02 22:41:31.586 5: TRX: TRX_Read '0a71007e42b2000003e879'
2017.03.02 22:42:03.474 5: TRX: TRX_Read '0a71008142b2000003e879'
2017.03.02 22:42:37.939 5: TRX: TRX_Read '0a71008642b2000003e879'
2017.03.02 22:43:09.799 5: TRX: TRX_Read '0a71008842b2000003'
2017.03.02 22:43:09.820 5: TRX: TRX_Read '0a71008842b2000003e879'
2017.03.02 22:43:41.691 5: TRX: TRX_Read '0a71008c42b2000003e879'
2017.03.02 22:44:13.598 5: TRX: TRX_Read '0a71009042b2000003e879'
2017.03.02 22:44:48.032 5: TRX: TRX_Read '0a71009442b2000003e879'
2017.03.02 22:45:19.924 5: TRX: TRX_Read '0a71009742b2000003e879'
2017.03.02 22:45:51.799 5: TRX: TRX_Read '0a71009b42b2000003e879'
2017.03.02 22:46:23.707 5: TRX: TRX_Read '0a71009e42b2000003e879'
2017.03.02 22:46:58.157 5: TRX: TRX_Read '0a7100a342b2000003e879'
2017.03.02 22:47:30.165 5: TRX: TRX_Read '0a7100a542b200'
2017.03.02 22:47:30.180 5: TRX: TRX_Read '0a7100a542b2000003e879'
2017.03.02 22:48:02.180 5: TRX: TRX_Read '0a7100a942b2000003e879'
2017.03.02 22:48:34.072 5: TRX: TRX_Read '0a7100ad42b2000003e879'
2017.03.02 22:49:08.489 5: TRX: TRX_Read '0a7100b242b2000003e879'
2017.03.02 22:49:40.366 5: TRX: TRX_Read '0a7100b442b2000003e879'
2017.03.02 22:50:12.241 5: TRX: TRX_Read '0a7100b742b2000003e879'
2017.03.02 22:50:44.148 5: TRX: TRX_Read '0a7100bb42b2000003e879'
2017.03.02 22:51:18.582 5: TRX: TRX_Read '0a7100c042b2000003e879'
2017.03.02 22:51:50.473 5: TRX: TRX_Read '0a7100c342b2000003e879'
2017.03.02 22:52:22.365 5: TRX: TRX_Read '0a7100c842b20000'
2017.03.02 22:52:22.385 5: TRX: TRX_Read '0a7100c842b2000003e879'
2017.03.02 22:52:54.305 5: TRX: TRX_Read '0a7100ca42b2000003e879'
2017.03.02 22:53:28.722 5: TRX: TRX_Read '0a7100cf42b20000'
2017.03.02 22:53:28.741 5: TRX: TRX_Read '0a7100cf42b2000003e879'
2017.03.02 22:54:00.598 5: TRX: TRX_Read '0a7100d242b2000003e879'
2017.03.02 22:54:32.474 5: TRX: TRX_Read '0a7100d642b2000003e879'
2017.03.02 22:55:38.799 5: TRX: TRX_Read '0a7100dd42b2000003e879'
2017.03.02 22:56:10.675 5: TRX: TRX_Read '0a7100e042b2000003e879'
2017.03.02 22:56:42.555 5: TRX: TRX_Read '0a7100e442b2000003e879'
2017.03.02 22:57:14.442 5: TRX: TRX_Read '0a7100e842b2000003e879'
2017.03.02 22:57:48.892 5: TRX: TRX_Read '0a7100ed42b2000003e879'
2017.03.02 22:58:20.752 5: TRX: TRX_Read '0a7100ef42b2000003e879'
2017.03.02 22:58:52.627 5: TRX: TRX_Read '0a7100f342b2000003e879'
2017.03.02 22:59:24.535 5: TRX: TRX_Read '0a7100f642b2000003e879'
2017.03.02 22:59:59.304 5: TRX: TRX_Read '0a7100fb42b2000003'
2017.03.02 22:59:59.324 5: TRX: TRX_Read '0a7100fb42b2000003e879'
2017.03.02 23:00:31.179 5: TRX: TRX_Read '0a7100fe42b2000003e879'
2017.03.02 23:01:03.055 5: TRX: TRX_Read '0a71000142b2000003e879'
2017.03.02 23:01:34.963 5: TRX: TRX_Read '0a71000342b2000003e879'
2017.03.02 23:02:09.396 5: TRX: TRX_Read '0a71000842b2000003e879'
2017.03.02 23:02:41.274 5: TRX: TRX_Read '0a71000b42b2000003e879'
2017.03.02 23:03:13.276 5: TRX: TRX_Read '0a71000d42b2000003e879'
2017.03.02 23:03:45.295 5: TRX: TRX_Read '0a71001142b2000003'
2017.03.02 23:03:45.314 5: TRX: TRX_Read '0a71001142b2000003e879'
2017.03.02 23:04:19.728 5: TRX: TRX_Read '0a71001642b2000003e879'
2017.03.02 23:04:51.588 5: TRX: TRX_Read '0a71001a42b2000003e879'
2017.03.02 23:05:23.448 5: TRX: TRX_Read '0a71001c42b2000003e879'
2017.03.02 23:05:55.339 5: TRX: TRX_Read '0a71001e42b2000003e879'
2017.03.02 23:06:29.769 5: TRX: TRX_Read '0a71002342b2000003e879'
2017.03.02 23:07:01.644 5: TRX: TRX_Read '0a71002742b2000003e879'
2017.03.02 23:07:33.519 5: TRX: TRX_Read '0a71002a42b2000003e879'
2017.03.02 23:08:05.396 5: TRX: TRX_Read '0a71002e42b2000003e879'
2017.03.02 23:08:39.847 5: TRX: TRX_Read '0a71003242b2000003e879'
2017.03.02 23:09:11.725 5: TRX: TRX_Read '0a71003542b2'
2017.03.02 23:09:11.740 5: TRX: TRX_Read '0a71003542b2000003e879'
2017.03.02 23:09:43.616 5: TRX: TRX_Read '0a71003842b2000003e879'
2017.03.02 23:10:15.508 5: TRX: TRX_Read '0a71003c42b200'
2017.03.02 23:10:15.523 5: TRX: TRX_Read '0a71003c42b2000003e879'
2017.03.02 23:10:49.953 5: TRX: TRX_Read '0a71004142b2000003e879'
2017.03.02 23:11:21.845 5: TRX: TRX_Read '0a71004442b2000003e879'
2017.03.02 23:11:53.721 5: TRX: TRX_Read '0a71004742b2000003e879'
2017.03.02 23:12:25.644 5: TRX: TRX_Read '0a71004a42b2000003e879'
2017.03.02 23:13:00.061 5: TRX: TRX_Read '0a71004e42b2000003e879'
2017.03.02 23:13:31.921 5: TRX: TRX_Read '0a71005242b2000003e879'
2017.03.02 23:14:03.830 5: TRX: TRX_Read '0a71005442b2000003e879'
2017.03.02 23:14:35.721 5: TRX: TRX_Read '0a71005842b2000003e879'
2017.03.02 23:15:10.154 5: TRX: TRX_Read '0a71005d42b2000003e879'
2017.03.02 23:15:42.045 5: TRX: TRX_Read '0a71005f42b2000003e879'
2017.03.02 23:16:13.920 5: TRX: TRX_Read '0a71006142b2000003e879'
2017.03.02 23:16:45.828 5: TRX: TRX_Read '0a71006542b2000003e879'
2017.03.02 23:17:20.262 5: TRX: TRX_Read '0a71006942b2000003e879'
2017.03.02 23:17:52.138 5: TRX: TRX_Read '0a71006d42b2000003e879'
2017.03.02 23:18:24.014 5: TRX: TRX_Read '0a71007042b2000003e879'


Would it be possible to turn this message off in the sensor if it is not needed in regular operation? Thank you!
Reply
#29
aaahhh, indeed - this will happen in the case when the device goes to sleep, as after each sleep cycle it reboots and then goes through sending this
yeah.. i can fix it
Reply
#30
(03-02-2017, 10:25 PM)vbs Wrote: I have the normal messages now working reliably in FHEM, thats fine Smile

But it seems I was wrong about the other message type: In fact it is not only sent once on bootup but it is sent regularly (even quite often):


Can you tell something more about the Fhem integration? I have a 433Mhz Cul and want to do the same thing you did. I am new to Fhem but already looked at quite a lot things and integrated some Intertechno(Pollin) outlets and a lot of Max! Heating thermostats. But I am totally new to integrating custom RF devices, which are not regulary supported by Fhem, despite I am really eager to learn it, because there are quite a few devices I could use this for. 

For example I also have cheap 433Mhz Lightswitches from Aliexpress throughout my apartement and want to get Fhem to recognize those, too. The current solution with a cheap RF Receiver and an RCSwitch based Python RFSniffer is quite unreliable, when I am using an emitter at the same time. Seems they are booth using the WiringPi library and that there are some cross complications(At least thats what I found on the internet till now)

What I already know is how to record the raw pulses using an RTL-SDR and some basic knowledge about setting the CUL to a verbose mode 5 and that there are some codes to get the CUL sending raw messages to Fhem.

What I dont know is how I am able to react on those or how I can write a script to process the data. Do I have to leave the Raw message state and verbose 5 or am I able to write a custom module, so that in the end fhem supports the device more natively? Because the I dont really want all the messages this generates in regular running mode.


Would be very glad about at least some hints in the right direction, for getting this to work Smile
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)