-
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
Decoder for Mueller Hot Rod V1 Water Meter Transmitter #2752
Comments
A very nice teardown/description there. Seems easy to add. Can you grab some (20 to 100 maybe?) raw codes (e.g. |
I'd be happy to, but, forgive me, is there a way to do this with my current setup? I am running rtl_433 as part of a Docker container called "SDR to Home Assistant" on a Raspberry Pi 4 running the most recent version of HA. If not, I will get a second SDR dongle and set up another machine, though that may take a couple weeks. Thanks, again. |
Yes, the |
I don't think that I can do this in the Docker container (or I don't know enough how to do so, haha), but I have some additional hardware en route that will let me do this. I will post again with the raw codes in a few days. Thanks. |
Well, I'm not receiving anything with those flags. I have what looks like the same unit as the linked repo (same model and FCC ID, appearance is the same). Should I change the frequency in the command, or other flags? |
Try to use a UI with a waterfall display first. Locate the signal and then pick a center frequency close but not directly on the signal (10 to 50 kHz offset should work best). |
Ok, will do. Do you have recommendations on suitable (Linux) software with a waterfall view? How wide is the bandwidth that rtl_433 looks at with these options? Thanks.
|
In no particular order: Gqrx, CubicSDR, SDRangel, SigDigger. Bandwidth is equal to sample rate, default is 250k for lower freqs like 433.92M and 1024k for higher like 868M. |
Got it; thank you. This is a good place to start. I will work with one or more of these and see what I can find. |
Alright; I have finally made some headway. The reason I wasn't picking up anything initially wasn't due to an incorrect frequency; it was the gain. Allowing for auto-gain, with the command "rtl_433 -f 909M -s 1M -R 0 -X 'preamble={44}aaaaafeb100,n=hotrod,m=FSK_PCM,s=20,l=20,r=3000'", I was able to pick up the transmitters, filtered for uniques: I am not confident that all of these are error-free and complete, just results of the command above. The preamble I used was longer than that in the linked repo because there was a lot of noise without it, and it uses the same characters that were at the beginning of his/her sample code. The first 8 characters of my codes are meter IDs. The current reading in gallons follows, but I am not sure how many positions: The meters read to tens of gallons, which is reported on the water bills in hundreds of gallons. I would guess that a checksum follows, but it is not a consistent number of bits long. Should I adjust my command? |
Looks good. With FSK the end can show a few invalid bits. Can you get consecutive codes from the same meter? We need to observe as little change in the code as possible to guess the checksum. |
BitBench: Nice piece of software, there. Thanks. Not quite what I meant, but looks like I was a little bit wrong, anyway. See below. Consecutive codes: Yes, makes sense. Here is a couple hours of data stream from one meter, with repeated lines deleted: ( ( |
The last byte could be a CRC (CRC-8/ITU, poly 0x07 init 0). But for that the code needs to be 72 bits (or more). |
I think that I am following what you are writing. For the three "good" codes: I don't see it working by the same method with the "filtered for uniques" list, but perhaps I don't quite understand what you mean. Can this now be turned into a decoder, or would that be premature? |
E.g.
Yes, it has a checksum and most fields are known. Do you want to code a PR or should I just add a decoder? |
Oh, so each of the "filtered for uniques" were missing bits, then? I honestly wouldn't know where to start coding it myself, so if you are able to, that would be great. This would then be merged so that others would be able to use it, right? Looks like there are others interested and this may be applicable to other models. |
The scheme that we have come up with matches another model: |
I meant to ask, will the decoder be part of the next release? Thank you. |
@zuckschwerdt : I can help on this issue, let me know. Sounds to be a simple decoder here: we have samples, bitbench, preamble/sync word, crc, another issue is opened on the same protocol, I guess we have enough information, just the unit to be confirmed gallon or liter or just a counter without unit ? |
@ProfBoc75 that would be great! I currently don't have much time for this :/ |
Oh, nice, thanks... the units are gallons, monotonically increasing. Please let me know if there is any other information that I can provide that would help. |
Hi @dolai1: I started to write the decoder, I would like some more codes / more samples. Notice that from the cu8 files I analyzed, the pulse is more around 26 µs than 20.
I would like to confirm the data layout at the volume level, with 5, 6 or 7 nibbles after the ID. Possible bitbenchs Let me know. I will pull a request soon, starting with volume based on 5 nibbles / 20 bit. |
Interesting. Maybe we could get more reliable reads, then. |
I got "{68}12596514027330058" most frequently, but accidentally deleted most of my captured data, so I will re-acquire and post it. Thanks. |
As I mentioned in my original BitBench, I am fairly sure the volume is only transmitted in hundreds of gallons. The digit afterward does not seem to be part of the reading as it is not incremental. The values that I had there were sequential during a period of use of ~200 gallons. Modifying it per your linked BB for clarity: |
Here's about 45 minutes of codes. Most appear to be incomplete, but from those that are, no consumption registered during this time (I was using the water, but, evidently, not more than one hundred gallons). |
(maybe it's being transmitted in tens of gallons?) |
Very nice. Thank you. |
This software is awesome; I appreciate the work of the devs.
Could support be added for this water meter?
Someone has already been able to get the consumption data out of it:
https://github.com/sycophantic/muellerhotrod/
And, some more information:
https://www.oaklodgewaterservices.org/files/7babb4e56/meters+installed.pdf
Is this sufficient information to create the decoder?
Thank you.
The text was updated successfully, but these errors were encountered: