View Single Post
  #4  
Old 07-29-2014, 04:45 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Do you get the same results printed out every second with this simple example?

Code:
import viz
import vizact
viz.go()

InertialLabs = viz.add('InertialLabs.dle')
sensor = InertialLabs.addOSv3(9)

def printData():
	print sensor.getEuler()
	
vizact.ontimer(1, printData)
Reply With Quote