SSD1306 Programming Exit Status 1 Error

Probably something silly, but I can't figure it out. I'm getting the 'exit status 1' error when i verify. This code used to be working prior to updating arduino sketch to 1.6.6. After a haitus of arduino, I came back to find the problem.
Made sure the appropriate SSD1306.h and the SSD1306 GFX libraries are included..
I do have a SSD1306 128x32 (not 16 or 64 height)..
At a loss.... any help appreciate and thanks in advance!

ssd1306_128x32_spi_ian.ino (9.49 KB)

Made sure the appropriate SSD1306.h and the SSD1306 GFX libraries are included..

But you didn't provide links to the library, or define which hardware you are compiling for, so you won't get a lot of help here.

Your problem is that you have got multiple identical include statements:

#include <Adafruit_SSD1306.h>

and later . . .

#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

Sorry! I guess links to these libraries would be helpful.

As for hardware, I am using an Adafruit SSD1306 128x32 pixel OLED display with an Arduino Uno Rev 3.

Links:

Again, any help would be great! thanks!!

I downloaded the two libraries, and compiled your code for a random Arduino. I got only one "error":

Sketch uses 21,154 bytes (8%) of program storage space. Maximum is 253,952 bytes.
Global variables use 1,090 bytes (13%) of dynamic memory, leaving 7,102 bytes for local variables. Maximum is 8,192 bytes.

Now, you need to answer all the questions that have been asked, AND post ALL the error messages you are getting.

I'm not sure i saw another question that needs to be answered; however, this is the verbose error message I receive when verifying. Hope this can help and thanks again.

C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware "C:\Program Files (x86)\Arduino\hardware" -tools "C:\Program Files (x86)\Arduino\tools-builder" -tools "C:\Program Files (x86)\Arduino\hardware\tools\avr" -built-in-libraries "C:\Program Files (x86)\Arduino\libraries" -libraries "C:\Users\Ian\Documents\Arduino\libraries" -fqbn=arduino:avr:uno -ide-version=10606 -build-path "C:\Users\Ian\AppData\Local\Temp\build379414f4debf703ece0e198b7bfad8a8.tmp" -warnings=none -prefs=build.warn_data_percentage=75 -verbose "C:\Users\Ian\Documents\Arduino\Workspace\My_Learnings\ssd1306_128x32_spi_ian\ssd1306_128x32_spi_ian.ino"
C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware "C:\Program Files (x86)\Arduino\hardware" -tools "C:\Program Files (x86)\Arduino\tools-builder" -tools "C:\Program Files (x86)\Arduino\hardware\tools\avr" -built-in-libraries "C:\Program Files (x86)\Arduino\libraries" -libraries "C:\Users\Ian\Documents\Arduino\libraries" -fqbn=arduino:avr:uno -ide-version=10606 -build-path "C:\Users\Ian\AppData\Local\Temp\build379414f4debf703ece0e198b7bfad8a8.tmp" -warnings=none -prefs=build.warn_data_percentage=75 -verbose "C:\Users\Ian\Documents\Arduino\Workspace\My_Learnings\ssd1306_128x32_spi_ian\ssd1306_128x32_spi_ian.ino"
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -M -MG -MP -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "C:\Users\Ian\AppData\Local\Temp\build379414f4debf703ece0e198b7bfad8a8.tmp\sketch\ssd1306_128x32_spi_ian.ino.cpp"
ssd1306_128x32_spi_ian:75: error: #error ("Height incorrect, please fix Adafruit_SSD1306.h!");

#error("Height incorrect, please fix Adafruit_SSD1306.h!");

^

exit status 1
#error ("Height incorrect, please fix Adafruit_SSD1306.h!");

PROBLEM SOLVED. Red Herring unfortunately. I updated the version of sketch from 1.6.6 to 1.6.7. Magically it works again. Unsure why, but i have a suspicious feeling that sketch got damaged somehow during my tragic update from win8.1 to win10. Dog unplugged PC while installing... (true, even though it sounds like the dog ate my homework). Feel free to delete this thread since I don't see this as helpful to the community.