Skip to content

This project implements a programmable insulin delivery system using an ESP32 microcontroller, providing precise dosing through a user-friendly interface. The system is designed to be portable, reliable, and easy to operate through a menu-driven OLED display.

Notifications You must be signed in to change notification settings

charan-271/insulin-pump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Arduino-based Insulin Pump

A microcontroller-based insulin delivery system designed to provide precise dosing through a user-friendly interface.

Overview

This project implements a programmable insulin pump using an ESP32 microcontroller, a stepper motor for precise insulin delivery, and an OLED display for user interaction. The system allows users to select insulin doses (5, 10, or 15 units) and perform actions like injection or reservoir refilling through an intuitive menu system.

Insulin Pump Insulin Pump 2

Hardware Components

  • ESP32 Microcontroller: Main processing unit
  • OLED Display (SSD1306): User interface (128x64 pixels)
  • Stepper Motor & Driver: Precise insulin delivery mechanism
  • Push Buttons (3): User input controls (Up, Down, Select)
  • Power Supply: Powering the system
  • 3D Printed Enclosure: Custom designed housing (STL files included)

Circuit Diagram

Circuit Diagram

Software Features

  • Menu-driven Interface: Easy navigation through dose options and functions
  • Precise Dosing Control: Calibrated stepper motor movements
  • Dual Operation Modes: Injection and refill capabilities
  • Debounce Protection: Prevents accidental button triggers

How It Works

Display and Menu System

The OLED display shows a navigable menu with two levels:

  1. Main Menu: Select insulin dose amount (5, 10, or 15 units)
  2. Sub-Menu: Choose action to perform (Inject, Refill, Back)

Button Controls

  • UP Button (GPIO 14): Navigate up through menu options
  • DOWN Button (GPIO 12): Navigate down through menu options
  • SELECT Button (GPIO 13): Confirm selection or enter sub-menu

Stepper Motor Control

The stepper motor provides precise control for insulin delivery:

  • Steps are calculated based on selected dose (dose * 200 steps)
  • Direction control allows for both injection and refill operations
  • Motor is enabled only during operation to conserve power

Code Structure

setup():
- Initialize buttons, display, and stepper motor
- Set initial display state

loop():
- Process button inputs with debounce protection
- Update menu navigation based on button presses
- Execute stepper motor actions based on selected options

Key Functions

  • drawMenu(): Renders the current menu state to the OLED display
  • moveStepper(steps): Controls the stepper motor for precise insulin delivery
  • Button handling logic in the main loop manages user interaction

Implementation Challenges

  1. Motor Calibration: Calibrating the stepper motor for accurate insulin doses required careful testing and adjustment of steps-per-unit ratios.

  2. User Interface Design: Creating an intuitive interface on a small OLED display while maintaining readability and ease of use.

  3. Button Debouncing: Implementing reliable button debouncing to prevent accidental double-presses during menu navigation.

  4. Power Management: Ensuring the stepper motor is only powered during operation to extend battery life.

  5. ESP32 Pin Selection: Finding non-conflicting GPIO pins that work with both the display (I²C) and the stepper driver.

Future Improvements

  • Battery level monitoring
  • Dose history logging
  • Bluetooth connectivity for mobile app control
  • Custom dose programming
  • Temperature monitoring for insulin stability

Installation and Setup

  1. Connect the hardware according to the circuit diagram
  2. Upload the code to your ESP32 using the Arduino IDE
  3. Ensure all libraries are installed:
    • Wire.h
    • Adafruit_GFX.h
    • Adafruit_SSD1306.h
    • AccelStepper.h

Required Libraries

3D Printable Files

The project includes STL files for 3D printing the custom enclosure:

  • ip_body.stl: Main body of the insulin pump enclosure
  • ip_lid.stl: Removable lid for easy access to internal components

Print these files using PLA or PETG with at least 20% infill for durability. The design allows for easy assembly and access to internal components for maintenance.

License

MIT License

Copyright (c) 2025

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

This project implements a programmable insulin delivery system using an ESP32 microcontroller, providing precise dosing through a user-friendly interface. The system is designed to be portable, reliable, and easy to operate through a menu-driven OLED display.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages