Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Kommanaboyina Sravanihemasri dasariBala Bhargavi TirumaniNiharika Roshini
Published © GPL3+

Automatic Tectum and Aqua Rehash System; (SVECW)

Ozone to the Earth, Automatic tectum and aqua rehash system to the fields.

IntermediateFull instructions provided24 hours7,864
Automatic Tectum and Aqua Rehash System; (SVECW)

Things used in this project

Hardware components

MSPEXP430FR2355
Value line microcontroller
×1
hdc1080evm
humidity and temperature sensor
×1
12v dc motor
To rotate the roof
×2
Dual H-Bridge motor drivers L293D
Texas Instruments Dual H-Bridge motor drivers L293D
×1
12v water pumping motor
×1

Software apps and online services

Code Composer Studio
Texas Instruments Code Composer Studio

Hand tools and fabrication machines

roof

Story

Read more

Custom parts and enclosures

screenshot_(27)_TiKfLkIYgL.png

Schematics

atars_ETZZNijzcV.png

Code

Untitled file

Arduino
const int S = A3;
const int cl= A2;
const int LED = 13;
const int motorpin1= 8;
const int motorpin2= 7;
int temp;
void setup() {
  // put your setup code here, to run once:

 pinMode(motorpin1,OUTPUT);
 pinMode(motorpin2,OUTPUT);
 pinMode(LED,OUTPUT);
 pinMode(S,INPUT);
 pinMode(cl,INPUT);
  Serial.begin(9600);
}

void loop() {
  // put your main code here, to run repeatedly:
temp=analogRead(S);
Serial.print("\nanalog read value  ");
Serial.print(temp);
Serial.print(" ");
 if(temp<400)
 {
  Serial.print("wet");
  digitalWrite(LED,LOW);
  digitalWrite(motorpin1,HIGH);
  digitalWrite(motorpin2,HIGH);
 }
  else
  {
    Serial.println("dry");
      digitalWrite(LED,HIGH);
    digitalWrite(motorpin1,LOW);
     digitalWrite(motorpin2,HIGH);
    
    }
    delay(1000);
  }

Credits

Kommanaboyina Sravani
1 project • 9 followers
Student at Shri Vishnu engineering college for women (Autonomous)
Contact
hemasri dasari
1 project • 6 followers
Contact
Bala Bhargavi Tirumani
1 project • 6 followers
Contact
Niharika Roshini
1 project • 8 followers
Contact

Comments

Please log in or sign up to comment.