Oled display

Hello everyone

Does anyone know how can i design a sinple menu system to work with an oled display ?
it needs to use the adafuit lib SSD1306 or SH1106.

Hope someone can help or point in to the right direction... :slight_smile:

Kind regards
NP

delete post

menu do do what?

i have something for setting option values and editing multi-digit numbers.

the type of display shouldn't matter as long as it can display 2 lines of reasonable length

hello all

to0n7:
Hello,

I also try to do a menu for oled display. I have already done one but for lcd.
For the library it depends of the screen you have.
I can share you my lcd sketch if you want.
Is it a menu with pushbuttons?

The display's i have is a 1.3" oled and a 0.96" oled and an rotary encoder

gcjr:
menu do do what?

i have something for setting option values and editing multi-digit numbers.

the type of display shouldn't matter as long as it can display 2 lines of reasonable length

I need to design a kind of menu that has a cuple os options like

on the main screen should look something like

Menu


Menu 1
Menu 2
About

and the structure is:

  • Menu1
    -Sub 1.1
    -Sub 1.2
    -Sub 1.3
  • Menu2
    -Sub 2.1
    -Sub 2.2
    -Sub 2.3
  • About

Note: all examples i have seen online, there are big dif between LCD coding and OLED coding

see attached. code was developed on PC for esp32 using Oled. all output is thru disp() which displays 2 strings. input thru i, j, k, m keys.

PM me if interested and have questions

Menu_0330f.zip (5.54 KB)