Reading temperature & humidity from DHT sensors with Raspberry

DHT sensors Have you ever wanted to build your own weather station? Then read further, because today we are going to look at how to measure temperature and humidity with our Raspberry! We are going to use DHT11/22 sensor, which you can get on Ebay for 1 to 4 dollars, depending on the type and accessory that comes with it. These sensors are smaller that s match box and quite accurate. There are two basic models of the sensor - DHT11 and DHT22, you can find their characteristics below. Generally DHT11 is cheaper and less accurate than DHT22, but the price of DHT22 is still so low that there is no reason why you should hesitate and not buy the 22 version. The sensor can come as a bare “mini plastic box” with 4 pinouts or it can be mounted on a board and have 3 pinouts. The difference is that the version mounted on the board already has a pull-down resistor connected to it and you don’t have to worry about a NULL pin, which doesn’t have any purpose for us, on the “bare” version. The three remaining pinouts are for power input, ground and data output, how simple! Bare in mind that if you have the version without the board, you will also need a 4.7kΩ-10kΩ resistor to make it work properly! This sensors is able to measure temperature and humidity. If you would cut the plastic box guarding the inner parts of the sensor, you would find two separate sensors there. A thermistor for temperature readings, which is simply a variable resistor that changes its resistance according to the temperature. And second sensor for humidity readings, that consists of two electrodes and a moisture holding substrate between them. This substrate sucks humidity from its surroundings - changing its conductivity, which then changes the resistance between the two electrodes. DHT11 attribute value cost starting on $1 power 3-5V humidity reads values from 20% to 80% with 5% accuarcy temperature reads values from 0°C to 50°C ±2°C accuracy reading interval 1Hz - can read values every second DTH22 attribute value cost starting on $3 power 3-5V humidity reads values from 0% to 100% with 2-5% accuracy temperature reads values from -40°C to 80°C ±0.5°C accuracy reading interval 0.5Hz - can read values every 2 seconds Connecting it to Raspberry Connecting the sensor to Raspberry is pretty simple. You can choose weather to use 3.3V or 5V output from your Raspberry to connect it to VCC pin, then connect Raspberry’s GROUND to GND and choose one GPIO to connect in to DATA pin. If you have the version not mounted on the board, connect 4.7kΩ-10kΩ resistor between VCC and DATA. lt;p> Reading the temperature Now we have everything connected and ready to read the actual temperature and humidity from our sensor. To read the actual values, we will use a python library from Adafruit, because these amazing guys already did the hard work and figured out how to translate the changing resistance of temperature/humidity sensors to human readable values. I have forked the library and you can freely download it from my Gitlab. Remember that you need python and git to be installed on your Raspberry to make this work! Lets go step by step and measure something finally! Open a terminal on your Raspberry and install python and git if you don’t have it yet sudo apt-get update sudo apt-get install git build-essential python-dev python-openssl Now download the Adafruit DHT library and open the folder git clone https://gitlab.com/bambusekd-dev-blog/raspberry-read-temperature-humidity-DHT.git Install the library sudo python setup.py install Great, now go to the examples folder cd examples And here we go, there is a python script AdafruitDHT.py that takes two arguments. First one is type of your sensor, so 11 for DHT11 and 22 for DHT22. The second one is the GPIO number (BCM number) that the DATA pinout is connected to. So if you have connected the sensor to GPIO 4, that translates to number 7 in BCM, just execute sudo ./AdafruitDHT.py 22 4 And you should see the measured temperature and humidity, something like this Temp=22.0* Humidity=60.0% Congratz! You are now running a small weather station!

projít na článek

RaspberryPi course - building garden control & weather station

Raspberry Course Greetings! I am very glad that you ended up on my blog, mostly focused on programming and electronics. Since you clicked on this post I guess you are probably looking for some learing material to teach yourself how to run and control you

projít na článek

Measuring temperature with 1-Wire DS18B20 on Raspberry

1-Wire In todays article we will look at an interesting 1-Wire technology and at how it works together with Raspberry. After the brief introduction, you can look forward to a practical demostration of how to use 1-Wire temperature sensor DS18B20. 1-Wire

projít na článek

Measuring distance with JSN-SR04T and Raspberry

Distance sensor JSN-SR04T If you are in need of measuring distances with your Raspberry, this tutorial is what you where looking for. In this article, we will look at a JSN-SR04T ultrasonic distance sensor. Which is an affordable sensor for your robotics

projít na článek

Raspberry pinouts - BCM/BOARD/wiringPi

Raspberry pinouts If you are going to connect some electronics to your Raspberry, no matter if to power them, control them or read dat from them, you will need to use Raspberry’s pinouts, which are those small wires going out of the raspberry in the corn

projít na článek

Controlling 5V relay with Raspberry

Relay In todays article, we are going to have a look at an electronic component called relay. In case that you have never heard of it, it is simply a mechanical switch, that can be controlled by low level voltage (starting from usually 5V) and that can s

projít na článek