View Single Post
  #2  
Old 06-15-2014, 06:18 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Thanks for bringing this up, it seems like the option to specify the port is missing. If vizconnect is receiving data from the device the Status button should be bright green. Click on the button to open the status dialog and see the most recent signal information.

If there is no data you can manually edit the config file as a temporary workaround. Add the SpaceGrips input in vizconnect, save the config file and then open it up in the Vizard editor. In the InitInputs function find the following line of code:

Code:
rawInput[_name] = spacegrips.addSensor()
Change that to:

Code:
rawInput[_name] = spacegrips.addSensor(port=5)
Run the config file to open up the vizconnect interface again. See if the Status is now bright green and reporting data.
Reply With Quote