Welcome to Kerala Project Center.
Cutting harvested sugarcane into uniform seed buds for replanting is one of the more time-consuming steps in sugarcane farming when done by hand, with cutting length varying from worker to worker and slowing down large-scale preparation.
This project automates the process with a motorized roller feeder that pulls the cane stalk through at a controlled, consistent speed, paired with an adjustable blade assembly that cuts the stalk into uniform-length bud segments as it passes. Bud length is set by the blade position or feed-cut timing, so output stays consistent across a whole batch without relying on manual judgement for each cut.
// Simplified feed roller + cutter timing cycle - Arduino
int feedMotorRelay = 6;
int cutterMotorRelay = 7;
int feedDurationMs = 800; // tuned to give desired bud length at feed speed
int cutDurationMs = 300;
void setup() {
pinMode(feedMotorRelay, OUTPUT);
pinMode(cutterMotorRelay, OUTPUT);
}
void loop() {
digitalWrite(feedMotorRelay, HIGH); // feed stalk forward
delay(feedDurationMs);
digitalWrite(feedMotorRelay, LOW);
digitalWrite(cutterMotorRelay, HIGH); // cut
delay(cutDurationMs);
digitalWrite(cutterMotorRelay, LOW);
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080