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 c...

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 pa...

Popular posts from this blog

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...

Interfacing of TMP36 Temperature Sensor with an Arduino in Tinkerad.

  Interfacing of TMP36 Temperature Sensor with an Arduino in Tinkerad. This project will turn the Arduino into a thermometer! By using the tmp36 temperature sensor. We can able to measure our body temperature and turn on the 3 LEDs. Green LED indicates the low-temperature range, Yellow LED indicates the medium temperature range and Red LED indicates the high-temperature range. One can test the circuit starting the simulation, clicking on the sensor, then adjusting its temperature value using the slider, and can test the desired resulting LED patterns. For making the actual circuit, you need to use the Arduino, breadboard, USB cable, male-female jumper wires, three LEDs, three resistors (any value from 100-1K, 220 ohms), a TMP36 sensor,   Circuit Diagram:   Components Required: §   Arduino UNO §   TMP36 (Temperature sensor) §   Resistor-03 §   LED – Green §   LED – Yellow § ...