Hi
Anyone found a USB temperature logger that works with the RPi? I found an old one that used to work poorly on Windows (Temper?) but doesn't work on the Pi or ubuntu laptop
Thanks!
usb temperature logger
11 posts
- Posts: 98
- Joined: Thu Aug 02, 2012 8:09 pm
The DS9490R USB bridge, with some DS18B20 sensors works nicely. You can use the digitemp package (which I think is in the standard Raspbian distro) to read the sensors and write to a logfile. I had this setup working for some time, before 1-wire support was built into the kernel, and now I just connect the DS18B20s straight to the GPIO pins.
--
nr.
nr.
- Posts: 131
- Joined: Wed Oct 03, 2012 8:51 am
- Location: The Fens
Hi, Rooster - I have been using the Pi and the DS18B20 to measure and plot temperature in my home and my garden pond. I have also been experimenting with the HDT22 temperature / humidity sensor. My notes are NOT complete but you may want to look them over here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/index.html
The graphs are here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/Graph.htm
the first two graphs are of my home - the plots are temperatures in the garage, basement, 1st and 2nd floor as well as the temperatures of the pipes going into and out of my hot water heating system and hot water heater. The second pair of graphs are of the ambient temperature in the back yard and the temperature at three points in my garden pond.
The last graph is a test of the temperature / humidity sensor.
Please let me know if you have any questions.
dave
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/index.html
The graphs are here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/Graph.htm
the first two graphs are of my home - the plots are temperatures in the garage, basement, 1st and 2nd floor as well as the temperatures of the pipes going into and out of my hot water heating system and hot water heater. The second pair of graphs are of the ambient temperature in the back yard and the temperature at three points in my garden pond.
The last graph is a test of the temperature / humidity sensor.
Please let me know if you have any questions.
dave
- Posts: 6
- Joined: Mon Jul 16, 2012 10:10 am
- Location: Pittsburgh, PA
I'm using a temper2 dual sensor on an RPi.
Try the drivers from here - http://www.isp-sl.com/pcsensor-1.0.1.tgz
Try the drivers from here - http://www.isp-sl.com/pcsensor-1.0.1.tgz
- Posts: 21
- Joined: Tue May 29, 2012 8:18 am
Hi,
I recently received my USB temperature sensor from Yoctopuce and it works nicely (link). If you want to log the temperature you will need to write a bit of code but the devices come with a library for most programming languages (see list).
I worked on it this week end and could quickly program an interface in Python displaying the current temperature. In other words, I recommend this product.
It will be a bit more expensive than a simple non-USB temperature sensor but you also pay for the convenience and the development of the libraries.
For your information, before ordering from Yoctopuce I seriously considered buying from Phidgets (link).
I recently received my USB temperature sensor from Yoctopuce and it works nicely (link). If you want to log the temperature you will need to write a bit of code but the devices come with a library for most programming languages (see list).
I worked on it this week end and could quickly program an interface in Python displaying the current temperature. In other words, I recommend this product.
It will be a bit more expensive than a simple non-USB temperature sensor but you also pay for the convenience and the development of the libraries.
For your information, before ordering from Yoctopuce I seriously considered buying from Phidgets (link).
Not a native speaker. Sorry for my english. =)
- Posts: 11
- Joined: Wed Oct 31, 2012 9:41 am
- Location: Lausanne, Switzerland
I sell temperature loggers and temperature logging solutions.
If any of you want to take one of these apps and tidy it up for a commercially ready product then please talk to me. Or if you want to give it a shot anyway.
The requirements would be along the lines of:
- programmable sample rates
- programmable high and low alarm limits
- some sort of configurable alarm action (e.g. email)
- ability to get the results directly from it as a graph and table using a web browser
- ability to get the results as a csv (and optionally xml)
- ideally the ability to upload results to a centralised database for a multiunit system
- choice of temperature sensor is up to you. Spec has to be better than 1°C accuracy.
And finally, if you are really up to the challenge:
- battery backup
- multiple channel/devices
Please email shane at onsolution.com.au
If any of you want to take one of these apps and tidy it up for a commercially ready product then please talk to me. Or if you want to give it a shot anyway.
The requirements would be along the lines of:
- programmable sample rates
- programmable high and low alarm limits
- some sort of configurable alarm action (e.g. email)
- ability to get the results directly from it as a graph and table using a web browser
- ability to get the results as a csv (and optionally xml)
- ideally the ability to upload results to a centralised database for a multiunit system
- choice of temperature sensor is up to you. Spec has to be better than 1°C accuracy.
And finally, if you are really up to the challenge:
- battery backup
- multiple channel/devices
Please email shane at onsolution.com.au
- Posts: 1
- Joined: Tue Sep 18, 2012 5:13 am
dbodnar wrote:Hi, Rooster - I have been using the Pi and the DS18B20 to measure and plot temperature in my home and my garden pond. I have also been experimenting with the HDT22 temperature / humidity sensor. My notes are NOT complete but you may want to look them over here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/index.html
The graphs are here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/Graph.htm
the first two graphs are of my home - the plots are temperatures in the garage, basement, 1st and 2nd floor as well as the temperatures of the pipes going into and out of my hot water heating system and hot water heater. The second pair of graphs are of the ambient temperature in the back yard and the temperature at three points in my garden pond.
The last graph is a test of the temperature / humidity sensor.
Please let me know if you have any questions.
dave
Great, thanks, seems like a great solution! Waiting for my DS18B20s to arrive, then may be back for questons!
R
- Posts: 98
- Joined: Thu Aug 02, 2012 8:09 pm
dbodnar, you install 4.7 kom resistor on every sensor. But only one is needed. And also exists another solution, where only one wire is used.
See
http://chipenable.ru/index.php/programm ... ast-1.html
use Google translator or just see at schematics
See
http://chipenable.ru/index.php/programm ... ast-1.html
use Google translator or just see at schematics
- Posts: 23
- Joined: Tue Aug 28, 2012 8:57 am
You are correct about only one resistor being needed - I am in experimentation mode and move sensors around and find it just as easy to pull each sensor up so that I don't forget to add the resistor.
thanks!
dave
thanks!
dave
- Posts: 6
- Joined: Mon Jul 16, 2012 10:10 am
- Location: Pittsburgh, PA
- Posts: 131
- Joined: Wed Sep 19, 2012 2:16 am
dbodnar wrote:Hi, Rooster - I have been using the Pi and the DS18B20 to measure and plot temperature in my home and my garden pond. I have also been experimenting with the HDT22 temperature / humidity sensor. My notes are NOT complete but you may want to look them over here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/index.html
The graphs are here:
http://www.trainelectronics.com/RaspberryPi/Graph_Temperature/Graph.htm
the first two graphs are of my home - the plots are temperatures in the garage, basement, 1st and 2nd floor as well as the temperatures of the pipes going into and out of my hot water heating system and hot water heater. The second pair of graphs are of the ambient temperature in the back yard and the temperature at three points in my garden pond.
The last graph is a test of the temperature / humidity sensor.
Please let me know if you have any questions.
dave
Hi dave
That worked a treat when my sensors arrived, thanks!
R
- Posts: 98
- Joined: Thu Aug 02, 2012 8:09 pm