├── .gitignore ├── FAQ.md ├── LICENSE.md ├── README.md ├── _config.yml ├── docs ├── CNAME ├── Gemfile ├── _config.yml ├── _data │ └── navigation.yml ├── _includes │ ├── disqus.html │ ├── facebook.html │ ├── footer.html │ ├── google-analytics.html │ ├── head.html │ ├── jumbotron.html │ ├── navigation.html │ └── twitter.html ├── _layouts │ ├── default.html │ ├── full.html │ └── page.html ├── ads1292r.pdf ├── advanced-healthypi.md ├── afe4490.pdf ├── assets │ ├── css │ │ ├── docs.css │ │ └── styles.scss │ └── js │ │ └── docs.min.js ├── firmware-upgrades.md ├── images │ ├── .DS_Store │ ├── arduino-open-healthypi.jpg │ ├── arduino-upload.png │ ├── connecting electrodes.png │ ├── ecg cable connection.jpg │ ├── hpi-3-top.jpg │ ├── hpi3-connect-ecg.jpg │ ├── hpi3-screen.jpg │ ├── hpi3-tcp-screen.gif │ ├── hpi3-temperature.jpg │ ├── hpi3-with-display.jpg │ └── terminal.jpg ├── index.md └── jekyll-docs-theme.gemspec ├── firmware ├── .DS_Store ├── healthypi3_streaming │ ├── ads1292r.h │ ├── healthypi3_streaming.ino │ └── max30205.h └── healthypi3_text_only │ ├── ads1292r.h │ ├── healthypi3_text_only.ino │ └── max30205.h ├── git ├── gui ├── .DS_Store ├── healthypi3_gui │ ├── .DS_Store │ ├── code │ │ └── sketch.properties │ ├── data │ │ ├── .DS_Store │ │ └── protocentral.png │ └── healthypi3_gui.pde └── healthypi3_gui_tcp │ ├── data │ ├── Fit Patch Assly Organic Covers - 33.stl │ └── protocentral.png │ └── healthypi3_gui_tcp.pde └── hardware ├── .DS_Store ├── pc_rpi_healthypi_v3.brd ├── pc_rpi_healthypi_v3.pdf ├── pc_rpi_healthypi_v3.sch └── pc_rpi_healthypi_v3_max30205_temp ├── pc_rpimax30205_brk.brd └── pc_rpimax30205_brk.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/.gitignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | healthypi3.protocentral.com -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_data/navigation.yml -------------------------------------------------------------------------------- /docs/_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/disqus.html -------------------------------------------------------------------------------- /docs/_includes/facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/facebook.html -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/google-analytics.html -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/jumbotron.html -------------------------------------------------------------------------------- /docs/_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/navigation.html -------------------------------------------------------------------------------- /docs/_includes/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_includes/twitter.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_layouts/full.html -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/_layouts/page.html -------------------------------------------------------------------------------- /docs/ads1292r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/ads1292r.pdf -------------------------------------------------------------------------------- /docs/advanced-healthypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/advanced-healthypi.md -------------------------------------------------------------------------------- /docs/afe4490.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/afe4490.pdf -------------------------------------------------------------------------------- /docs/assets/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/assets/css/docs.css -------------------------------------------------------------------------------- /docs/assets/css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/assets/css/styles.scss -------------------------------------------------------------------------------- /docs/assets/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/assets/js/docs.min.js -------------------------------------------------------------------------------- /docs/firmware-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/firmware-upgrades.md -------------------------------------------------------------------------------- /docs/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/.DS_Store -------------------------------------------------------------------------------- /docs/images/arduino-open-healthypi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/arduino-open-healthypi.jpg -------------------------------------------------------------------------------- /docs/images/arduino-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/arduino-upload.png -------------------------------------------------------------------------------- /docs/images/connecting electrodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/connecting electrodes.png -------------------------------------------------------------------------------- /docs/images/ecg cable connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/ecg cable connection.jpg -------------------------------------------------------------------------------- /docs/images/hpi-3-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi-3-top.jpg -------------------------------------------------------------------------------- /docs/images/hpi3-connect-ecg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi3-connect-ecg.jpg -------------------------------------------------------------------------------- /docs/images/hpi3-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi3-screen.jpg -------------------------------------------------------------------------------- /docs/images/hpi3-tcp-screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi3-tcp-screen.gif -------------------------------------------------------------------------------- /docs/images/hpi3-temperature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi3-temperature.jpg -------------------------------------------------------------------------------- /docs/images/hpi3-with-display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/hpi3-with-display.jpg -------------------------------------------------------------------------------- /docs/images/terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/images/terminal.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/jekyll-docs-theme.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/docs/jekyll-docs-theme.gemspec -------------------------------------------------------------------------------- /firmware/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/.DS_Store -------------------------------------------------------------------------------- /firmware/healthypi3_streaming/ads1292r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_streaming/ads1292r.h -------------------------------------------------------------------------------- /firmware/healthypi3_streaming/healthypi3_streaming.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_streaming/healthypi3_streaming.ino -------------------------------------------------------------------------------- /firmware/healthypi3_streaming/max30205.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_streaming/max30205.h -------------------------------------------------------------------------------- /firmware/healthypi3_text_only/ads1292r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_text_only/ads1292r.h -------------------------------------------------------------------------------- /firmware/healthypi3_text_only/healthypi3_text_only.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_text_only/healthypi3_text_only.ino -------------------------------------------------------------------------------- /firmware/healthypi3_text_only/max30205.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/firmware/healthypi3_text_only/max30205.h -------------------------------------------------------------------------------- /git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/.DS_Store -------------------------------------------------------------------------------- /gui/healthypi3_gui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui/.DS_Store -------------------------------------------------------------------------------- /gui/healthypi3_gui/code/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui/code/sketch.properties -------------------------------------------------------------------------------- /gui/healthypi3_gui/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui/data/.DS_Store -------------------------------------------------------------------------------- /gui/healthypi3_gui/data/protocentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui/data/protocentral.png -------------------------------------------------------------------------------- /gui/healthypi3_gui/healthypi3_gui.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui/healthypi3_gui.pde -------------------------------------------------------------------------------- /gui/healthypi3_gui_tcp/data/Fit Patch Assly Organic Covers - 33.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui_tcp/data/Fit Patch Assly Organic Covers - 33.stl -------------------------------------------------------------------------------- /gui/healthypi3_gui_tcp/data/protocentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui_tcp/data/protocentral.png -------------------------------------------------------------------------------- /gui/healthypi3_gui_tcp/healthypi3_gui_tcp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/gui/healthypi3_gui_tcp/healthypi3_gui_tcp.pde -------------------------------------------------------------------------------- /hardware/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/.DS_Store -------------------------------------------------------------------------------- /hardware/pc_rpi_healthypi_v3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/pc_rpi_healthypi_v3.brd -------------------------------------------------------------------------------- /hardware/pc_rpi_healthypi_v3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/pc_rpi_healthypi_v3.pdf -------------------------------------------------------------------------------- /hardware/pc_rpi_healthypi_v3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/pc_rpi_healthypi_v3.sch -------------------------------------------------------------------------------- /hardware/pc_rpi_healthypi_v3_max30205_temp/pc_rpimax30205_brk.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/pc_rpi_healthypi_v3_max30205_temp/pc_rpimax30205_brk.brd -------------------------------------------------------------------------------- /hardware/pc_rpi_healthypi_v3_max30205_temp/pc_rpimax30205_brk.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/protocentral-healthypi-v3/HEAD/hardware/pc_rpi_healthypi_v3_max30205_temp/pc_rpimax30205_brk.sch --------------------------------------------------------------------------------