ESC stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

simpledisplay.ino 279B

123456789101112131415
  1. #include <SPI.h>
  2. #include <Wire.h>
  3. #include <Adafruit_SSD1306.h>
  4. #define OLED_RESET 4
  5. Adafruit_SSD1306 display(OLED_RESET);
  6. void setup() {
  7. Serial.begin(115200);
  8. display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
  9. display.clearDisplay();
  10. display.println("Hi");
  11. }
  12. void loop() {}