Hello Arduino enthusiasts,
I'm having a problem with the current version of the IDE (1.6.8 ) that I've never experience before. I'm attempting to control two motors using a pololu qik 2s9v1 motor controller and a Sparkfun Pro Micro 5v board. I've done something similar using an UNO and the pololu qik 2s12v10, no problem.
Now, here comes the problem when I introduce the line to include the pololuqik library (#include <PololuQik.h> I get an error from the IDE saying "error compiling for board SparkFun Pro Micro, and further in the error message it says:
fatal error: ../SoftwareSerial/SoftwareSerial.h: No such file or directory
#include "../SoftwareSerial/SoftwareSerial.h"
Now I've tried this setting it to an UNO and get the same error message with a different board listed and the same details of the error.
If I don't use the pololuqik library I can include the softwareserial library no problem, and including the softwareserial library before or after including the pololuqik library yields the same error.
Example code is below, followed by the complete error code.
#include <SoftwareSerial.h>
#include <PololuQik.h>
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
error:
Build options changed, rebuilding all
In file included from C:\Users\slice18\AppData\Local\Temp\arduino_modified_sketch_198466\BareMinimum.ino:2:0:
C:\Users\slice18\Documents\Arduino\libraries\PololuQik/PololuQik.h:5:46: fatal error: ../SoftwareSerial/SoftwareSerial.h: No such file or directory
#include "../SoftwareSerial/SoftwareSerial.h"
^
compilation terminated.
exit status 1
Error compiling for board SparkFun Pro Micro.
any help would be fantastic!
Thank you in advance!