Skip to main content

Posts

Showing posts from March, 2021

Soil Moisture sensor with Arduino in Tinkercad | how to use soil moisture sensor in Tinkercad

  Soil Moisture sensor with Arduino in Tinkercad | how to use soil moisture sensor in Tinkercad Circuit diagram: Arduino Sketch: // C++ code // int moisture_data = 0; void setup() {   pinMode(A0, INPUT);   Serial.begin(9600);   pinMode(12, OUTPUT);   pinMode(6, OUTPUT); } void loop() {   moisture_data = analogRead(A0);   Serial.println(moisture_data);   if (moisture_data < 21) {     digitalWrite(12, HIGH);     digitalWrite(6, HIGH);   } else {     digitalWrite(12, LOW);     digitalWrite(6, LOW);   }   delay(10); // Delay a little bit to improve simulation performance }

Security system using Arduino and Ultrasonic sensor

 Security system using Arduino and Ultrasonic sensor  Arduino Sketch for the same project is given below: //this code is created by Yogesh Bawane for my channel ImpulseTech. //you will find arduino tutorial on this channel https://www.youtube.com/channel/UCHCzBGgDMjT3fOWCv1ruIdA const int pingPin = 7; // Trigger Pin of Ultrasonic Sensor const int echoPin = 6; int buzzer=5;// Echo Pin of Ultrasonic Sensor void setup() {    Serial.begin(9600); // Starting Serial Terminal    pinMode(buzzer,OUTPUT); } void loop() {    long duration, inches, cm;    pinMode(pingPin, OUTPUT);    digitalWrite(pingPin, LOW);    delayMicroseconds(2);    digitalWrite(pingPin, HIGH);    delayMicroseconds(10);    digitalWrite(pingPin, LOW);    pinMode(echoPin, INPUT);    duration = pulseIn(echoPin, HIGH);    inches = microsecondsToInches(duration);    cm = microsecondsToCentimet...

LED brightness control using Arduino and potentiometer in tinkercad

  LED brightness control using Arduino and potentiometer. In this tutorial, we are controlling the LED brightness using the potentiometer. This is an easy tutorial for demonstrating how can we control the brightness of an LED or adjust the speed of a DC motor using Arduino Board, and potentiometer. in this tutorial we have used the three LEDs yellow, blue, green to control the brightness of the same.   Circuit Diagram: Components Required: §   Arduino UNO §   Yellow LED §   Blue LED §   Green LED §   Potentiometer 10K §   Connecting wires   Connection: The hardware part of this project is very simple and easy to place together. First of all, make the connections for LEDs with the Arduino. Connect the anode of the yellow LED to the digital pin12 of an Arduino. Connect the anode of the Blue LED to the digital pin 8 of an Arduino. Connect the anode of the Green LED to the digital pin 4 of an Arduino. Connect the c...

Interfacing Seven segment display with Arduino in tinkercad

  Interfacing Seven segment display with Arduino In this project, we will interface seven segment display with an Arduino For various application in day-to-day life, we need display to show the values and much more things, and there is no point to use expensive OLED and LCDs available in the market. Then what is the solution for this so we are having less expensive display and that is a simple seven-segment display. It is mainly use to display the numbers and some alphabets. Seven segment display has 7 LEDs which are arranged in the shape of 8. See the image below. Circuit Diagram: Components Required: §   Arduino UNO §   Seven Segment Display §   Resistors -02 §   Connecting wires   Connection: The hardware a part of this project looks quite messy but if we go step by step its simple and easy to place together. First of all, we make the connections for the 7-segment display with the Arduino. The connections for 7-segments with the Arduino given in the ...

Popular posts from this blog

Water level monitoring system using IoT | IoT based water level using Nodemcu ESP8266 & ESP32

Water level monitoring system using IoT | IoT based water level using Nodemcu ESP8266 & ESP32 Hello Everyone! I have come up with new tutorial Water level monitoring system using IoT | IoT based water level using Nodemcu ESP8266 & ESP32 For Code & Circuit Diragram: In this video what you will learn about? 1. How to configure the new Blynk IoT Platform. 2. How to setup web dashboard 3. How to create template in blynk iot 4. How to interface ultrasonic sensor with node mcu esp8266. 5. How to read ultrasonic sensor with esp8266 1.You can Watch Playlist on New Blynk IoT Platfom New Blynk IoT platform with esp32 | how to setup automation in Blynk IoT app https://youtu.be/O2HZuu4KtIc 2.How to create events in blynk IoT platform | events in new Blynk IoT platform 🔥🔥 https://youtu.be/X5zVaGk8QV0 3.IoT Based smart garden monitoring system | Smart plant monitoring using Blynk IoT https://youtu.be/GTdxD5vQwy0 4.Water level monitoring system using IoT | IoT based...

Soil Moisture sensor with Arduino in Tinkercad | how to use soil moisture sensor in Tinkercad

  Soil Moisture sensor with Arduino in Tinkercad | how to use soil moisture sensor in Tinkercad Circuit diagram: Arduino Sketch: // C++ code // int moisture_data = 0; void setup() {   pinMode(A0, INPUT);   Serial.begin(9600);   pinMode(12, OUTPUT);   pinMode(6, OUTPUT); } void loop() {   moisture_data = analogRead(A0);   Serial.println(moisture_data);   if (moisture_data < 21) {     digitalWrite(12, HIGH);     digitalWrite(6, HIGH);   } else {     digitalWrite(12, LOW);     digitalWrite(6, LOW);   }   delay(10); // Delay a little bit to improve simulation performance }

Getting Started with the Arduino IoT Cloud using Esp32 & DHT-11

  Getting Started with the Arduino IoT Cloud using Esp32 Introduction: The Internet of Things has given rise to plenty of exciting new projects for makers. It's both interesting and practical to be able to develop remote sensors and gadgets. Allowing IoT devices from multiple manufacturers to interact with your innovations will open up a lot of possibilities, including some you might not have considered before. In this getting started guide of Arduino IOT cloud we will learn about how to use Arduino IOT cloud with Esp32 board. Arduino IOT cloud What is Arduino IOT cloud? Arduino IoT Cloud is a web-based service that allows users to create connected devices quickly, easily, and securely. Multiple devices can be linked together and data can be exchanged in real-time. Users can also able to monitor the data using a simple user interface from anywhere. one can also use the android application for monitoring and controlling the devices. Because Arduin...