
Edit: Got it!
deleted
Code: Select all
Adafruit_ST7735(int8_t cs, int8_t dc, int8_t mosi, int8_t sclk, int8_t rst);
Adafruit_ST7735(int8_t cs, int8_t dc, int8_t rst);
Adafruit_ST7789(int8_t cs, int8_t dc, int8_t mosi, int8_t sclk, int8_t rst = -1);
Adafruit_ST7789(int8_t cs, int8_t dc, int8_t rst);
Code: Select all
#define PA0 PIN_A0
#define PA1 PIN_A1
#define PA2 PIN_A2
#define PA3 PIN_A3
#define PA4 PIN_A4
#define PA5 PIN_A5
#define PA6 PIN_A6
#define PA7 PIN_A7
Yes except for PB0 and PB1 which are analog.Bakisha wrote: Thu Aug 26, 2021 9:45 pm What about port B pins? PB1 should work without underscore? I can't test that at the moment.
Thank you! I can confirm that this now works as expected for both the F103 Blue Pill and F411 Black Pill.fpiSTM wrote: Fri Aug 27, 2021 9:14 am I've made a PR:
https://github.com/adafruit/Adafruit-GF ... y/pull/359