Try
uint8_t* actualBitmap = bitmapA;
The drawBitmap function in the Adafruit library is overloaded to take a const uint8_t from PROGMEM, or a uint8_t that is not const from SRAM.
Try
uint8_t* actualBitmap = bitmapA;
The drawBitmap function in the Adafruit library is overloaded to take a const uint8_t from PROGMEM, or a uint8_t that is not const from SRAM.