ELEC60013-ES-CW1/main.py
2022-03-01 14:33:09 +00:00

21 lines
493 B
Python

from lis3dh import *
from datetime import datetime
print("Raspberry Pi Zero W, up and running!")
bus = smbus2.SMBus(1)
accel = lis3dh(bus,2,1)
print("LIS3DH initiated successfully!")
now = datetime.now()
date_time = now.strftime("%d_%m_%Y_%H_%M_%S")
name = "output_"+date_time+".txt"
f = open(name,"x")
print("X","Y","Z", file=f)
f.close()
while True:
[X,Y,Z] = accel.readAll()
with open(name,"a") as f:
print("X: ",X,"\tY: ",Y,"\t Z: ",Z,"\n")
print(X,Y,Z, file=f)