2nd screen picocalc

Anybody thought of this

Screen is 2.5 x 0.4cm
And res is 40x250

What part number and how would you hook it up?

Part number:SKU 26783 for 64x32 screen but dont fit.
0.2 inch 14-egemnt display doent exist
0.2 inch 7 segment pack is impissuble to tell which number it is
So we hook 2 pack of 3 or 4 0.2 inch 7 seg displays togeter
I dont know how to connect cuz im dumb but its properly a little .uf2 making and a 2-1 multiplexer theres more info on here Reddit - Please wait for verification

Hardware code for 64x32 screen maybe
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

#define SCREEN_WIDTH 64 // OLED display width, in pixels
#define SCREEN_HEIGHT 32 // OLED display height, in pixels
#define OLED_RESET -1 // Reset pin #
#define SCREEN_ADDRESS2 0x3D // Found using scanner. I changed the address switch on the PIICODev OLED to on

//Initialize OLED screens.
Adafruit_SSD1306 display1(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
Adafruit_SSD1306 display2(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);

int t1 = 0, t2 = 0;

void setup() {
//— Screens ------------------------------------------------
// SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally
if (!display1.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS1)) {
Serial.println(F(“SSD1306 allocation failed”));
for (;;); // Don’t proceed, loop forever
}
if (!display2.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS2)) {
Serial.println(F(“SSD1306 allocation failed”));
for (;;); // Don’t proceed, loop forever
}
//default I2C pins GP4, GP5. These are pins 6 and 7 on the Pico
Serial.println(SDA);
Serial.println(SCL);
}

Something like this

Since the back cover is transparent, placing it at the top seems more harmonious and also avoids destructive modification.

imagination picture with nano bananer
|
v

1 Like

I recommended to make the code in tunning in the stm32 chip so it doesnt affects the picos performance and get screen manufacturers to make the screen

1 Like

is that your actual PicoCalc?

mine has a black transparant case, yours much nicer

“imagination picture with nano bananer”