First of all I'm sure this problem is a direct result of my limited Arduino knowledge I've gained in the last 2 weeks, and I'm sure there is an easy fix for my problem, but I have been stuck for the past few days trying to figure out what exactly I'm doing wrong.
I am trying to follow the guide for the "sup brows" Overview | 'Sup Brows | Adafruit Learning System by adafruit. I have bought all of the parts the guide recommends and I have downloaded the "SupBrows_V2.zip" as well as downloaded the Adafruit_BluefruitLE_nRF51 library and placed it under libraries in the Arduino folder on my Mac. I also included the Adafruit_BluefruitLE_nRF51 library in the sketch. I am currently using the adafruit feather 32u4 as my board in the Arduino IDE.
I keep getting the error message:
Arduino: 1.8.5 (Mac OS X), Board: "Adafruit Feather 32u4"
SupBrows_V2:89: error: 'BLUEFRUIT_SPI_CS' was not declared in this scope
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS , BLUEFRUIT_SPI_IRQ , BLUEFRUIT_SPI_RST) ;
^
SupBrows_V2:89: error: 'BLUEFRUIT_SPI_IRQ' was not declared in this scope
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS , BLUEFRUIT_SPI_IRQ , BLUEFRUIT_SPI_RST) ;
^
SupBrows_V2:89: error: 'BLUEFRUIT_SPI_RST' was not declared in this scope
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS , BLUEFRUIT_SPI_IRQ , BLUEFRUIT_SPI_RST) ;
^
/Users/maxwagoner/Downloads/SupBrows_V2/SupBrows_V2.ino: In function 'void setup()':
SupBrows_V2:130: error: 'VERBOSE_MODE' was not declared in this scope
if ( !ble.begin(VERBOSE_MODE) )
^
exit status 1
'BLUEFRUIT_SPI_CS' was not declared in this scope
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
I do not know what my problem is and why I can't get this code to work so I can upload it to my feather 32u4 bluefruit LE board
Thanks