Metadata-Version: 1.2
Name: uci-cbp-demo
Version: 0.5.0
Summary: GUI to demo continuous blood pressure sensing
Home-page: https://github.com/taoyilee/bp_demo
Author: UCI cBP demo
Author-email: taoyil@uci.edu
License: MIT license
Description: ============
        UCI cBP demo
        ============
        
        
        .. image:: https://img.shields.io/pypi/v/uci_cbp_demo.svg
                :target: https://pypi.python.org/pypi/uci_cbp_demo
        
        .. image:: https://img.shields.io/travis/taoyilee/uci_cbp_demo.svg
                :target: https://travis-ci.com/taoyilee/uci_cbp_demo
        
        .. image:: https://readthedocs.org/projects/uci-cbp-demo/badge/?version=latest
                :target: https://uci-cbp-demo.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        
        
        GUI to demo continuous blood pressure sensing works on Linux, Windows, and MacOS X.
        This GUI requires custom firmware installed on `MbientLab Metamotion R device <https://mbientlab.com/metamotionr>`_, and a capacitor to digital converter
        from Analog Devices, `AD7746 <https://www.analog.com/media/en/technical-documentation/data-sheets/AD7745_7746.pdf>`_.
        
        Pull requests welcome! Please fork repository to begin with.
        
        
        * Free software: MIT license
        * Documentation: https://uci-bp-demo.readthedocs.io/en/latest/index.html.
        
        
        Quick Start
        -------------
        Following command assumes a Linux environment. For Windows and MacOSX setup, you may need to tweak the commands a
        little bit, according to your system setup.
        
        .. code-block:: console
        
            # setup virtual environment
            python -m venv venv
        
            # enter virtual environment
            source venv/bin/activate
        
            # install the latest code from PyPI
            pip install uci-cbp-demo
        
            # power up the hardware
        
            # start GUI with parameters a=1 b=0
            uci_cbp_demo gui -a 1 -b 0
        
        To list available CLI options, use
        
        .. code-block:: console
        
            uci_cbp_demo gui --help
            # Usage: uci_cbp_demo gui [OPTIONS]
            #
            # Options:
            # -a INTEGER  Scaling coefficient
            # -b INTEGER  Shifting in Y
            # --help      Show this message and exit.
        
        Troubleshooting
        ------------------
        1. If you run into issues saying
        
              Could not fetch URL https://pypi.python.org/ ... There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:645) - skipping
        
           Try follow steps described in `pypa repository <https://github.com/pypa/pip/issues/5236>`_
        
        .. code-block:: console
        
            curl https://bootstrap.pypa.io/get-pip.py | python
        
        MAC OS Notes
        ------------------
        1. OS X/macOS support via Core Bluetooth API, from at least version 10.11
        2. The macOS backend of Bleak is written with pyobjc directives for interfacing with Foundation and CoreBluetooth APIs. There are some values that pyobjc is not able to overwrite and thuse the corebleak framework was written to circumvent these issues. The most noticible difference between the other backends of bleak and this backend, is that CoreBluetooth doesn’t scan for other devices via MAC address. Instead, UUIDs are utilized that are often unique between the device that is scanning the the device that is being scanned.
        
        
        =======
        History
        =======
        
        0.1.0 (2020-02-17)
        ------------------
        
        * First release on PyPI.
        
        0.1.2 (2020-02-17)
        ------------------
        * Fix typo and restrict support to Python 3.8
        
        
        0.1.3 (2020-02-17)
        ------------------
        * Add device scanner and MacOSX support
        
        0.2 (2020-02-17)
        ------------------
        * Support 2 channel operation and new board
        
        0.5.0 (2020-04-19)
        --------------------
        * Supports waveform export
        * Allows searching for devices from GUI
        * GUI settings persistence
        
Keywords: uci_cbp_demo
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
