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 }
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 etc
• Sometimes device shows offline even it is connected to the cloud
• Here we are not able Export a Device's Data in CSV
These are the projects that I have created using the Arduino IoT cloud.
1.Getting started with Arduino IoT cloud | Arduino IoT cloud with Esp32🔥 #arduinoiotcloud #esp32
2. Home automation using Arduino IoT cloud | controlling relay using Arduino IoT cloud #iot #iotproject
3. Soil moisture sensor with Arduino IoT cloud | IOT Smart Plant Monitoring System #iot #esp32
4. How to send sensor data from Arduino IoT cloud to Email | webhook & IFTTT with Arduino IoT cloud #iot
5. Sending sensor data to google sheet using Arduino IoT cloud | log sensor data in cloud #esp32 #iot
Comments
Post a Comment
If you any query please comment