My initial plan was not to play with my weather station, but with remote control to my vacuum cleaner :) I have Miele brand vacuum cleaner with remote control buttons located on gripping part of pipe where you usually hold cleaning pipe.
I was trying to reverse engineer that. There were no markings on device about its working frequency so I use cheap DVB-T dongle supported by rtl_sdr libray as my spectrum analyzer and GNU Radio as a frontend. First step is of course to find working frequency. I assumed that it will work on 433MHz or 868MHz or 2.4GHz band. That was easy - I spotted nice signal on 433.82Mhz My initial step was to discover modulation used by this device.
Since this is only home appliance I was not expecting QAM256 :) I focused on trying to get some bit stream by experimenting with ASK,FSK,GMSK. I started with ASK and that was first good shot. In fact my vacum cleaner is using OOK (On Off Keying) modulation which is extreme type of ASK where you switch on/off carrier.
By using GNU Radio FFT and Scope sink with low pass filter I saw that I have regular pulses of something what was interferences from my perspective. You can see this as decaying line close to the right of main signal. It is hard to catch < 1 s pulse..
I knew that this must be some other devices in my vicinity. Since pulses were rare this must be something energy efficient. My first suspects were SMART Water meter with radio transmitter or heat logger mounted on my water powered heaters. Both are made by Ista and have radio interface. They are waiting for my free time to start hacking them :) After some walking over my house with laptop and DVB-T dongle I ruled out both of them, and then I remembered about my weather station since signal was strongest near part of house where it was located.
Some time ago I bought cheap 30 PLN (~7,5 EURO) weather station in Biedronka shop. For those who are not familiar with this name it is a shop network directly competing with Lidl on Polish market. They sell mostly grocery but they have some home cheap china electronic stuff also. Quality is mostly crap but you can find some rare oportunieties..
Remote unit model part number is WS-9941-M. As you can see there is a mark that it is working on 433 MHz band. Clearly it was my source of interference. Unfortunatelly I'm still learning GNURadio and I was able to see data on screen however I was unable to make setup to dump this data to file. I went to my neighbor radio shack shop AVT. It is really neat to have such well stocked electronics shop just 10 minutes bike drive. I bought ZS-RR10-433MHZ 433.92 MHz radio reciever for 20 PLN (~5 EURO). This is really neat device - you just plug in to power, put some antena and you get demodulated signal on one of the pins.
After connecting Salae Logic Analyzer look what I got:
As you can see there is clearly pattern here. First what you see is sync packet contains three pulses and then delay ~ 9ms. Then is pattern repeated 10 times. We have pattern here but what exacly "0" and "1" are represented ?
I search web page for any similar devices. Unfortunately there is not many such pages. I found Fred's webpage, and rc-switch Arduino library. I looked into source files and none protocol was similar to mine.
I dumped data from Salae to CSV file and started write some python stuff that will try to get something from those data.
As you can see this signal have constant high pulse time so no duty modulation was possible. Period is changing and this was the clue. Like in every reverse hack you must start with some assumptions and check if they are wrong or not. I made one that bits are coded with time distance between two rising edges or two falling edges (since high state period is constant). With such assumption and data in csv file i wrote simple python code that will check time between two rising edges and if one is smaller than <VALUE_0> it is one bit, and second time period <VALUE_1> is zero bit. Of course you need some samples with knowledge what is expected to be inside, so I dumped packets for different temperature readings on my weather display and this is what I got
Temperature (Celsius) | Data |
18,8 C | 101001101000000010111100111100000000 |
20,1 C | 101001101000000011001001111100000000 |
20,7 C | 101001101000000011010000111100000000 |
Temperature (Celsius) | Data |
18,8 C | 188 |
20,1 C | 201 |
20,7 C | 207 |
Since such chip devices shouldn't be very efficient with float operations and temperature resolution was 0.1 deg I expected that station will multiply temp value by 10 and this should be value - and assumption was right.
I was happy and started to check my script until i measured first negative temperature. Since we have nice winter in Poland I put weather transmitter outside where it should be and started measurement. It was < -13 C deg and going down. Results were at least weird. Here is what I got with my previous method:
Temperature (Celsius) | Data | Data decimal |
-14.1 C | 101001101000111101110011111100000000 | 115 |
-14.2 C | 101001101000111101110010111100000000 | 114 |
-14.5 C | 101001101000111101101111111100000000 | 111 |
I noticed that encoded number is going down along with temperature drop. So what is minimum temperature device can measure so all bits will be zeroes ? Simple extrapolation and result is -25,6 C deg. Now this is very nice and special number for binary system :) So 0 deg will be 256 or "11111111". Simple math and we have formula for negative temperature schema:
Negative TEMP = ( VALUE - 256)/10
Where is "-" mark ? The only difference between negative and positive data are next 4 most significant bits you see on bold in table.
This is python based algorythm for decoding my wireless station data:
def decode(data): # convert 36 bits to long integer value=int(data,2) # remove 12 least significant bits by shifting >> 12 value=value >> 12 # remove preambule - only 12 least significant bits are important # 0xfff is in binary 111111111111. All other bits will be ignored value=value & 0xfff # lets check do we have negative temperature by comparing bits 10-12 # 0xf00 is 111100000000. We are checking value of 3 most significant bits # if set to 111 - negative temp. If set 000 - positive if (value & 0xe00) == 0xe00: # Negative algorythm return ((value & 0xff) - 256) / 10.0 else: # Positive temp algorythm return (value & 0x1ff)/10.0Now it is time to make some hardware to receive data from my unit and put them to PC via USB/UART, and put my temp data public. I have some STM32, PIC32, KL25Z,Atmega MCU's laying arround. But this is story for next part.
Update:
Jakub mention in comments that maybe my assuption about positive values is not perfect because that would mean max + temperature is 25.6 C deg. He was right. This is perfect example of working with not sufficient data samples :)
In fact temperature is encoded (probably) in 12 bits signed format. I tested only up to ~ 40 C deg by warm up sensor above 25,6 C deg. In order to check if bits 10 and 11 also containg temp data I would have to warm up device above 51.2 C deg. :-) Maximum temperature with 9 bits would be 51,2 C deg and this comply with sensor range from specification which is -25 - +50 C de, and I don't need higher values so example above decodes just 9 bits.
I updated python code
"Some bits were never changed so I removed them for further analysis" - there was another model of similar weather station available at Biedronka - with hygrometer capabilities. I GUESS transmission module and protocol is the same but the sensor is missing, and constant part is just a placeholder for hygro- and maybe barometer data..?
ReplyDeleteHa - I didn't know that. Knowing Biedronka this product will be available again in future. They swap shelf content periodicaly. Have to get one with hygrometer.
ReplyDeleteWhy are you think the number is 8-bit and not 12-bit? In 8 bit you can represent 25.5 max temperature which is really low indeed (we often have higher in summer). Change the code to use 12 bit signed values and you'll see -204.8...204.7 possible temperature readouts.
ReplyDelete@Jakub
DeleteYou might be right. I will check by using hot air to warm up sensor. Negative is probably ok since if I assume 12 bit resolution after going below "0" all 4 most significant bits are "1111". On positive range you might be right.
I will post results when I will check this.
I am right. This is ordinary 12-bit signed integer; Please try in python (>=2.6)
Deletebin(4096-141)
bin(4096-142)
bin(4096-145)
See?
The code is then:
def decode(data):
value=int(data,2)
value=value >> 12
return value | 0xfffff000
or some...
Jakub
DeleteYou were right. We can treat all 12 bits as signed integer.
Hehe:) I've made a mistake :)
ReplyDeleteInstead of last line put this:
return value&0x800? value | 0xfffff000 : value&0xfff
Sorry, couldn't resist to.... :) "just 10 minutes bike drive" -> "It was < -13 C deg and going down." .... :P Nice article, love reverse engineer topic, but got little free time to play with hardware :/ Scope and logic analyser covered with dust. But i need small weather station, so tomorrow Biedronka or Lidl (by foot, to cold for a bike :) ). Thanks again and looking for more :)
ReplyDeleteVery interesting writeup Spock about the wireless temperature sensor decoding. The extra bits might be address bits to differentiate the correct signal, in case a second sensor is nearby. They all transmit at the same frequency, but with different address (and of course different timing). I have a similar Lidl sensor that has a 3 pos switch in battery compartment. Maybe your has also an switch like this. I may use your findings to decode my sensor in the future. Thanks for sharing
ReplyDeleteTwo's complement encoding of the data so the MSb has negative sign and all other bits have positive sign.
ReplyDeletehttp://en.wikipedia.org/wiki/Two's_complement
Sounds like the auriol protocol
ReplyDeletehttp://www.tfd.hu/tfdhu/files/wsprotocol/auriol_protocol_v20.pdf
Regards,
Rinie
Great work!! Can't wait for next part.. I've tried in the past to make a similar weather sensor work with my arduino, but no luck at so ever.. Hope you pick the arduino as a receiver ;)
ReplyDeleteYou use gnu radio for analyze the signal OOK ? please you upload the code gnu for try other signal thanks.
ReplyDeleteThis comment has been removed by the author.
ReplyDelete@roberto,
ReplyDeleteI use gnu radio only for spectrum analysis. Decoding was made by using hardware 433 MHz receiver.
"Now it is time to make some hardware to receive data from my unit"
ReplyDeleteI recently followed this project: http://rurandom.org/justintime/index.php?title=Cheapest_ever_433_Mhz_transceiver_for_PCs but once range was poor even with a 173mm antenna attached, and also received lots of noise (like here or even worse: http://hblok.net/blog_pics/433/audacity_overview.png). I’m not an electrical engineer, so I don’t know if I did something wrong, or it is normal. What do you think, did this approach reach its limit (good for recording but not for receiving), or can be further improved?
Back to Roberto's question: I've found this article because I was curious whether there is a better hardware approach than the above. Now I'm a bit puzzled, since don't know whether you built a custom hardware solution because the rtl-sdr dongle is not good for this purpose, or because you plan to receive permanently and this way you can "spare" the dongle?
There are a lot of vacuum cleaners in the market today. Choose the top rated ones if you want the best vacuum features. best cheap robot vacuums
ReplyDeleteI might want to thank you for the endeavors you have made in composing this article. I am trusting the same best work from you later on too.. https://ampleom.livejournal.com/3103.html
ReplyDeleteIn this example, the two motors both have ratings of very close to 10 amps, and therefore, equivalent motor input power.thehousegoods
ReplyDeleteThese are great cleaners if you understand they may not be a perfect solution, one must still perform some maintenance on the pool. green gobbler drain opener review
ReplyDeleteLove how wonderfully every word is written with proper balance.
ReplyDeletebest vacuum for berber carpet
Thus, on the off chance that we subtract the amperage utilized by the power spout engine from our 12 amp machine, we think of 10.5 amps for the engine and light.Robot vacuum cleaner
ReplyDeleteThe most well known robotic vacuum models are typically minimal, pizza-formed machines with suckers that move around a room until the point when they cover a whole zone. Bobsweep
ReplyDeleteI felt exceptionally glad while perusing this site. This was truly exceptionally enlightening site for me. I truly preferred it. This was truly a sincere post. Much obliged!. best vacuum cleaner
ReplyDeleteWhatever the case, you are taking a gander at vacuum cleaners and wanting to purchase. simultaneous localization and mapping SLAM
ReplyDeleteSebo conveys the best vacuum cleaner models running use in homes to healing facilities and lodgings without hardly lifting a finger of taking care of. Bobsweep reviews
ReplyDeleteIn the event that you have a hardwood floor, you ought to consider purchasing a canister vacuum since they exceed expectations in lifting things up from wooden surfaces. bobsweep pethair plus
ReplyDeleteA vital source for the audience that takes the reader step by step.
ReplyDeletebest vacuum for high pile carpet
The blog is clear demonstration of the fact that, you can’t compromise with the quality.
ReplyDeletethewisepick
I read that Post and got it fine and informative.
ReplyDeletehow about shark vacuum
Excellent .. Amazing .. I’ll bookmark your blog and take the feeds also…I’m happy to find so many useful info here in the post, we need work out more techniques in this regard, thanks for sharing. iav.org.au
ReplyDeleteThis is very smart, really an intelligent idea. This is my first time in your blog and I really love it. Thanks for this awesome post. professional carpet cleaning fayetteville nc
ReplyDeleteIt was really insightful.
ReplyDeleteThanks for such a nice content.
Cheers
BTW if anyone interested more have a look besttoolsbrand thanks
If you are looking for a vacuum which is durable, and strong, then the Miele vacuum could be perfect for you rightpicknow These vacuums are produced to remain in working order for 20 years, and Miele is constantly accessible to help fix a malfunctioning vacuum cleaner, making the value of Miele vacuums unequalled
ReplyDeleteVacuum cleaners with wheels offer ease of movement throughout the areas of each room in your home. read review
ReplyDeleteI just want to let you know that I just check out your site and I find it very interesting and informative.. PalandSmith
ReplyDeleteThis website very helpful for me and full of information. Thanks for sharing such a piece of good knowledge.
ReplyDeleteNow, world has entered a modern age and you too adopt modern methods to prevent your precious savings with best smart locks.
Visit https://bestsmartlocker.com/
People like having their own swimming pools at their homes where they can cool down during the hot days that come. This saves them time and money from going down the beach or the public swimming pool just to escape the heat. https://www.earthhershop.com/best-pool-vacuum-head
ReplyDeleteWhen I read good content I like to make sure I thank the writer, so thank you. Your article is well-written (of course) and just what I like to read.Miele Washing Machine Repairs
ReplyDelete