You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I add text top left (0,0) and then add a bitmap top right (getWidth - bitmap.width, 0), the bitmap causes column 0 to be corrupted, but only on the 1.3" (128x64) OLED. On the Micro (64x48), it's fine.
#include <SparkFun_Qwiic_OLED.h> //http://librarymanager/All#SparkFun_Qwiic_OLED
//QwiicMicroOLED myOLED;
Qwiic1in3OLED myOLED;
#include "res/qw_bmp_truck.h"
void setup()
{
Wire.begin();
myOLED.begin();
myOLED.text(0, 0, "0"); // "0" top left
myOLED.bitmap(myOLED.getWidth() - QW_BMP_TRUCK.width, 0, QW_BMP_TRUCK); // Icon top right
myOLED.display();
}
void loop()
{
}
The text was updated successfully, but these errors were encountered:
Another weird one...
If I add
text
top left (0,0) and then add abitmap
top right (getWidth - bitmap.width, 0), the bitmap causes column 0 to be corrupted, but only on the 1.3" (128x64) OLED. On the Micro (64x48), it's fine.The text was updated successfully, but these errors were encountered: