コード例 #1
0
 def test_start_stop_imu(device: PyK4A):
     device.open()
     device._start_cameras()  # imu will not work without cameras
     device._start_imu()
     device._stop_imu()
     device._stop_cameras()
コード例 #2
0
 def test_start_stop_cameras(device: PyK4A):
     device.open()
     device._start_cameras()
     device._stop_cameras()