TFA pool thermometer 30.3240.10 #2651
Replies: 4 comments 13 replies
-
Arduino code to decode packets |
Beta Was this translation helpful? Give feedback.
-
It seems you could look at src/devices/tfa* and see if one of them can be adapted to also decode this. (I am assuming the point is to add support to rtl_433!). |
Beta Was this translation helpful? Give feedback.
-
Might match the nexus protocol or prologue. |
Beta Was this translation helpful? Give feedback.
-
How far are we away to decode this one? |
Beta Was this translation helpful? Give feedback.
-
I have started to investigate TFA pool thermometer 30.3240.10.
What i found so far.
The protocol seems to be 36bits payload and repeat 4 times every transmission.
`
SIIIIIIIIXXXX00CCTTTTTTTTTTTT00000000S
I = probably preamble, but can be a ID (someone else need to verify this with another unit)
If the NTC sensor is missing this field changes to S10011100...
XXXX set at startup and seems to be based on selected Channel. (will not change after startup if switching Channel)
CC = Selected Channel
T = 12bit signed integer with scale of 0.1°.
Example Data CH1
S100100000111000011111110110000000000S = -2
S100100000001000000001000101100000000S = 13.9
S100100000001000000001001110100000000S = 15.7
S100100000111000000001110101100000000S = 23.5
Example Data CH1
S100100000111000100001110101100000000S = 23.5
S100100001101000100010000010000000000S = 26.0
The radio protokoll seems to match other TFA 433Mhz sensors.
__ 0 __ 1 __ START/STOP __
_| |_____| |_________| |________________| |_
0: 1500 - 2500 us
1: 3500 - 4500 us
S: 7500 - 9000 us
Beta Was this translation helpful? Give feedback.
All reactions