Posts

Room temperature meter (DHT11 + MAX7219 + Arduino pro mini)

Image
 INTRODUCTION Temperature is one of the important parameter and it needs to measured and monitored in many systems. Finding a perfect temperature sensor that satisfies your projects need is very important, for example if you need to measure body temperature in a medical system then you may need a temperature sensor that is sensitive to small changes. On other hand if you want to measure room temperature then you may not need that much of a sensitive sensor, DHT 11 would be a perfect sensor for that.   What is DHT 11 sensor? A  DHT 11 (pronounced DHT eleven) is a temperature and humidity sensor. The sensor module consists of a temperature sensor and humidity sensor connected to a 8-bit microcontroller. The sensors are calibrated to give accurate readings.  It's small size and low power consumption makes it ideal for projects. There are some precautions we need to take while using this sensor like, 1. The soldering temperature must be less than 260 Cel...

Getting started with 7 segment module

Image
What is a segment display? and Why to use MAX7219 display module?  Suppose you have made a counting device or measuring device. The output of the device is a number. It can be displayed on your mobile display, computer display or any display but the most basic one is the seven segment display that's because using only seven led's (each for one segment)  you get to display all the numbers from 0 to 9. Less bits more data that's what every display designer aims for and that's the reason why the seven segment is still used along with microcontrollers because it's the most efficient way to display numbers. You can directly interface the 7 segment display to microcontroller but it will take 8 pins just for one display. Now, what if you have to display 3 digit number then you may need 8x3 pins, that's 24 pins just for displaying 3 digits, not good. To solve this issue there are two ways:- 1. Multiplexing - Switching on and off the individual display one after the oth...