-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for wireless freezer refrigerator thermometer model "WA150KM" #3136
Comments
Samples look great, it's OOK, a warmup of ~10x 490 µs pulse / 2932 µs gap, then three packets with a 2980 µs packet gap of 24x preamble 490 / 490 µs, then 490 µs Manchester code. I.e. Use this collected PCM data
And paste it in a BitBench with decoding set to Manchester. |
There is a nibble sum, then another checksum byte and a fixe 0xa6 value at the end. |
Wow, you literally decoded this in half an hour! Thanks so much! |
@janiwe I took a stab at a flex decoder in case this helps you gather data. There's no direct flex support for the LSB BCD values in this signal, but I put in a brief lookup table to get a few integer values.
|
Hi, I was able to collect some more samples and identified a few more fields in the data: Some observations:
Best |
Hello everyone,
I recently got a 433MHz freezer/refrigerator thermometer from Amazon branded as "ORIA" with model name "WA150KM" and tried to read it with rtl_433. Unfortunately it's an unknown device still.
The transmitter is labeled with FCC ID "2AZUG-WA144" which has some FCC data, but nothing regarding the encoding.
I captured samples and tabled the temperature readings on the headunit, but I'm struggling with the analysis.
I analyzed the samples with rtl_433 -A sample.cu8 and it came up with a rather consistent flex decoder config
-X 'n=name,m=OOK_PWM,s=488,l=976,r=3948,g=0,t=0,y=304'
, which I modified to-X 'n=WA144,m=OOK_PWM,s=488,l=976,r=8000,g=0,t=0,y=304'
to keep the preamble in the message payload, but I'm unable to read anything out of the codes. I'm not even sure if the flex decoder config is right - still a newbie regarding this stuff unfortunately.Capture log (HW: Nooelec RTL-SDR v5 SDR without antenna, receiver about 5cm away):
WA144_Samples.zip
Sample_Values.csv
Can anyone give me a hint on how to proceed here?
Thanks a lot!
Jan Niklaas
The text was updated successfully, but these errors were encountered: