Wie kann ich den OLED Display meines Goteks einstellen? Es gibt wohl unterschiedliche Darstellungsmöglichkeiten: 6x13 oder 8x16?
Gotek OLED Display Einstellung
-
Negan -
25. Februar 2023 um 11:54 -
Erledigt
Es gibt 6 Antworten in diesem Thema, welches 1.457 mal aufgerufen wurde. Der letzte Beitrag (
-
-
FlashFloppy Firmware?
dann in der FF.cfg
Code
Alles anzeigen## ## DISPLAY # Display Type. # auto: Auto-detect (7-seg LED, LCD, OLED) # lcd-CCxRR: CCxRR backlit LCD with I2C backpack (16<=CC<=40, 02<=RR<=04) # oled-128xNN: 128xNN I2C OLED (NN = 32 | 64) # -rotate: OLED view is rotated 180 degrees # -hflip: OLED view is flipped horizontally # -narrow[er]: OLED view is restricted to Gotek display cutout # (-narrow: 18 chars; -narrower: 16 chars) # -inverse: Inverse/reverse video (black text on white background) # -ztech: ZHONGJY_TECH 2.23" 128x32 SSD1305 OLED display # -slow: Run I2C bus slower (use this if OLED regularly blanks/corrupts) # Values: auto | lcd-CCxRR | oled-128xNN[-rotate][-narrow[er]]... display-type = auto # OLED Font. Narrow and wide options. # Narrower 6x13 font permits: # - More characters per row # - Use of Gotek display cutout (eg. "display-type=oled-128x32-narrow") # Values: 6x13 | 8x16 oled-font = 6x13 # OLED contrast/brightness. # Values: 0 <= N <= 255 oled-contrast = 143 # Text height and arrangement on LCD/OLED and on OSD, respectively. # 'default', or a comma-separated list (one entry per LCD/OLED row, top down). # Each list item is a digit plus optional height specifier: <content-row>[d] # content-row: '0-3' = specified content row, '7' = blank # 0: Current image name # 1: Status # 2: Image/Volume info # 3: Current subfolder name # height specifier: 'd' = double height (32px, OLED only; ignored for LCD) # 'default' depends on display, eg.: oled-128x32='0,1' ; oled-128x64='3,0d,1' # Values: [0-7][d] | default display-order = default osd-display-order = default # OSD text columns. This is currently respected only when no LCD/OLED is found. # Values: 16 <= N <= 40 osd-columns = 40 # Turn an LCD or OLED display off after N seconds of inactivity # N=0: always off; N=255: always on # Values: 0 <= N <= 255 display-off-secs = 60 # Switch on LCD/OLED display when there is drive activity? # yes: Trigger on track changes and disk writes # sel: Trigger on drive select # no: No automatic trigger # Values: yes | sel | no display-on-activity = yes # LCD/OLED long filename scroll rate in milliseconds per update # Values: 100 <= N <= 65535 display-scroll-rate = 200 # LCD/OLED pause time at start/end of scroll, in milliseconds # Zero means endless scroll # Values: 0 <= N <= 65535 display-scroll-pause = 2000 # LCD/OLED long filename scroll rate during navigation (ms per update) # Values: 0 <= N <= 65535 nav-scroll-rate = 80 # LCD/OLED long filename pause before scroll, during navigation (milliseconds) # Values: 0 <= N <= 65535 nav-scroll-pause = 300 -
Danke! Das war es!

-
Ich habe das OLed Display mittig eingeklebt, wie kann ich nun die gesamte Schrift tiefer setzen?
Die ist ziemlich oberhalb, was mich stört..

-
Edit the config file, and place it on the USB ...
It's all verry nice explained in the config file to know what to change ...
-
Which value exactly should I change?
-
You have the LCD options in the config file, where you can select what for a display you have, and what row should be shown on displey, and where should it be ...
##
## DISPLAY
# Display Type.
# auto: Auto-detect (7-seg LED, LCD, OLED)
# lcd-CCxRR: CCxRR backlit LCD with I2C backpack (16<=CC<=40, 02<=RR<=04)
# oled-128xNN: 128xNN I2C OLED (NN = 32 | 64)
# -rotate: OLED view is rotated 180 degrees
# -hflip: OLED view is flipped horizontally
# -narrow[er]: OLED view is restricted to Gotek display cutout
# (-narrow: 18 chars; -narrower: 16 chars)
# -inverse: Inverse/reverse video (black text on white background)
# -ztech: ZHONGJY_TECH 2.23" 128x32 SSD1305 OLED display
# -slow: Run I2C bus slower (use this if OLED regularly blanks/corrupts)
# Values: auto | lcd-CCxRR | oled-128xNN[-rotate][-narrow[er]]...
display-type = auto
# OLED Font. Narrow and wide options.
# Narrower 6x13 font permits:
# - More characters per row
# - Use of Gotek display cutout (eg. "display-type=oled-128x32-narrow")
# Values: 6x13 | 8x16
oled-font = 6x13
So switch : display-type = auto ...... display-type = (type of your display . look the description)
# OLED contrast/brightness.
# Values: 0 <= N <= 255
oled-contrast = 143
# Text height and arrangement on LCD/OLED and on OSD, respectively.
# 'default', or a comma-separated list (one entry per LCD/OLED row, top down).
# Each list item is a digit plus optional height specifier: <content-row>[d]
# content-row: '0-3' = specified content row, '7' = blank
# 0: Current image name
# 1: Status
# 2: Image/Volume info
# 3: Current subfolder name
# height specifier: 'd' = double height (32px, OLED only; ignored for LCD)
# 'default' depends on display, eg.: oled-128x32='0,1' ; oled-128x64='3,0d,1'
# Values: [0-7][d] | default
display-order = default
osd-display-order = default
Here you can switch what row should be shown in first,second,third row .... (with "d" behind the number you will get an doubled line)
Bitte melde dich an, um diesen Link zu sehen.