A Guide For Interfacing Analog Sensors With Arduino

With Arduino, almost everything seems to be too friendly when it comes to interfacing various sensors, shields, add-ons or any other utility devices. Just because the Arduino coding environment is so user-friendly, anyone can do it. So in this post, I will just show you how to hook up your sensors to Arduino and get them running. Let's start with the very basics.... Sensors What is Sensor Sensors are those electronic components which convert physical data into electronic data. This data is in analog format and is fed to the microcontroller on the Arduino board. The microcontroller has inbuilt ADCs (Analog-2-Digital Converter) which processes this data and converts it into digital format. And once you have received the (electronically converted) physical data, you can make your Arduino perform as you want. How To Interface LDR With Arduino Arduino Distance Measurement Using Ultrasonic Sensor On your Arduino board, there are analog pins named as A0, A1, A2, A3, A4, A5. The number of ...