I am trying to build a system that would monitor the temperature and alert me when it becomes too hot/cold - I would like to use a USB interface. Where would I get such a device? Are there some open source options that have an API already built?

I have no problem with using Windows (7) or Linux...

link|improve this question

Hi Walter. I'd like to invite your question to a specialized group for sensors: tech.groups.yahoo.com/group/sensorforum . Post your question there. You'll get a good discussion. – Nick Alexeev Apr 3 '11 at 2:42
feedback

4 Answers

up vote 3 down vote accepted

You can find for few dollars many cheap Chinese "USB stick" thermometers; many of them have a control application written in .NET, that can be easily reverse-engineered (with e.g. Reflector), so that you can use them for your own projects.

Otherwise you can use a microcontroller with an ADC onboard and a temperature sensor, and use a serial to USB adapter chip (the classic is the MAX232) to connect the device to the PC with a USB interface.

If you like an "easy" solution of this kind you may consider buying an Arduino and a temperature sensor, with them it's easy to implement your project (and you can reuse the Arduino later for other projects). Notice that with the Arduino and ethernet shield you can also avoid completely the PC, making act as a small HTTP server/SMTP client to show/send the temperature information.

link|improve this answer
feedback

Is there any particular reason you want to use USB interface for communications?

It would be much easier to work with Dallas / Maxim DS1820 seriesof temp sensors and good old serial communications. Dallas sensors uses communications bus called 1-wire. Overall all the Dallas stuff is very well documented and supported and they are pretty cheap.

There are tons of tutorials, example code and working APIs for Dallas stuff. There is also a linux app called Digitemp which can work with Dallas sensors. Luckily Digitemp is ported for windows too.

Ofcourse you could always use a serial to USB adapter if you need an USB connection.

link|improve this answer
I have no problem with serial - USB was the first interface that came to mind – Wallter Apr 2 '11 at 0:23
feedback

Step 1: Get a sensor that will communicate through USB

Step 2: After connecting it to your PC, you will get a COM port mapped to your USB

Step 3: Follow the communication protocol from the vendor to decode the data you get through that port. See this: http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx

link|improve this answer
I understand the process. But I can't find such devices. I don't know the key words to Google. (My computer doesn't show the COM ports in device manager) – Wallter Apr 2 '11 at 0:01
feedback

Use an Arduino with A/D inputs on the microcontroller (a lot, if not all, of them do), and an RTD sensor.

Or an Arduino and temperature sensor with an SPI interface. Or an I2C interface...

The development software is free and works on Windows or Linux.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.