TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Reading my electric meter with RTLSDR

31 pointsby squidhunter11 months ago

2 comments

ArchOversight11 months ago
My old house had a meter that could be read by rtlamr but the new one has a newer meter that sends encrypted data back over some proprietary mesh network, and no longer provides that data in cleartext.<p>I wish there was an open standard and one I could easily plug in to. Even just a flashing LED on the side of the meter would work for me.
评论 #40928471 未加载
评论 #40928227 未加载
RebeccaTheDev11 months ago
My utility also installed smart meters a few years ago - the Focus AXRe with Gridstream RF. It theoretically has Zigbee in it. It even has the Zigbee logo on it. It also uses some frequency hopping radio thing for reporting that I was never able to quite figure out.<p>But I DID discover that my utility, buried down in like 5 menus on some random screen of the account portal, offers a usage graph at 15 minute intervals. It&#x27;s not real time - it seems to be delayed by 1-3 hours - but it is far better than getting a surprise bill. And while it used some weird SAP JSON interface, I could deduce what was what and could get the data out of it.<p>So I whipped up a script to basically scrape this &quot;API&quot; and shove the data into InfluxDB. I also added daily scrapes for the billing page and the rate page so I know when I was billed and how much the current rate is. This is because my utility bills at a lower rate for the first 1,400 kwh, and a higher rate for everything over that. I was not able to discern any pattern to when the bills were issued and the utility company was very unhelpful in this regard, just &quot;sometime ever 27 to 35 days depending on holidays and weekends.&quot;<p>While I would really like realtime data directly off the meter, even being delayed a few hours is better than a random surprise $370 bill. I&#x27;ve written enough scrapers in my life to know it will probably break at some point, but it&#x27;s been humming along nicely for the last few years.
评论 #40928485 未加载