Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 display = Adafruit_SSD1306(128, 32, &Wire);
void setup() {
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.clearDisplay();
display.invertDisplay(true);
display.display();
}
void loop() {
delay(400);
display.invertDisplay(true);
display.display();
delay(400);
display.invertDisplay(false);
display.display();
delay(400);
display.clearDisplay();
display.display();
}
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?
Re: Is this a blown OLED Featherwing?