mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 09:37:25 +00:00
17 lines
404 B
Python
17 lines
404 B
Python
from pybricks.parameters import Port
|
|
from pybricks.pupdevices import TiltSensor
|
|
from pybricks.tools import wait
|
|
|
|
# Initialize the sensor.
|
|
accel = TiltSensor(Port.A)
|
|
|
|
while True:
|
|
# Read the tilt angles relative to the horizontal plane.
|
|
pitch, roll = accel.tilt()
|
|
|
|
# Print the values
|
|
print("Pitch:", pitch, "Roll:", roll)
|
|
|
|
# Wait some time so we can read what is printed.
|
|
wait(100)
|