Generic esp8266 board ..I've also tried NodeMCu 12 boards and the errors are identical.
I downloaded as a zip files and unpacked then into the folders below inside Arduino/arduino-1.6.5/libraries
Adafruit-GFX-Library-master
Adafruit-ST7735-Library-master
I am using as a test to see if a successful compile is a possible an unmodified graphicstest.ino in Adafruit-ST7735-Library-master/examples
.Now I now this is a commercial package destined to increase sales of hardware.....I'm using at standalone esp8266 so I shouldn't expect much and obviously can't call for support from Adafruit ( I don't own their board)
Nevertheless at least one person claims to have it working but it maybe it doesn't work with 1.6.5 Arduino or Adafruit has broken the code so as to not have it run on the esp8266 for commercial reasons.
Does anyone have this compiling with arduino-1.6.5? It is not a wiring issue it doesn't even compile.
I know I can go in and fix these issues but this is an example of a downside in using commercial software for the esp8266 Arduino IDE
since next time a commercial vendor updates you have some new free features ( Microsoft jargon for bugs ) to contend with.
I doesn't compile and the errors are below
[quote]graphicstest.ino: In function 'void setup()':
graphicstest.ino:71:397: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp: In constructor 'Adafruit_ST7735::Adafruit_ST7735(int8_t, int8_t, int8_t, int8_t, int8_t)':
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp:47:3: error: '_cs' was not declared in this scope
_cs = cs;
^
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp:48:3: error: '_rs' was not declared in this scope
_rs = rs;
^
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp:49:3: error: '_sid' was not declared in this scope
_sid = sid;
^
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp:50:3: error: '_sclk' was not declared in this scope
_sclk = sclk;
^
C:\Arduino\arduino-1.6.5\libraries\Adafruit-ST7735-Library-master\Adafruit_ST7735.cpp:51:3: error: '_rst' was not declared in this scope
_rst = rst;
^[/quote]