how to interface xbee received data into windows
jruthroff
Posts: 38
I've bult and tested a wireless thermometer which i can monitor using the X-CTU. Works great, but I'd like a more elegant way to display the temp/humidity from the wireless thermometer on my Windows XP machine (perferably as an app running in the taskbar)...something that will just show the temp in a fashion similar to how Windows shows the time in the taskbar. I'm not looking for anything fancy, but I'm clueless as to how to approach this part of my project.
Can someone point me in the right direction?
Thanks!
John
Can someone point me in the right direction?
Thanks!
John
Comments
http://www.microsoft.com/express/Windows/
-dan
To plot your data, assuming your variables are called Temp & Hum:
DEBUG DEC Temp, ",", DEC Hum, CR
To label your title bar:
DEBUG "!TITL ", DEC Temp, " F & ", DEC Hum, " %", CR
With StampPlot, select a plot style, use the configuration window to choose your COM Port, then enable connect & plot and you'd be good to go.
http://www.stampplot.com
-Martin
-MH
I appreciate the comments, thanks.
John