import clr
clr.AddReference("OneWireAPI")
import OneWireAPI as OW
# Now you may access the classes, etc on the library
# Have fun with that!
NOTE: I haven't tried this.
# OneWireContainer enumeration
for owc in OW.getAllDeviceContainers():
print owc.getDescription ()
On 04/04/2012 07:34
What is the top level namespace exported by that assembly? Assuming it was
'OneWire' you
should be able to do:
import clr
clr.addReference("OneWireAPI")
import OneWire
...
Hope this helps!
- Brian
2012/4/4 Jorn Vanloofsvelt
> Dear Brian
>
> My question is very short, and I hope that the an