WITCH DOCTOR
WITCH DOCTOR
  • Видео 2
  • Просмотров 156 336
DHT11 Temperature and humidity sensor using arduino with LCD disply tutorial
The things i have used in this project is
Arduino uno
DHT11 sensor
LCD with I2C module
Jumperwires
Breadboard
this is a simple project
You can understand the basics of the LCD with I2C and also find he temperature and humidity f the room
hope you all have enjoyed the video please click on subscribe and press the click on the notification button
the final code of the project is
drive.google.com/open?id=143RpeYHHYU6GhJOPJ7UQOfviFLWYzy70
Просмотров: 155 986

Видео

Making motion detector Using PIR Motion sensor with Arduino
Просмотров 3764 года назад
In this video we will be making a motion sensor using Arduino you can replace the LED with a buzzer The code for this project is int LED = 13; int PIR = 7; void setup() { pinMode(PIR, INPUT); pinMode(LED, OUTPUT); } void loop() { int value = digitalRead(PIR); if (value HIGH) { digitalWrite(LED, HIGH); } else { digitalWrite(LED, LOW); } } Please wait for atleast 60 sec after powering the project...