RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. idea
    Log in to post
    • All categories
    • Nathan1031982N

      add external LCD to display current running rom

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development idea
      7
      0 Votes
      7 Posts
      4k Views
      zzerominZ

      @Nathan1031982 I posted related photos and github on forum.
      https://retropie.org.uk/forum/topic/5061/scrolling-game-title-using-16x2-clcd-on-ras-console-pi

    • A

      Rom randomizer

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development random randomizer roms feature request idea
      3
      0 Votes
      3 Posts
      3k Views
      A

      Yeah, basically that. I feel daft now; I actually searched google for the terms "retropie randomizer" and all I got was stuff about splashscreens.
      Thanks though, I'll give the kid mode rom roulette a try later and see if it's functional. Does anyone know if we CAN bring this feature to the normal ES mode with a script or something?

    • M

      OpenMW

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development idea retropie raspberry pi 3
      5
      0 Votes
      5 Posts
      4k Views
      B

      @LSolrac2

    • dankcushionsD

      [IDEA] Use RetroArch's built-in per-ROM config functionality, rather than runcommand and -appendconfig

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development runcommand config cfg retroarch idea
      11
      2 Votes
      11 Posts
      6k Views
      BuZzB

      @Floob yeah - it was after the 1.3.6 release - when the next retroarch release is out I will do some testing etc. (well may test before, but it won't be enabled in retropie until after the point release).

    • S

      Pin protect the retropie tab

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development setup idea
      5
      0 Votes
      5 Posts
      2k Views
      herb_fargusH

      @spikeuk76 this is a workaround that will accomplish what you want:

    • pandg2P

      Idea:Sheep Shaver as an Emulator

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development idea
      3
      1 Votes
      3 Posts
      2k Views
      mediamogulM

      This could be a great alternative, as the current implementation of Basilisk II on RetroPie won't run anything in 8-bit color.

    • dankcushionsD

      Runcommand warning if voltage/temperature throttling

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development feature request idea runcommand voltage temperature
      3
      1 Votes
      3 Posts
      6k Views
      C

      I know this is an old thread, but I'm replying here because it's the first "open" result on a related Google search.
      I wrote a quick script that I'd like to share for quickly parsing the above into a user-readable format

      Sample output:

      Status: 0x50005 Undervolted: Now: YES Run: YES Throttled: Now: YES Run: YES Frequency Capped: Now: NO Run: NO

      Script:

      #!/bin/bash #Flag Bits UNDERVOLTED=0x1 CAPPED=0x2 THROTTLED=0x4 HAS_UNDERVOLTED=0x10000 HAS_CAPPED=0x20000 HAS_THROTTLED=0x40000 #Text Colors GREEN=`tput setaf 2` RED=`tput setaf 1` NC=`tput sgr0` #Output Strings GOOD="${GREEN}NO${NC}" BAD="${RED}YES${NC}" #Get Status, extract hex STATUS=$(vcgencmd get_throttled) STATUS=${STATUS#*=} echo -n "Status: " (($STATUS!=0)) && echo "${RED}${STATUS}${NC}" || echo "${GREEN}${STATUS}${NC}" echo "Undervolted:" echo -n " Now: " ((($STATUS&UNDERVOLTED)!=0)) && echo "${BAD}" || echo "${GOOD}" echo -n " Run: " ((($STATUS&HAS_UNDERVOLTED)!=0)) && echo "${BAD}" || echo "${GOOD}" echo "Throttled:" echo -n " Now: " ((($STATUS&THROTTLED)!=0)) && echo "${BAD}" || echo "${GOOD}" echo -n " Run: " ((($STATUS&HAS_THROTTLED)!=0)) && echo "${BAD}" || echo "${GOOD}" echo "Frequency Capped:" echo -n " Now: " ((($STATUS&CAPPED)!=0)) && echo "${BAD}" || echo "${GOOD}" echo -n " Run: " ((($STATUS&HAS_CAPPED)!=0)) && echo "${BAD}" || echo "${GOOD}"
    • H

      Credit system for real arcade feel.

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development credit idea arcade
      1
      0 Votes
      1 Posts
      942 Views
      No one has replied