adafruit / Adafruit_Seesaw

Arduino library driver for seesaw multi-use chip
93 stars 64 forks source link

Fix for issue #8. #9

Closed caternuson closed 6 years ago

caternuson commented 6 years ago

Simple fix, just swaps the left/right triangle graphics.

caternuson commented 6 years ago

I think travis is failing because of the library rename for ST7735: https://github.com/adafruit/Adafruit-ST7735-Library/blob/master/library.properties#L1

caternuson commented 6 years ago

That fixed the library import issue. Travis is now failing due to pre-existing issues with some of the example sketches. Both appear to be simple typos.

Adafruit_Seesaw/examples/RGBTrellis/basic/basic.ino

basic:63: error: 'rellis' was not declared in this scope
   rellis.read();
   ^
exit status 1

Adafruit_Seesaw/examples/TFTShield18/shieldtest/shieldtest.ino

shieldtest:235: error: 'class Adafruit_ST7735' has no member named 'Color565'
             tft.pushColor(tft.Color565(r,g,b));
                               ^
exit status 1
caternuson commented 6 years ago

Fixed a different way. See #8.