Skip to content

Instantly share code, notes, and snippets.

@davedarko
Created October 5, 2022 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davedarko/20967426786abefa7665e549c0bb7d1b to your computer and use it in GitHub Desktop.
Save davedarko/20967426786abefa7665e549c0bb7d1b to your computer and use it in GitHub Desktop.
blink example for oddly specific objects LCD featherwing
#include <Wire.h>
#include "OSO_LCD.h"
OSO_LCDWing display;
void setup() {
// put your setup code here, to run once:
if (!display.begin(0x3E, &Wire1)) {
while (1) Serial.println("ERR");
}
}
void loop() {
// put your main code here, to run repeatedly:
display.fill(0);
delay(500);
display.fill(1);
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment