Hi, I am trying to get my 9DOF sensor working with my Raspberry Pi via Python. I have tested the sensor on Arduino and it works fine. There are limited examples using the Grove library located here:
From those examples I made this code:
import time
from grove.grove_imu_9dof_icm20600_ak09918 import GroveIMU9DOFICM20600
dofimu = GroveIMU9DOFICM20600()
print('9DOF IMU')
while True:
dofimu.get_temperature()
time.sleep(1)