A smart slipper system for monitoring elderly gait health and fall detection.
GOSPL is a full-stack health monitoring system that uses sensor-equipped slippers to track an elderly person's gait patterns. The system consists of two main components:
- Edge Application: Python-based application that runs locally to collect and process sensor data from smart slippers
- Web Application: Next.js dashboard for viewing gait data and receiving alerts
repository-root/ ├── edge-app/ # Python application for local sensor processing └── web-app/ # Next.js web dashboard - Python 3.8+
- Node.js 18+
- Supabase account (free tier)
- Smart slipper hardware with sensors
- Clone this repository
- Set up the edge application:
cd edge-app pip install -r requirements.txt - Set up the web application:
cd web-app npm install - Configure environment variables:
- Copy
.env.exampleto.env.localin web-app - Update Supabase credentials in both apps
- Copy
- Edge App:
python edge_app.py - Web App:
npm run dev
MIT License - See LICENSE file for details