accel.py 109 B

123456789
  1. import pyb
  2. accel = pyb.Accel()
  3. print(accel)
  4. accel.x()
  5. accel.y()
  6. accel.z()
  7. accel.tilt()
  8. accel.filtered_xyz()