View Single Post
  #4  
Old 01-26-2009, 05:51 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
If you have an XBUS device on COM 10 with 3 sensors connected, then you need to call xsens.addMT() 3 times. The following code shows how:
Code:
xsens = viz.add('xsens.dle')
sensor1 = xsens.addMT(port=10) 
sensor2 = xsens.addMT(port=10) 
sensor3 = xsens.addMT(port=10)
Reply With Quote