blob: 7a5e072be05d2a3669fc0b01e7e9ea6ce638f752 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import pyb
if not hasattr(pyb, "Accel"):
print("SKIP")
raise SystemExit
accel = pyb.Accel()
print(accel)
accel.x()
accel.y()
accel.z()
accel.tilt()
accel.filtered_xyz()
|