1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #import eyes17.eyes # uncomment these two lines while running stand-alone
#p = eyes17.eyes.open()
# Connect WG to A1
from pylab import *
p.set_wave(100)
x,y = p.capture1('A1', 500,50)
plot(x,y)
p.set_wave(100, 'tria')
x,y = p.capture1('A1', 500,50)
plot(x,y)
show()
|