-
Notifications
You must be signed in to change notification settings - Fork 0
B1 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
.travis.yml
Outdated
- bundle exec arduino_ci_remote.rb | ||
- arduino --verify --board teensy:avr:teensy36 avionics.ino |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like you're trying to force the verification of avionics.ino
via the command line. A better way to do this would be to move this file to examples/avionics/avionics.ino
(following the Arduino 1.5 library specification); arduino_ci
will automatically detect (and verify) these files. Currently, it's not finding any in examples/
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the help!
examples/avionics.ino
Outdated
@@ -0,0 +1,115 @@ | |||
/*Main Arduino Sketch*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is close, but it needs to be in examples/avionics/avionics.ino
. For some reason, Arduino wants the sketch to live in a folder of the same name.
Rather than pulling the dependencies into this project, compile:
libraries:
- "Adafruit BNO055" For libraries that can't be installed via the GUI's library manager, you'll have to just script up those custom installation steps in your |
No description provided.