ELEC60013-ES-CW1/main.py

21 lines
494 B
Python
Raw Normal View History

2022-02-26 22:36:47 +00:00
from lis3dh import *
2022-03-01 14:26:58 +00:00
from datetime import datetime
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)
2022-03-01 09:06:53 +00:00
accel = lis3dh(bus,2,10)
2022-02-26 19:51:43 +00:00
print("LIS3DH initiated successfully!")
2022-03-01 14:29:35 +00:00
now = datetime.now()
date_time = now.strftime("%d_%m_%Y_%H_%M_%S")
name = "output_"+date_time+".txt"
2022-03-01 14:26:58 +00:00
f = open(name,"x")
2022-03-01 09:18:04 +00:00
print("X","Y","Z", file=f)
f.close()
2022-02-26 19:51:43 +00:00
while True:
[X,Y,Z] = accel.readAll()
2022-03-01 14:30:22 +00:00
with open(name,"a") as f:
2022-03-01 09:18:04 +00:00
print("X: ",X,"\tY: ",Y,"\t Z: ",Z,"\n")
print(X,Y,Z, file=f)