Posts Temperature sensor with Arduino
Post
Cancel

Temperature sensor with Arduino

I wanted to have a cheap temperature sensor to use with my home automation system (FruitHAP). This sensor must be able to send its temperature through a 433 Mhz RF link since I have already a 433 Mhz RFXCom receiver. Also a display would be nice to display the temperature so I could put this in a room of my house to monitor the temperature there. I always wanted to do something with an Arduino, so i thought to create an Arduino project out of this. So I present you my first Arduino project.

Hardware

Parts list

Since i am too lazy to solder (and i am more a software than a hardware guy) I used components from the Seed Grove platform This platform enables you to very quickly cobble together a circuit, it’s literally plug and play. It consists of a shield which you just click on top of your Arduino and in this shield you can click in various other Grove components.

For this project you need:

  • Arduino UNO R3
  • Grove Base Shield V2
  • Grove LCD RGB Backlight
  • Grove 433MHz Simple RF Link Kit
  • Grove Temperature Sensor
  • Grove LED Socket Kit
  • Green/Red/Blue (or whatever color) LED
  • Some Grove cables
  • (optional 9V battery clip to 2.1MM DC Plug, if you want to battery power it)

Assembling the circuit

  • Plug the Base Shield onto the Arduino (check that the alignment is correct)
  • Plug the LCD with a grove cable into one of the I2C ports of the Base Shield
  • Plug the 433MHz transmitter with a grove cablee in port D2 of the Base Shield
  • Put the LED into the LED Socket kit (long leg is the anode/+)
  • Plug the LED socket kit with a grove cable in port D3 of the Base Shield
  • Plug the temperature sensor with a grove cable in port A0 (analog port 0) of the Base Shield

That’s all! The final result is in the pictures below.

Assembled Arduino Blue Green

Software

Getting it

Get the code from here and upload it to the Arduino with the help of the IDE.

You need also some external libraries:

When all is correctly connected and set up, the current temperature should be displayed on the LCD (as a bonus the background color changes when the temperature changes, you can test it by putting you finger on the component labeled NTC on the temperature sensor) The LED should blink every 10 seconds or so (can be altered, see source code), when this happens the current temperature is transmitted through the 433 Mhz transmitter.

Technical details

I won’t discuss all the code, you can view it yourself and in the comments there is also useful info, but i would like to point out some details.

X10RF

Like mentioned before, the X10RF library is used to transmit the measurements since this can emulate a so called RFXSensor device, which is basically a protocol based on X10.

This protocol can be understood by the RFXCom RFXtrx433 receiver (which i am using), but you are free to use another receiver/solution. It’s described in the docs of the X10 library (look for the file x10_RF_formats.pdf and then the section RFXSensor and you can look in the source code of the lib itself)

However, if you use the RFXtrx433 as receiver, pay attention to the fact that it transforms the received information into its own protocol. Basically the data will be stored in 2 bytes and the temperature is actually stored as temperature * 100 so the range of temperatures to be send is limited.

Possible improvements

Possible improvents could be:

  • Put the thingie in a nice box
  • Use a combined temperature/humidity sensor, so that you can monitor humidity too!

Happy coding!

Comments

This post is licensed under CC BY 4.0 by the author.