enter image description hereimport time
import board
import busio
from adafruit_lsm6ds.lsm6ds33 import LSM6DS33
i2c = busio.I2C(board.SCL, board.SDA)
sensor = LSM6DS33(i2c)
while True:
print(sensor.acceleration)
time.sleep(0.25)
Hello everyone I am using lsm6ds33
3D accelerations sensors and raspberry pi for my project.
Currently i am able to acquire 3D raw data of acceleration using I2C interface and visualise it using Mu plotter. I want to visualise the frequency response of the sensors using python. Since i am new to python, anyone can help me please. I have attached screenshot please have a look.
Sincerely