Welcome to Kerala Project Center.
Tilling farmland is one of the most labor-intensive agricultural operations when done manually, and full-size fuel-powered tractors are often impractical or too costly for small plots, kitchen gardens, or nurseries.
This project builds a lightweight, portable electric tiller: a battery-powered motor drives a rotating tine shaft through a gearbox, letting an operator till small plots by guiding the machine forward rather than pulling a manual hoe through the soil by hand. Being electric rather than fuel-powered keeps it lighter, quieter, and free of exhaust and routine fuel maintenance.
// Simplified tine motor speed control - Arduino
int throttlePin = A0; // potentiometer/throttle input
int motorPWMPin = 9;
void setup() {
pinMode(motorPWMPin, OUTPUT);
}
void loop() {
int throttleRaw = analogRead(throttlePin);
int pwmValue = map(throttleRaw, 0, 1023, 0, 255);
analogWrite(motorPWMPin, pwmValue); // tine rotation speed
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080