Nadeem Ahmed
Published © CC BY-SA

Plant Moisture Monitoring

The Soil Moisture Sensor uses capacitance to measure dielectric permittivity of the surrounding medium.

BeginnerFull instructions provided2 hours1,235
Plant Moisture Monitoring

Things used in this project

Hardware components

ATtiny85
Microchip ATtiny85
×1
copper clad
×1
capacitor smd
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Modela Roland mdx-20

Story

Read more

Schematics

schmatic,trace and cutpart

This is the design files output from eagle.

Code

Code for my project

Arduino
#include <SoftwareSerial.h>
#define RxD 1
#define TxD 0

SoftwareSerial moistureSerial(RxD,TxD);

int sensor =0; 
void setup() {


moistureSerial.begin(9600);
}
void loop()

{
if(moistureSerial.available() ){

moistureSerial.println("Moisture Level");

sensor = analogRead(A2);
moistureSerial.println(sensor);
delay(1000);
}
}

Credits

Nadeem Ahmed

Nadeem Ahmed

6 projects • 14 followers
I love making new things

Comments