PythonExtra/tests/pyb/accel.py
2014-05-04 12:40:51 +01:00

10 lines
109 B
Python

import pyb
accel = pyb.Accel()
print(accel)
accel.x()
accel.y()
accel.z()
accel.tilt()
accel.filtered_xyz()