8 lines
97 B
Python
8 lines
97 B
Python
|
accel = pyb.Accel()
|
||
|
print(accel)
|
||
|
accel.x()
|
||
|
accel.y()
|
||
|
accel.z()
|
||
|
accel.tilt()
|
||
|
accel.filtered_xyz()
|