#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
Adafruit_SSD1306 display(-1);
#define DIS_WIDTH 128 // OLED display width, in pixels
#define DIS_HEIGHT 64 // OLED display height, in pixels
void setup() {
// put your setup code here, to run once:
Serial1.begin(115200);
Serial1.println("Hello, Raspberry Pi Pico!");
// Disp
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.fillScreen(1);
display.display();
}
void loop() {
// put your main code here, to run repeatedly:
delay(1); // this speeds up the simulation
}