Welcome to Kerala Project Center.
IV poles need to be set at the correct height for proper gravity-based fluid flow to the patient, and nursing staff currently check bag levels manually on a walk-by basis — easy to miss when a bag is quietly running low between rounds.
This project automates both sides of that problem: a motorized pole section lets staff adjust height precisely at the press of a button instead of manually sliding and clamping a pole, and a level sensor on the IV bag triggers a local buzzer/LED alert — with an optional remote notification — the moment fluid runs low, so a refill happens before the line runs dry rather than being caught late on a routine check.
// Simplified IV bag level monitoring - Arduino
int levelSensorPin = A0;
int buzzerPin = 8;
int ledPin = 9;
int lowThreshold = 200; // calibrate to sensor's empty-bag reading
void setup() {
pinMode(buzzerPin, OUTPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
int level = analogRead(levelSensorPin);
if (level < lowThreshold) {
digitalWrite(buzzerPin, HIGH);
digitalWrite(ledPin, HIGH);
Serial.println("IV bag low - refill needed");
// optional: sendGSMAlert("IV bag low - Bed 4");
} else {
digitalWrite(buzzerPin, LOW);
digitalWrite(ledPin, LOW);
}
delay(1000);
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080