23 lines
717 B
Python
23 lines
717 B
Python
import time
|
|
from pimoroni_i2c import PimoroniI2C
|
|
from breakout_msa301 import BreakoutMSA301
|
|
|
|
PINS_BREAKOUT_GARDEN = {"sda": 4, "scl": 5}
|
|
PINS_PICO_EXPLORER = {"sda": 20, "scl": 21}
|
|
|
|
i2c = PimoroniI2C(**PINS_BREAKOUT_GARDEN)
|
|
msa = BreakoutMSA301(i2c)
|
|
|
|
part_id = msa.part_id()
|
|
print("Found MSA301. Part ID: 0x", '{:02x}'.format(part_id), sep="")
|
|
|
|
msa.enable_interrupts(BreakoutMSA301.FREEFALL | BreakoutMSA301.ORIENTATION)
|
|
|
|
while True:
|
|
print("X:", msa.get_x_axis(), end=",\t")
|
|
print("Y:", msa.get_y_axis(), end=",\t")
|
|
print("Z:", msa.get_z_axis(), end=",\t")
|
|
print("Freefall?", msa.read_interrupt(BreakoutMSA301.FREEFALL), end=",\t")
|
|
print("Orientation:", msa.get_orientation())
|
|
time.sleep(0.1)
|