summaryrefslogtreecommitdiff
path: root/tests/pyb/accel.py
blob: 9aa60c1859e9f69f678635af99c35be4dbd7553d (plain)
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()