❤️
eHealth365
Health Monitoring System
Continuous health monitoring platform with smart ring and smart patch wearables. Heart rate, SpO2, glucose, activity tracking with AI health scoring.
Hardware ProductsC/C++, KiCadDevelopment
Key Features
Smart Ring — HR, HRV, SpO2, temperature, activity
Smart Patch — Continuous glucose, sweat analysis
AI Health Scoring — eAI-powered risk assessment
BLE 5.0 — eApps companion connectivity
eDB Time-Series — 30+ day local storage
7-Day Battery — Ultra-low power design
Medical Grade Sensors — AFE4900, MAX30102
Architecture
eApps Companion (Mobile Dashboard) ├── BLE 5.0 Communication ├── AI Health Scoring (eAI) ├── Sensor Fusion (PPG, IMU, Temperature) ├── eos RTOS + eBoot Secure Boot └── Hardware (Smart Ring PCB, Smart Patch PCB)
Code Example
c
#include <ehealth365/sensors.h>
#include <eai/eai.h>
#include <edb/edb.h>
ehealth_sensor_init(SENSOR_PPG | SENSOR_IMU | SENSOR_TEMP);
ehealth_vitals_t vitals;
ehealth_read_vitals(&vitals);
eai_tensor_t input = vitals_to_tensor(&vitals);
eai_tensor_t score;
eai_infer(health_model, &input, &score);
edb_ts_append(ts_heartrate, now(), &vitals.hr);
edb_ts_append(ts_spo2, now(), &vitals.spo2);API Highlights
| Function | Description |
|---|---|
ehealth_sensor_init() | Initialize health sensors |
ehealth_read_vitals() | Read current vital signs |
ehealth_get_score() | AI health risk score |
ehealth_sync_ble() | Sync data to eApps via BLE |