├── .eslintignore ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --feature-request--.md │ └── --individual-troubleshooting-help.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── bin ├── all-autosens-history.sh ├── bt-pan ├── create_symlinks.sh ├── get_profile.py ├── glucose-stats.awk ├── killall-g.sh ├── mm-format-ns-glucose.sh ├── mm-format-ns-profile.sh ├── mm-format-ns-pump-history.sh ├── mm-format-ns-treatments.sh ├── mm-format-oref0-glucose.sh ├── mm-stick.sh ├── monitor-xdrip.sh ├── nightscout.sh ├── ns-dedupe-treatments.sh ├── ns-delete-old-devicestatus.sh ├── ns-get.sh ├── ns-status.js ├── ns-upload-entries.sh ├── ns-upload.sh ├── openaps-bootstrap.sh ├── openaps-install.sh ├── openaps-packages.sh ├── openaps-src.sh ├── oref0-append-local-temptarget.sh ├── oref0-autosens-history.js ├── oref0-autosens-loop.sh ├── oref0-autotune-core.js ├── oref0-autotune-dayofweek.sh ├── oref0-autotune-export-to-xlsx.py ├── oref0-autotune-prep.js ├── oref0-autotune-recommends-report.sh ├── oref0-autotune.py ├── oref0-autotune.sh ├── oref0-backtest.sh ├── oref0-bash-common-functions.sh ├── oref0-bluetoothup.sh ├── oref0-calculate-glucose-noise.js ├── oref0-calculate-iob.js ├── oref0-conditional-run.sh ├── oref0-copy-fresher ├── oref0-cron-every-15min.sh ├── oref0-cron-every-minute.sh ├── oref0-cron-nightly.sh ├── oref0-cron-post-reboot.sh ├── oref0-delete-future-entries.sh ├── oref0-detect-sensitivity.js ├── oref0-determine-basal.js ├── oref0-dex-is-fresh.sh ├── oref0-dex-time-since.sh ├── oref0-dex-wait-until-expected.sh ├── oref0-find-insulin-uses.js ├── oref0-fix-git-corruption.sh ├── oref0-g4-loop.sh ├── oref0-get-bg.sh ├── oref0-get-ns-entries.js ├── oref0-get-profile.js ├── oref0-html.js ├── oref0-ifttt-notify ├── oref0-log-shortcuts.sh ├── oref0-mdt-update.sh ├── oref0-meal.js ├── oref0-mmtune.sh ├── oref0-monitor-cgm.sh ├── oref0-mraa-install.sh ├── oref0-normalize-temps.js ├── oref0-ns-loop.sh ├── oref0-online.sh ├── oref0-pebble.js ├── oref0-pump-loop.sh ├── oref0-pushover.sh ├── oref0-radio-reboot.sh ├── oref0-raw.js ├── oref0-reset-git.sh ├── oref0-reset-usb.sh ├── oref0-set-device-clocks.sh ├── oref0-set-local-temptarget.js ├── oref0-set-system-clock.sh ├── oref0-setup.sh ├── oref0-shared-node-loop.sh ├── oref0-shared-node-utils.js ├── oref0-shared-node.js ├── oref0-simulator.sh ├── oref0-tail-log.sh ├── oref0-tail-wifi.sh ├── oref0-truncate-git-history.sh ├── oref0-upgrade.sh ├── oref0-upload-entries.sh ├── oref0-upload-profile.js ├── oref0-version.sh ├── oref0.sh ├── oref0_autotune_export_to_xlsx.py ├── oref0_nightscout_check.py └── peb-urchin-status.sh ├── examples ├── autosens.json ├── basal_profile.json ├── carbhistory.json ├── clock.json ├── example.sh ├── glucose.json ├── iob.json ├── meal.json ├── profile.json ├── pumphistory.json ├── settings │ └── pumpprofile.json ├── suggested.json └── temp_basal.json ├── headless ├── dnsmasq.conf ├── headless.sh ├── hostapd.conf ├── install.sh ├── interfaces.ap └── interfaces.client ├── lib ├── autotune-prep │ ├── categorize.js │ ├── dosed.js │ └── index.js ├── autotune │ └── index.js ├── basal-set-temp.js ├── bolus.js ├── calc-glucose-stats.js ├── determine-basal │ ├── autosens.js │ ├── cob.js │ └── determine-basal.js ├── glucose-get-last.js ├── glucose-stats.js ├── iob │ ├── calculate.js │ ├── history.js │ ├── index.js │ └── total.js ├── meal │ ├── history.js │ ├── index.js │ └── total.js ├── medtronic-clock.js ├── oref0-setup │ ├── alias.json │ ├── autotune.json │ ├── basal_profile.json │ ├── bg_targets_raw.json │ ├── cgm-loop.json │ ├── device.json │ ├── dexcom.json │ ├── edisonbattery.json │ ├── mdt-cgm.json │ ├── pancreabble.json │ ├── pancreoptions.json │ ├── report.json │ ├── settings.json │ ├── shareble.json │ ├── supermicrobolus.json │ ├── vendor.json │ └── xdrip-cgm.json ├── percentile.js ├── profile │ ├── basal.js │ ├── carbs.js │ ├── index.js │ ├── isf.js │ └── targets.js ├── pump.js ├── require-utils.js ├── round-basal.js ├── temps.js └── with-raw-glucose.js ├── logrotate.openaps ├── logrotate.rsyslog ├── package.json ├── release-master.sh ├── requirements.txt ├── tests ├── basal.test.js ├── bash-util-functions.test.sh ├── bolus.test.js ├── check-syntax.test.js ├── cobhistory.test.js ├── command-behavior.tests.sh ├── determine-basal.test.js ├── get-last-glucose.test.js ├── glucose-noise.js ├── iob.test.js ├── json-wf.sh ├── profile.test.js ├── set-temp-basal.test.js ├── tests-in-shell.test.js └── with-raw-glucose.test.js └── www ├── app.py ├── regenerate-index.sh ├── setup-http.sh ├── static ├── css │ ├── bootstrap.min.css │ └── style.css └── js │ ├── bootstrap.min.js │ ├── chart.js │ ├── direction.js │ ├── jquery.min.js │ └── utils.js └── templates ├── index.html └── indexError.html /.eslintignore: -------------------------------------------------------------------------------- 1 | /tests 2 | /www -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.github/ISSUE_TEMPLATE/--feature-request--.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--individual-troubleshooting-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.github/ISSUE_TEMPLATE/--individual-troubleshooting-help.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/README.md -------------------------------------------------------------------------------- /bin/all-autosens-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/all-autosens-history.sh -------------------------------------------------------------------------------- /bin/bt-pan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/bt-pan -------------------------------------------------------------------------------- /bin/create_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/create_symlinks.sh -------------------------------------------------------------------------------- /bin/get_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/get_profile.py -------------------------------------------------------------------------------- /bin/glucose-stats.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/glucose-stats.awk -------------------------------------------------------------------------------- /bin/killall-g.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/killall-g.sh -------------------------------------------------------------------------------- /bin/mm-format-ns-glucose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-format-ns-glucose.sh -------------------------------------------------------------------------------- /bin/mm-format-ns-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-format-ns-profile.sh -------------------------------------------------------------------------------- /bin/mm-format-ns-pump-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-format-ns-pump-history.sh -------------------------------------------------------------------------------- /bin/mm-format-ns-treatments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-format-ns-treatments.sh -------------------------------------------------------------------------------- /bin/mm-format-oref0-glucose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-format-oref0-glucose.sh -------------------------------------------------------------------------------- /bin/mm-stick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/mm-stick.sh -------------------------------------------------------------------------------- /bin/monitor-xdrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/monitor-xdrip.sh -------------------------------------------------------------------------------- /bin/nightscout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/nightscout.sh -------------------------------------------------------------------------------- /bin/ns-dedupe-treatments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-dedupe-treatments.sh -------------------------------------------------------------------------------- /bin/ns-delete-old-devicestatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-delete-old-devicestatus.sh -------------------------------------------------------------------------------- /bin/ns-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-get.sh -------------------------------------------------------------------------------- /bin/ns-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-status.js -------------------------------------------------------------------------------- /bin/ns-upload-entries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-upload-entries.sh -------------------------------------------------------------------------------- /bin/ns-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/ns-upload.sh -------------------------------------------------------------------------------- /bin/openaps-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/openaps-bootstrap.sh -------------------------------------------------------------------------------- /bin/openaps-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/openaps-install.sh -------------------------------------------------------------------------------- /bin/openaps-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/openaps-packages.sh -------------------------------------------------------------------------------- /bin/openaps-src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/openaps-src.sh -------------------------------------------------------------------------------- /bin/oref0-append-local-temptarget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-append-local-temptarget.sh -------------------------------------------------------------------------------- /bin/oref0-autosens-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autosens-history.js -------------------------------------------------------------------------------- /bin/oref0-autosens-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autosens-loop.sh -------------------------------------------------------------------------------- /bin/oref0-autotune-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune-core.js -------------------------------------------------------------------------------- /bin/oref0-autotune-dayofweek.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune-dayofweek.sh -------------------------------------------------------------------------------- /bin/oref0-autotune-export-to-xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune-export-to-xlsx.py -------------------------------------------------------------------------------- /bin/oref0-autotune-prep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune-prep.js -------------------------------------------------------------------------------- /bin/oref0-autotune-recommends-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune-recommends-report.sh -------------------------------------------------------------------------------- /bin/oref0-autotune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune.py -------------------------------------------------------------------------------- /bin/oref0-autotune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-autotune.sh -------------------------------------------------------------------------------- /bin/oref0-backtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-backtest.sh -------------------------------------------------------------------------------- /bin/oref0-bash-common-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-bash-common-functions.sh -------------------------------------------------------------------------------- /bin/oref0-bluetoothup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-bluetoothup.sh -------------------------------------------------------------------------------- /bin/oref0-calculate-glucose-noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-calculate-glucose-noise.js -------------------------------------------------------------------------------- /bin/oref0-calculate-iob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-calculate-iob.js -------------------------------------------------------------------------------- /bin/oref0-conditional-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-conditional-run.sh -------------------------------------------------------------------------------- /bin/oref0-copy-fresher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-copy-fresher -------------------------------------------------------------------------------- /bin/oref0-cron-every-15min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-cron-every-15min.sh -------------------------------------------------------------------------------- /bin/oref0-cron-every-minute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-cron-every-minute.sh -------------------------------------------------------------------------------- /bin/oref0-cron-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-cron-nightly.sh -------------------------------------------------------------------------------- /bin/oref0-cron-post-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-cron-post-reboot.sh -------------------------------------------------------------------------------- /bin/oref0-delete-future-entries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-delete-future-entries.sh -------------------------------------------------------------------------------- /bin/oref0-detect-sensitivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-detect-sensitivity.js -------------------------------------------------------------------------------- /bin/oref0-determine-basal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-determine-basal.js -------------------------------------------------------------------------------- /bin/oref0-dex-is-fresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-dex-is-fresh.sh -------------------------------------------------------------------------------- /bin/oref0-dex-time-since.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-dex-time-since.sh -------------------------------------------------------------------------------- /bin/oref0-dex-wait-until-expected.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-dex-wait-until-expected.sh -------------------------------------------------------------------------------- /bin/oref0-find-insulin-uses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-find-insulin-uses.js -------------------------------------------------------------------------------- /bin/oref0-fix-git-corruption.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-fix-git-corruption.sh -------------------------------------------------------------------------------- /bin/oref0-g4-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-g4-loop.sh -------------------------------------------------------------------------------- /bin/oref0-get-bg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-get-bg.sh -------------------------------------------------------------------------------- /bin/oref0-get-ns-entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-get-ns-entries.js -------------------------------------------------------------------------------- /bin/oref0-get-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-get-profile.js -------------------------------------------------------------------------------- /bin/oref0-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-html.js -------------------------------------------------------------------------------- /bin/oref0-ifttt-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-ifttt-notify -------------------------------------------------------------------------------- /bin/oref0-log-shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-log-shortcuts.sh -------------------------------------------------------------------------------- /bin/oref0-mdt-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-mdt-update.sh -------------------------------------------------------------------------------- /bin/oref0-meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-meal.js -------------------------------------------------------------------------------- /bin/oref0-mmtune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-mmtune.sh -------------------------------------------------------------------------------- /bin/oref0-monitor-cgm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-monitor-cgm.sh -------------------------------------------------------------------------------- /bin/oref0-mraa-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-mraa-install.sh -------------------------------------------------------------------------------- /bin/oref0-normalize-temps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-normalize-temps.js -------------------------------------------------------------------------------- /bin/oref0-ns-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-ns-loop.sh -------------------------------------------------------------------------------- /bin/oref0-online.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-online.sh -------------------------------------------------------------------------------- /bin/oref0-pebble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-pebble.js -------------------------------------------------------------------------------- /bin/oref0-pump-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-pump-loop.sh -------------------------------------------------------------------------------- /bin/oref0-pushover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-pushover.sh -------------------------------------------------------------------------------- /bin/oref0-radio-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-radio-reboot.sh -------------------------------------------------------------------------------- /bin/oref0-raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-raw.js -------------------------------------------------------------------------------- /bin/oref0-reset-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-reset-git.sh -------------------------------------------------------------------------------- /bin/oref0-reset-usb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-reset-usb.sh -------------------------------------------------------------------------------- /bin/oref0-set-device-clocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-set-device-clocks.sh -------------------------------------------------------------------------------- /bin/oref0-set-local-temptarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-set-local-temptarget.js -------------------------------------------------------------------------------- /bin/oref0-set-system-clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-set-system-clock.sh -------------------------------------------------------------------------------- /bin/oref0-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-setup.sh -------------------------------------------------------------------------------- /bin/oref0-shared-node-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-shared-node-loop.sh -------------------------------------------------------------------------------- /bin/oref0-shared-node-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-shared-node-utils.js -------------------------------------------------------------------------------- /bin/oref0-shared-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-shared-node.js -------------------------------------------------------------------------------- /bin/oref0-simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-simulator.sh -------------------------------------------------------------------------------- /bin/oref0-tail-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-tail-log.sh -------------------------------------------------------------------------------- /bin/oref0-tail-wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-tail-wifi.sh -------------------------------------------------------------------------------- /bin/oref0-truncate-git-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-truncate-git-history.sh -------------------------------------------------------------------------------- /bin/oref0-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-upgrade.sh -------------------------------------------------------------------------------- /bin/oref0-upload-entries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-upload-entries.sh -------------------------------------------------------------------------------- /bin/oref0-upload-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-upload-profile.js -------------------------------------------------------------------------------- /bin/oref0-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0-version.sh -------------------------------------------------------------------------------- /bin/oref0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0.sh -------------------------------------------------------------------------------- /bin/oref0_autotune_export_to_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0_autotune_export_to_xlsx.py -------------------------------------------------------------------------------- /bin/oref0_nightscout_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/oref0_nightscout_check.py -------------------------------------------------------------------------------- /bin/peb-urchin-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/bin/peb-urchin-status.sh -------------------------------------------------------------------------------- /examples/autosens.json: -------------------------------------------------------------------------------- 1 | {"ratio":1.0} 2 | -------------------------------------------------------------------------------- /examples/basal_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/basal_profile.json -------------------------------------------------------------------------------- /examples/carbhistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/carbhistory.json -------------------------------------------------------------------------------- /examples/clock.json: -------------------------------------------------------------------------------- 1 | "2018-06-02T00:30:00-07:00" 2 | -------------------------------------------------------------------------------- /examples/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/example.sh -------------------------------------------------------------------------------- /examples/glucose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/glucose.json -------------------------------------------------------------------------------- /examples/iob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/iob.json -------------------------------------------------------------------------------- /examples/meal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/meal.json -------------------------------------------------------------------------------- /examples/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/profile.json -------------------------------------------------------------------------------- /examples/pumphistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/pumphistory.json -------------------------------------------------------------------------------- /examples/settings/pumpprofile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/settings/pumpprofile.json -------------------------------------------------------------------------------- /examples/suggested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/suggested.json -------------------------------------------------------------------------------- /examples/temp_basal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/examples/temp_basal.json -------------------------------------------------------------------------------- /headless/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/dnsmasq.conf -------------------------------------------------------------------------------- /headless/headless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/headless.sh -------------------------------------------------------------------------------- /headless/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/hostapd.conf -------------------------------------------------------------------------------- /headless/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/install.sh -------------------------------------------------------------------------------- /headless/interfaces.ap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/interfaces.ap -------------------------------------------------------------------------------- /headless/interfaces.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/headless/interfaces.client -------------------------------------------------------------------------------- /lib/autotune-prep/categorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/autotune-prep/categorize.js -------------------------------------------------------------------------------- /lib/autotune-prep/dosed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/autotune-prep/dosed.js -------------------------------------------------------------------------------- /lib/autotune-prep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/autotune-prep/index.js -------------------------------------------------------------------------------- /lib/autotune/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/autotune/index.js -------------------------------------------------------------------------------- /lib/basal-set-temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/basal-set-temp.js -------------------------------------------------------------------------------- /lib/bolus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/bolus.js -------------------------------------------------------------------------------- /lib/calc-glucose-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/calc-glucose-stats.js -------------------------------------------------------------------------------- /lib/determine-basal/autosens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/determine-basal/autosens.js -------------------------------------------------------------------------------- /lib/determine-basal/cob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/determine-basal/cob.js -------------------------------------------------------------------------------- /lib/determine-basal/determine-basal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/determine-basal/determine-basal.js -------------------------------------------------------------------------------- /lib/glucose-get-last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/glucose-get-last.js -------------------------------------------------------------------------------- /lib/glucose-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/glucose-stats.js -------------------------------------------------------------------------------- /lib/iob/calculate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/iob/calculate.js -------------------------------------------------------------------------------- /lib/iob/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/iob/history.js -------------------------------------------------------------------------------- /lib/iob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/iob/index.js -------------------------------------------------------------------------------- /lib/iob/total.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/iob/total.js -------------------------------------------------------------------------------- /lib/meal/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/meal/history.js -------------------------------------------------------------------------------- /lib/meal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/meal/index.js -------------------------------------------------------------------------------- /lib/meal/total.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/meal/total.js -------------------------------------------------------------------------------- /lib/medtronic-clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/medtronic-clock.js -------------------------------------------------------------------------------- /lib/oref0-setup/alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/alias.json -------------------------------------------------------------------------------- /lib/oref0-setup/autotune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/autotune.json -------------------------------------------------------------------------------- /lib/oref0-setup/basal_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/basal_profile.json -------------------------------------------------------------------------------- /lib/oref0-setup/bg_targets_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/bg_targets_raw.json -------------------------------------------------------------------------------- /lib/oref0-setup/cgm-loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/cgm-loop.json -------------------------------------------------------------------------------- /lib/oref0-setup/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/device.json -------------------------------------------------------------------------------- /lib/oref0-setup/dexcom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/dexcom.json -------------------------------------------------------------------------------- /lib/oref0-setup/edisonbattery.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /lib/oref0-setup/mdt-cgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/mdt-cgm.json -------------------------------------------------------------------------------- /lib/oref0-setup/pancreabble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/pancreabble.json -------------------------------------------------------------------------------- /lib/oref0-setup/pancreoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/pancreoptions.json -------------------------------------------------------------------------------- /lib/oref0-setup/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/report.json -------------------------------------------------------------------------------- /lib/oref0-setup/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/settings.json -------------------------------------------------------------------------------- /lib/oref0-setup/shareble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/shareble.json -------------------------------------------------------------------------------- /lib/oref0-setup/supermicrobolus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/supermicrobolus.json -------------------------------------------------------------------------------- /lib/oref0-setup/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/vendor.json -------------------------------------------------------------------------------- /lib/oref0-setup/xdrip-cgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/oref0-setup/xdrip-cgm.json -------------------------------------------------------------------------------- /lib/percentile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/percentile.js -------------------------------------------------------------------------------- /lib/profile/basal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/profile/basal.js -------------------------------------------------------------------------------- /lib/profile/carbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/profile/carbs.js -------------------------------------------------------------------------------- /lib/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/profile/index.js -------------------------------------------------------------------------------- /lib/profile/isf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/profile/isf.js -------------------------------------------------------------------------------- /lib/profile/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/profile/targets.js -------------------------------------------------------------------------------- /lib/pump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/pump.js -------------------------------------------------------------------------------- /lib/require-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/require-utils.js -------------------------------------------------------------------------------- /lib/round-basal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/round-basal.js -------------------------------------------------------------------------------- /lib/temps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/temps.js -------------------------------------------------------------------------------- /lib/with-raw-glucose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/lib/with-raw-glucose.js -------------------------------------------------------------------------------- /logrotate.openaps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/logrotate.openaps -------------------------------------------------------------------------------- /logrotate.rsyslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/logrotate.rsyslog -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/package.json -------------------------------------------------------------------------------- /release-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/release-master.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/basal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/basal.test.js -------------------------------------------------------------------------------- /tests/bash-util-functions.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/bash-util-functions.test.sh -------------------------------------------------------------------------------- /tests/bolus.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/bolus.test.js -------------------------------------------------------------------------------- /tests/check-syntax.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/check-syntax.test.js -------------------------------------------------------------------------------- /tests/cobhistory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/cobhistory.test.js -------------------------------------------------------------------------------- /tests/command-behavior.tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/command-behavior.tests.sh -------------------------------------------------------------------------------- /tests/determine-basal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/determine-basal.test.js -------------------------------------------------------------------------------- /tests/get-last-glucose.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/get-last-glucose.test.js -------------------------------------------------------------------------------- /tests/glucose-noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/glucose-noise.js -------------------------------------------------------------------------------- /tests/iob.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/iob.test.js -------------------------------------------------------------------------------- /tests/json-wf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/json-wf.sh -------------------------------------------------------------------------------- /tests/profile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/profile.test.js -------------------------------------------------------------------------------- /tests/set-temp-basal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/set-temp-basal.test.js -------------------------------------------------------------------------------- /tests/tests-in-shell.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/tests-in-shell.test.js -------------------------------------------------------------------------------- /tests/with-raw-glucose.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/tests/with-raw-glucose.test.js -------------------------------------------------------------------------------- /www/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/app.py -------------------------------------------------------------------------------- /www/regenerate-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/regenerate-index.sh -------------------------------------------------------------------------------- /www/setup-http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/setup-http.sh -------------------------------------------------------------------------------- /www/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /www/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/css/style.css -------------------------------------------------------------------------------- /www/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /www/static/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/js/chart.js -------------------------------------------------------------------------------- /www/static/js/direction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/js/direction.js -------------------------------------------------------------------------------- /www/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/js/jquery.min.js -------------------------------------------------------------------------------- /www/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/static/js/utils.js -------------------------------------------------------------------------------- /www/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/templates/index.html -------------------------------------------------------------------------------- /www/templates/indexError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/oref0/HEAD/www/templates/indexError.html --------------------------------------------------------------------------------