|
1 | 1 | # Arduino-Sensor-Examples
|
2 | | -Contains sensor module examples with Arduino. These examples include: |
| 2 | +Contains sensor module examples with Arduino. These examples include BMP180-PressureMeasurement, HCSR04-DistanceMeasurement and Keypad-Example. These examples: |
3 | 3 |
|
4 | | -- BMP180-PressureMeasurement: This example demonstrates how to measure pressure, altitude, and temperature using the BMP180 sensor module with Arduino. The Arduino communicates with the BMP180 sensor module via I2C. The connection is made using the Arduino A4 and A5 pins. |
| 4 | +- BMP180-PressureMeasurement: Demonstrates how to measure pressure, altitude, and temperature using the BMP180 sensor module with Arduino. |
5 | 5 |
|
6 | | -- HCSR04-DistanceMeasurement: This example shows how to measure distance using the HC-SR04 distance sensor module with Arduino. The Arduino connects the HCSR04 distance sensor to the trig pin (D8) and the echo pin (D9). |
| 6 | +- HCSR04-DistanceMeasurement: Demonstrates how to measure distance using the HC-SR04 distance sensor module with Arduino. |
7 | 7 |
|
8 | | -- Keypad-Example: This example allows the use of a keypad module with Arduino. |
| 8 | +- Keypad-Example: Allows the use of a keypad module with Arduino. |
| 9 | + |
| 10 | +Programming Language: C/C++ Programming Language |
| 11 | + |
| 12 | +IDE: Arduino IDE Version - 2.2.0 |
9 | 13 |
|
10 | 14 | Arduino Used: Arduino Uno, Arduino Mega
|
11 | 15 |
|
12 | | -Arduino IDE Version: 2.2.0 |
| 16 | +Arduino Library: |
| 17 | + |
| 18 | +- BMP180BreakoutArduinoLibrary: This library enables the use of the BMP180 sensor module. Include this library in your Arduino IDE. |
| 19 | + |
| 20 | +- Keypad: This library enables the use of the Keypad module. Include this library in your Arduino IDE. |
| 21 | + |
| 22 | +Arduino Connection Diagram: |
13 | 23 |
|
14 | | -BMP180BreakoutArduinoLibrary Arduino Library: This library enables the use of the BMP180 sensor module. Include this library in your Arduino IDE. |
| 24 | +- Arduino-BMP180 Module Connection Diagram: Arduino communicates with the BMP180 sensor module via I2C. The BMP180 module is connected to the Arduino's A4 and A5 pins. |
15 | 25 |
|
16 | | -Keypad Arduino Library: This library enables the use of the Keypad module. Include this library in your Arduino IDE. |
| 26 | +- Arduino-HCSR04 Module Connection Diagram: The HCSR04 module is connected to the Arduino's trig pin (D8) and echo pin (D9). |
17 | 27 |
|
18 | | -Arduino-Keypad Connection Diagram: The connection of the keypad to the Arduino is shown in the (keypad-schematic.png) image. |
| 28 | +-Arduino-Keypad Module Connection Diagram: The connection of the keypad to the Arduino is shown in the (keypad-schematic.png) image. |
0 commit comments