Created
October 5, 2022 20:41
-
-
Save davedarko/20967426786abefa7665e549c0bb7d1b to your computer and use it in GitHub Desktop.
blink example for oddly specific objects LCD featherwing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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