ELEC60013-ES-CW1/main.py

11 lines
238 B
Python
Raw Normal View History

2022-02-26 22:36:47 +00:00
from lis3dh import *
2022-02-26 19:51:43 +00:00
print("Raspberry Pi Zero W, up and running!")
2022-02-26 23:05:48 +00:00
bus = smbus2.SMBus(1)
accel = lis3dh(bus)
2022-02-26 19:51:43 +00:00
print("LIS3DH initiated successfully!")
while True:
[X,Y,Z] = accel.readAll()
print("X: ",X,"\tY: ",Y,"\t Z: ",Z,"\n")