Skip to main content

Posts

Showing posts from February, 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 }

Interfacing of force sensor (FSR)with an Arduino in tinkercad

Interfacing of force sensor (FSR)with an Arduino in tinkercad   In this project we will be interfacing the Force sensor or force sensing resistor (FSR) to the Arduino Uno . Also, we have interface three different LEDs with Arduino. in this tutorial you will learn how the force sensor works and how to interface with Arduino in tinkercad. The force is use to detect the pressure, amount of weight applied on the sensor, there are many applications of force sensor like it is used in electronic drum, gaming devices, industrial electronics etc. These sensors are good for measuring pressure but not highly accurate for measuring the weight. Circuit Diagram: Components Required: §   Arduino UNO §   Force sensor §   Resistor-01 §   Red LED §   Yellow LED §   Blue LED §   Connecting wires Connection: The hardware a part of this project is quite simple and easy to place together. First of all, make the connections for the force sensor with the Arduino. The connections for the force sensor with th

Interfacing of smoke sensor (MQ2) with an Arduino in tinkercad. [Gas leakage detector]

                    Interfacing of smoke sensor (MQ2) with an Arduino in tinkercad. [Gas leakage detector] In this project, we will see how to interface the smoke sensor with Arduino in tinkercad and we will make the gas leakage detector. and also, we will learn about gas Sensors, how a gas sensor works and simulate the circuit in tinkercad. Here we are using MQ2 Gas Sensor Module. This gas sensor module is basically suitable for detecting LPG,  Smoke ,  Alcohol ,  Propane ,  Hydrogen ,  Methane  and  Carbon Monoxide  concentrations in the air. This gas sensor can be used make projects like indoor air quality monitoring, alcohol checker or LPG leakage detecting.   Circuit Diagram:   Components Required: §   Arduino UNO §   Gas sensor §   Resistor-04 §   LED-02 §   Connecting wires §   Buzzer   Connection: The hardware a part of this project is quite simple and easy to place together. First of all, make the connections for the gas sensor with the Arduino. 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

DS18B20 Temperature sensor with new Blynk IOT Platform | DS18B20 with Esp32 & Blynk IoT Cloud

DS18B20 Temperature sensor with new Blynk IOT Platform | DS18B20 with Esp32 & Blynk IoT Cloud   Hello Everyone! I have come up with new tutorial based on the all new Blynk IoT platform. which is DS18B20 Temperature sensor with new Blynk IOT Platform | DS18B20 with Esp32 & Blynk IoT Cloud #iot #blynk In this video what you will learn about? 1. How to configure the new Blynk IoT Platform. 2. How to interface DS18B20 sensor with esp32 4. How to configure mobile blynk IoT platform 5. How to setup Automation in Blynk IoT 1.You can Watch Playlist on New Blynk IoT Platfom New Blynk IoT platform with esp32 | how to setup automation in Blynk IoT app | #iot #blynk #esp32 https://youtu.be/O2HZuu4KtIc 2.How to create events in blynk IoT platform | events in new Blynk IoT platform 🔥🔥 #blynk #esp32 #iot https://youtu.be/X5zVaGk8QV0 3.IoT Based smart garden monitoring system | Smart plant monitoring using Blynk IoT #iot #blynk #esp32 https://youtu.be/GTdxD5vQwy0 4.Water

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 }