Metadata-Version: 1.1
Name: iorodeo-potentiostat
Version: 0.0.4
Summary: Serial interface to IO Rodeo Potentiostat
Home-page: https://github.com/iorodeo/potentiostat
Author: Will Dickson
Author-email: will@iorodeo.com
License: MIT
Description: 
        iorodeo-potentiostat
        ---------------------
        
        Python interface to IO Rodeo's Potentiostat Shield for the teensy 3.2 development 
        board.
        
        Example
        --------
        
        .. code:: python
        
            from potentiostat import Potentiostat
        
            dev = Potentiostat('/dev/ttyACM0')
            dev.set_curr_range('100uA')
            dev.set_sample_period(10)
            
            name = 'cyclic'
            param = {
                    'quietValue' : 0.0,
                    'quietTime'  : 1000,
                    'amplitude'  : 2.0,
                    'offset'     : 0.0,
                    'period'     : 1000,
                    'numCycles'  : 5,
                    'shift'      : 0.0,
                    }
            
            dev.set_param(name,param)
            t,volt,curr = dev.run_test(name,display='pbar')
        
        
        Install
        --------
        
        .. code:: bash
        
            $ pip install iorodeo-potentiostat
        
        
        Links
        -----
        
        * Documentation http://stuff.iorodeo.com/docs/potentiostat
        * Download https://github.com/iorodeo/potentiostat
        
        
Keywords: Serial interface for IO Rodeo Potentiostat
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
