Lab 6
Lab 6
Student ID:
Full in name:
Group:
IRvalueA = analogRead(pinIRa);
IRvalueD = digitalRead(pinIRd);
}
Result
Link: How to Use TCRT5000 IR Sensor Module With Arduino UNO : 7 Steps (with
Pictures) - Instructables
HC-SR505 is a three pin device as shown in figure and the function of each pin is stated
below.
Pin Name Function
+ Positive power supply A positive voltage of minimum +5V is supplied at this pin for the device
Step 2: Material Preparation & Step 3: Pin Connection
Step 4: Sample
Source Code
/* PIR sensor tester */
int ledPin = 13; // choose the pin for the LED
int inputPin = 2; // choose the input pin (for PIR sensor)
int pirState = LOW; // we start, assuming no motion detected
int val = 0; // variable for reading the pin status
void setup() {
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inputPin, INPUT); // declare sensor as input
Serial.begin(9600); }
void loop(){
val = digitalRead(inputPin); // read input value
if (val == HIGH) { // check if the input is HIGH
digitalWrite(ledPin, HIGH); // turn LED ON
if (pirState == LOW) { // we have just turned on
Serial.println("Motion detected!"); // We only want to print on the output change, not state
pirState = HIGH;
}
} else {
digitalWrite(ledPin, LOW); // turn LED OFF
if (pirState == HIGH){ // we have just turned of
Serial.println("Motion ended!"); // We only want to print on the output change, not state
pirState = LOW; } } }
Result
Link: https://mschoeffler.com/2017/08/30/tutorial-how-to-use-the-hc-sr505-pir-sensor-
with-the-arduino/
delay(250);
}
Result
Link:
https://arduinogetstarted.com/tutorials/arduino-ultrasonic-sensor