Hey all!
I’m working on a project, but I haven’t finalized the hardware selection yet. I just discovered the dragonboard and am considering buying one. I have been using a combination of python and mraa, so that seems like it will be a good fit. Here is my question:
Are the Compass/Accel/Gyro devices accessible via I2C? Is reading the data from these just a straightforward:
sudo i2cdump -yr 1 0xE38
(per this link here: Snapdragon Spec )
And I’m also interested in the GPS module. Can that be read using something like the following python pseudo-script?
import serial
gps = serial.Serial(‘ttyGPSD0’)
while True:
print(gps.readline())
Thanks for the help!
–