Please excuse my post. I am not a programmer, just hobbies trying to learn Arduino programing and tiring to use a 10DOF-IMU-MPU9250-BMP280 for high power rocketry project.
The attached pics showing the libraries I do not know how to how to install. I have searched GitHub for them, with out success.
So could some one help in finding the required libraries, and help installing them.
I got it install but I got warns/errors. The sketch complies with any errors or warns before I added the libraries. When I add just the libraries it does not compile.
You would be much more likely to get help if you posted the error messaged directly to the forum rather than as an attachment. We shouldn't need to download a file to see if we can help you. There is a 9000 character limit and when that is exceeded the correct thing to do is post as a .txt file attachment but in this case the output was nowhere near 9000 characters.
So there is an error:
C:\Users\Rocke\Documents\Arduino\libraries\MovSens-10DOF-IMU-Arduino-master\I2Cdev.cpp:276:62: error: 'BUFFER_LENGTH' was not declared in this scope
The problem and solution are described here:
Then there is a warning:
WARNING: library arduino_740708 claims to run on (avr) architecture(s) and may be incompatible with your current board which runs on (samd) architecture(s).
Well technically that's correct but once you make the BUFFER_LENGTH fix you should be able to ignore it since I believe that is the only incompatibility. Note that when a library is considered incompatible its example sketches are accessible via File > Examples > INCOMPATIBLE.
No worries. I usually would not just post a link to a somewhat related post but I was in the middle of another project at that time and didn't have time to make the adjustments but I thought I should at least reply to put you on the right track since I had previously helped someone else with this exact problem and had a link to that thread saved.
I just found out the SoftwareSerial (needed for Adafruit Ultimate GPS (PRODUCT ID: 746)) is not available on the M0 platform. Does any one have a example sketch for achieving the GPS serial port on the MO platform?
You should be able to connect the GPS module to pins 0 and 1 (hardware serial port Serial1) on your Adafruit Metro M0 Express. Here's an example that shows how to use Serial1 with their library:
I have been looking over the link that pert suggested. I fired my GPS module and waiting for replacement.
The link uses SERIAL1 and I was wandering what are the other SERIAL ports all ready defined like SERIAL1. For example (if there is a) SERIAL2 what pins it would use?
The link uses SERIAL1 and I was wandering what are the other SERIAL ports all ready defined like SERIAL1.
That depends on the Arduino board that you are using. For instance, a Uno has just Serial whereas the Mega has Serial, Serial1, Serial2 and Serial3 each of which use different Tx and Rx pins and a Leonardo has Serial and Serial1