Metadata-Version: 1.0
Name: pydmm
Version: 0.4.6
Summary: Read data from a digital multimeter
Home-page: http://pypi.python.org/pypi/pydmm
Author: Michael Weigend
Author-email: mw@creative-informatics.de
License: MIT-License
Description: =================================
        Python Digital Multimeter (PyDMM)
        =================================
        
        **PyDMM** facilitates reading data from a digital multimeter (DMM). 
        It works for example with *HP-90EPC*.
        Typical usage looks like this::
        
            import pydmm.pydmm as pd
        
            try:
                number = pd.read_dmm(port=myport, timeout=3)
                print(number)
            except:
                print("Error")
        
        Preparations
        ------------
        - install pyserial
        - install pydmm (this module)
        - connect the DMM to the usb-port of your computer 
        - find out, which COM-port the device uses
        - use the port number *myport* (COM3 has number 2) when calling read_dmm()
        
Keywords: dmm,digital multimeter
Platform: UNKNOWN
