ahmedFarouk2020 / ICU-realtime-monitoring

Realtime monitoring for icu patients

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ICU-realtime-monitoring

Realtime monitoring for ICU patients

APIs

  1. To add a sensor reading to database of a specific sensor via sensor ID
http://localhost:8080/add-sensor-reading?id=<sensor_id>&value=<value>&rate=<sending_rate>
  1. To get a single reading for a specific sensor (last uploaded reading)
http://localhost:8080/get-sensor-reading?id=<sensor_id>
  1. To get the whole stored data for a sensor
http://localhost:8080/get-sensor-all-data?id=<sensor_id>
  1. To get the content of all table's data
http://localhost:8080/get-table?tname=<table_name>
  1. To put a patient in a high priority position via patient id
http://localhost:8080/set-emergency-call?id=<patient_id>
  1. To remove a patient from emergency status
http://localhost:8080/end-emergency-call?id=<patient_id>
  1. To know which patient in the emergency status
http://localhost:8080/get-emergency-status
  1. To get the rate of sending data for a patient
http://localhost:8080/get-patient-rate?id=<patient_id>

About

Realtime monitoring for icu patients

License:MIT License


Languages

Language:Dart 74.2%Language:Python 25.8%