#1
|
|||
|
|||
5dt driver question
All:
When using our 5DT Data Glove 5 Ultra glove, we import it via Code:
gloveSensor = viz.add('5dt.dls') Thanks! |
#2
|
|||
|
|||
Hi,
You should be able to connect to 2 gloves by specifying the port for each glove. Example: Code:
PORT_5DT_USB = 0 glove1 = viz.add('5dt.dls') PORT_5DT_USB = 1 glove2 = viz.add('5dt.dls') |
#3
|
|||
|
|||
And that would automatically know that glove1 is the 5 sensor and glove2 the 14 sensor one without any work on our end?
|
#4
|
|||
|
|||
Hi,
You would need to detect that yourself. You can check the length of the data list returned by the gloves to figure out which one is 14 sensor and 5 sensor. The 14 sensor glove will return a longer list. |
#5
|
|||
|
|||
Ahh, great. Thanks!
|
|
|