I combined a couple projects into one so Im getting some errors and the one I'm on now has a bunch of things show up as not declared. I believe they are part of the SoftwareSerial.h library which is included. Here is the error...Any suggestions??
Arduino: 1.6.9 (Mac OS X), Board: "Arduino/Genuino Uno"
/Users/jordan/Downloads/Autonomous_Car/Autonomous_Car.ino: In function 'void loop()':
Autonomous_Car:239: error: 'processGPS' was not declared in this scope
processGPS();
^
Autonomous_Car:244: error: 'checkSonar' was not declared in this scope
checkSonar();
^
Autonomous_Car:245: error: 'moveAndAvoid' was not declared in this scope
moveAndAvoid();
^
/Users/jordanrose/Downloads/Autonomous_Car/Autonomous_Car.ino: In function 'void print_range()':
Autonomous_Car:256: error: a function-definition is not allowed here before '{' token
{
^
Autonomous_Car:275: error: a function-definition is not allowed here before '{' token
{
^
Autonomous_Car:285: error: a function-definition is not allowed here before '{' token
void read_sensor (){
^
Autonomous_Car:293: error: a function-definition is not allowed here before '{' token
{read_sensor();
^
Autonomous_Car:452: error: expected '}' at end of input
}
^
exit status 1
'processGPS' was not declared in this scope
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.