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:26:58 +00:00
|
|
|
name = "output_"+datetime.now()+".txt"
|
|
|
|
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 09:18:04 +00:00
|
|
|
with open("output.txt","a") as f:
|
|
|
|
print("X: ",X,"\tY: ",Y,"\t Z: ",Z,"\n")
|
|
|
|
print(X,Y,Z, file=f)
|