Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

A python module that realizes the RS-232 interface of the Agilent 54622D Mixed Signal Digital Storage Oscilloscope in a clean, pythonic fashion that is easy and convenient to use. Here's an example: import agilent scope = agilent.Scope(port="COM1", baudRate=57600) for channel in ... [More] (scope.a1, scope.a2): print "Channel %s: min=%f max=%f avg=%f" % (channel.label, channel.min, channel.max, channel.average) scope.d0.label = 'SDA' scope.d1.label = 'SCL' t, sda = scope.d0.get_data() t, scl = scope.d1.get_data() scope.screen("saved_screenshot.png") [Less]

0
 
  0 reviews  |  0 users  |  2,027 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.