View Single Post
  #7  
Old 05-31-2011, 04:58 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Vizard is not able to connect to either the Polhemus or Emagin sensors.

Polhemus - Test with the following script:
Code:
import viz
viz.go()

polhemus = viz.add('polhemus.dle')
patriot = polhemus.addPatriot()
viz.link(patriot,viz.MainView)
If you get errors verify that you can connect to the Polhemus device in PiMgr. When running Vizard, PiMgr should be closed.

Emagin - Try the following:
Code:
import viz
viz.go()

emagin = viz.add('emagin.dls') 
viz.link(emagin,viz.MainView)
Do you get errors? Have you installed the USB drivers for the Emagin sensor?
Reply With Quote