Skip to main content

Posts

Showing posts from January, 2022

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 }

Soil moisture sensor with Arduino IoT cloud | IOT Smart Plant Monitoring System

  Soil moisture sensor with Arduino IoT cloud | IOT Smart Plant Monitoring System Hello everyone !! in this video, you learn about the following things 1. How to interface soil moisture sensor with esp32 board 2. How to control pump using the Arduino IoT cloud platform 3. How to create a dashboard 4. How to install the Arduino Create agent. 5. how to do the programming in Arduino web-based editor if you want to know more about the Arduino IoT cloud platform then watch my previous video Getting started with Arduino IoT cloud | Arduino IoT cloud with Esp32🔥 #arduinoiotcloud #esp32 https://youtu.be/I92CX2V5NxA Checkout the previous series videos! [E01]Getting started with Esp32 board | how to program esp32 board using Arduino ide https://youtu.be/R4o2IHZm3E8 [E02] Esp32 analog input | read analog values with arduino IDE and potentiometer https://youtu.be/63EPm6S7-UQ [E03] Esp32 Built in Hall effect sensor | how to use esp32 built in hall effect sensor https://youtu.be/DKdehe1

How to send sensor data from Arduino IoT cloud to Email | webhook & IFTTT with Arduino IoT cloud

  How to send sensor data from Arduino IoT cloud to Email | webhook & IFTTT with Arduino IoT cloud. Hello everyone !! I have started new series on the Arduino IoT Cloud Platform, I have started making several projects based on this platform I hope this would be helpful to you. this video is about how to use the webhook service in the Arduino IoT cloud platform. and using the webhook service we are sending the sensors data to the email. you learn about the following things. 1. How to interface potentiometer with esp32 board 2. How to configure the webhook and IFTTT 3. How to create a dashboard 4. How to do the programming in Arduino web-based editor 5. how to create a thing in the Arduino IoT cloud platform. 6. how to send the sensors data to the email. if you want to know more about the Arduino IoT cloud platform then watch my previous video Getting started with Arduino IoT cloud | Arduino IoT cloud with Esp32🔥 #arduinoiotcloud #esp32 https://youtu.be/I92CX2V5NxA Check out

Advantages and disadvantages of Arduino IoT cloud (Pros & Cons)

  Hi ! Everyone This is what my reviews after using the Arduino IoT cloud if you have something different points then you can mention in comment section. I hope you will find it helpful. I am writing the summary of the projects that I have created using the Arduino IoT cloud. These are the pros and cons of the Arduino IoT cloud Platform Pros: • It is Easy for beginners, fast for professionals as we can able to create things very quickly. • Based on the Arduino environment familiar to millions of user • You can directly program the board from Arduino web editor itself and it has all the necessary libraries to work with. • One can Quickly build remote sensor monitoring using simple widgets • We can connect to a spreadsheet, database, or automate alerts using webhooks • Arduino IoT cloud platform now started supporting the third party boards that is ESP-32 and ESP-8266 (Node MCU) Cons: • It has very less widgets • There is very little space for customizing widgets like pointer ,colour et

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 Arduino IoT Cloud is completely inte

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 }