Re: [pyusb-users] Documentation

2010-09-03 Thread Kaan AKŞİT
> hand.reset() > print 'reset complete' > #hand.setConfiguration(conf) > hand.claimInterface(intf) > print 'claimed' > #hand.setAltInterface(0) > hand.bulkWrite(6,ID,4000)#write to a bulk-out endpoint > hand.bulkWrite(6,REQ_IN,4000)#write to a bulk-out e

Re: [pyusb-users] Documentation

2010-09-03 Thread Sarah Messer
rint 'reset complete' #hand.setConfiguration(conf) hand.claimInterface(intf) print 'claimed' #hand.setAltInterface(0) hand.bulkWrite(6,ID,4000)    #write to a bulk-out endpoint hand.bulkWrite(6,REQ_IN,4000)    #write to a bulk-out endpoint stuff=hand.bulkRead(133,256)#read fro

Re: [pyusb-users] Documentation

2010-09-01 Thread Kaan AKŞİT
Thank you very much for the answer. I am using the help files now. help(usb.core) Kaan 2010/9/1 Wander Lairson > Hi Kaan, > > PyUSB reference for functions is available through doc strings. For > example, you can see the documentation of the core module by typing > this: > > pydoc usb.core > >

Re: [pyusb-users] Documentation

2010-09-01 Thread Wander Lairson
Hi Kaan, PyUSB reference for functions is available through doc strings. For example, you can see the documentation of the core module by typing this: pydoc usb.core Once PyUSB is installed in your system. Note: bear in mind that we are talking about PyUSB 1.0. Wander 2010/9/1 Kaan AKŞİT : > D

[pyusb-users] Documentation

2010-09-01 Thread Kaan AKŞİT
Dear all, I am having hard time to find a manual or a documentation that explains each function in pyusb library. Unfortunately, I could not find anything beside this: http://pyusb.sourceforge.net/docs/1.0/tutorial.html Best regards, Kaan -