Welcome to Kerala Project Center.
During hot weather, dehydration is a real concern — the body needs water, salt, and sugar (electrolytes) quickly, and a fresh lemon juice option gives a quick, appealing way to rehydrate on demand rather than relying on pre-bottled drinks.
This project builds an automatic vending machine that dispenses a measured portion of lemon juice — juice concentrate, water, and a salt/sugar mix — at the press of a button or coin insertion. Small dosing pumps run for pre-timed durations to mix a consistent drink each time, and a cup-presence sensor checks a cup is actually in place before dispensing starts.
// Simplified cup-check + pump dosing sequence - Arduino
int cupSensorPin = 2;
int juicePumpRelay = 5;
int waterPumpRelay = 6;
int saltSugarPumpRelay = 7;
void dispense() {
digitalWrite(juicePumpRelay, HIGH); delay(1500); digitalWrite(juicePumpRelay, LOW);
digitalWrite(waterPumpRelay, HIGH); delay(2000); digitalWrite(waterPumpRelay, LOW);
digitalWrite(saltSugarPumpRelay, HIGH); delay(500); digitalWrite(saltSugarPumpRelay, LOW);
}
void setup() {
pinMode(cupSensorPin, INPUT);
pinMode(juicePumpRelay, OUTPUT);
pinMode(waterPumpRelay, OUTPUT);
pinMode(saltSugarPumpRelay, OUTPUT);
}
void loop() {
if (digitalRead(cupSensorPin) == HIGH) { // cup detected
dispense();
delay(3000); // avoid re-triggering on the same cup
}
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080