Recalbox Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • recalbox.com
    • Gitlab repository
    • Documentation
    • Discord
    1. Home
    2. Tags
    3. oled
    Log in to post
    • All categories
    • kingragnar

      OLED Status Display
      Recalbox General • oled status display • • kingragnar

      2
      0
      Votes
      2
      Posts
      422
      Views

      Zing

      @kingragnar Sorry, we rely on user feedback to know if certain types of hardware work, but since this hardware is quite specific, I believe we don't have a script for it built into Recalbox, so it shouldn't work, and to test it, developers would need of Hardware...

    • lauzge

      Unsolved I2C OLED für Recalbox
      Recalbox • i2c oled für recalbox • • lauzge

      4
      0
      Votes
      4
      Posts
      530
      Views

      Zing

      @lauzge Sie können hier ein issue melden (auf Englisch):
      https://gitlab.com/recalbox/recalbox/-/issues

    • JirenLord

      OLED TV wird sehr Warm beim Spielen RB3+
      Controller/GPIO/USB • recabox raspberry 3 b+ warm oled hdmi • • JirenLord

      3
      0
      Votes
      3
      Posts
      713
      Views

      rollbrett

      @JirenLord Hallo, was ist den die Standard Temperatur der Bildschirmoberfläche? Und um wie viel Kelvin unterscheide sich die Temperatur beim spielen?

    • Galaxy Ranger

      Logoausgabe auf OLED Display
      Recalbox • logoausgabe auf oled display • • Galaxy Ranger

      2
      0
      Votes
      2
      Posts
      707
      Views

      lackyluuk

      Hallo Galaxy Ranger

      Eventuell ist es bereits zu spät für eine Antwort 😕
      Zur Frage zwei kann ich dir jedoch ein paar Infos geben. Du kannst über die GPIO-Pins vom Raspi sogenannte RetroArch-Befehle an den Emulator schicken, so wie du es normal mit den Controllertasten Kombinationen machen würdest.
      Ich habe z.B. so den Reset-Taster meines N64 Builds funktionsfähig gemacht:

      #!/usr/bin/env python import RPi.GPIO as GPIO import time import socket # addressing information of target IPADDR = "127.0.0.1" PORTNUM = 55355 # enter the data content of the UDP packet COMMAND = "RESET" def retroarch(nwcommand): try: s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) except socket.error: print 'Failed to create socket' sys.exit() s.sendto(nwcommand, (IPADDR, PORTNUM)) s.close GPIO.setmode(GPIO.BCM) GPIO.setup(3, GPIO.IN, pull_up_down=GPIO.PUD_UP) def netcmd(channel): retroarch(COMMAND) GPIO.add_event_detect(3, GPIO.BOTH, callback=netcmd, bouncetime=500) while True: time.sleep(0.2)
    • patrickmiranda

      Recalbox com tela secundária em OLED
      Controles / GPIO / Codificador USB • recalbox com tela secundária oled • • patrickmiranda

      3
      0
      Votes
      3
      Posts
      1192
      Views

      patrickmiranda

      @zing Muito obrigado pelo material, Zing! Seria muito bacana se pudesse reproduzir numa tela oled informações como temperatura, clock, etc... Sigo na pesquisa.

      Abraço!