• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

RPi 3B+ with 'Bullseye' can't rotate screen?

Scheduled Pinned Locked Moved Hardware
19 Posts 9 Posters 6.0k Views 9 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    fribse @fribse
    last edited by Jun 25, 2022, 4:29 PM

    @fribse Ok, so now I’ve gotten a second RPi3b+. Apparently the monitor doesn’t like the way that Bullseye rotate the screen (by using the ‘Screen orientation’ in the GUI).
    So how do I rotate the screen in ‘the old way’ which works fine on the monitor.
    My guess is that it’s modifying the refresh rate beyond the capabilities of the monitor.
    It’s usually running on 60Hz, and I tried changing it to 50Hz, but that didn’t change anything.

    So what do I do now? I would really like to use the bullseye, as I can’t get Home Assistant to control the mirror if I have screencast installed on the mirror under Buster.

    N 1 Reply Last reply Jun 25, 2022, 6:54 PM Reply Quote 0
    • N Offline
      N6NG @fribse
      last edited by Jun 25, 2022, 6:54 PM

      @fribse I use a RPi3 B+ and Bullseye and I do the rotate in the boot/config.txt and it works ok for me.

      K F 2 Replies Last reply Jun 25, 2022, 7:23 PM Reply Quote 0
      • K Offline
        karsten13 @N6NG
        last edited by Jun 25, 2022, 7:23 PM

        @fribse

        I have no solution for your problem but if you use the WebUI to change screen settings in bullseye the changes are made here:

        pi@pi4:~ $ cat /usr/share/dispsetup.sh
        #!/bin/sh
        if ! grep -q 'Raspberry Pi' /proc/device-tree/model || (grep -q okay /proc/device-tree/soc/v3d@7ec00000/status 2> /dev/null || grep -q okay /proc/device-tree/soc/firmwarekms@7e600000/status 2> /dev/null || grep -q okay /proc/device-tree/v3dbus/v3d@7ec04000/status 2> /dev/null) ; then
        if xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off --dryrun ; then
        xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate normal --output HDMI-2 --off
        fi
        fi
        if [ -e /usr/share/tssetup.sh ] ; then
        . /usr/share/tssetup.sh
        fi
        exit 0
        

        So you could play with the xrandr command, may this helps …

        D 1 Reply Last reply Jul 18, 2022, 2:55 PM Reply Quote 0
        • F Offline
          fribse @N6NG
          last edited by Jun 27, 2022, 7:05 AM

          @N6NG Ok, and what are you writing in the config for it to work? That would be a big help for me :-)

          K 1 Reply Last reply Jun 27, 2022, 10:46 PM Reply Quote 0
          • K Offline
            kayakbabe @fribse
            last edited by Jun 27, 2022, 10:46 PM

            @fribse it’s not in the mirror config. you have to change the rasperrypi’s actual configuration

            F 1 Reply Last reply Jun 28, 2022, 9:31 AM Reply Quote 0
            • F Offline
              fribse @kayakbabe
              last edited by Jun 28, 2022, 9:31 AM

              @kayakbabe Yes, I’m referring to /boot/config.txt, not Magicmirror/config/config.yaml :-)

              N 1 Reply Last reply Jul 2, 2022, 8:18 PM Reply Quote 0
              • N Offline
                N6NG @fribse
                last edited by Jul 2, 2022, 8:18 PM

                @fribse It is in the boot/config.txt file itself. Not in the MagicMirror/config/config.js file.
                Just cd /boot and sudo nano config.txt and either find the display_rotate=0 and change it to display_rotate=1
                or add the line display_rotate=1 I added it under the #config_hdmi_boost=4 line but I suspect you could add it just about anywhere…
                Dennis N6NG

                1 Reply Last reply Reply Quote 0
                • D Offline
                  doctore @karsten13
                  last edited by doctore Jul 18, 2022, 2:57 PM Jul 18, 2022, 2:55 PM

                  @karsten13 said in RPi 3B+ with 'Bullseye' can't rotate screen?:

                  /usr/share/dispsetup.sh

                  The created file looks different in my case.

                  #!/bin/sh
                  if ! raspi-config nonint is_pi || raspi-config nonint is_kms ; then
                  if xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate right --dryrun ; then
                  xrandr --output HDMI-1 --primary --mode 1920x1080 --rate 60.000 --pos 0x0 --rotate right
                  fi
                  fi
                  if [ -e /usr/share/tssetup.sh ] ; then
                  . /usr/share/tssetup.sh
                  fi
                  if [ -e /usr/share/ovscsetup.sh ] ; then
                  . /usr/share/ovscsetup.sh
                  fi
                  exit 0
                  

                  I configure my MM with ansible. All old settings via /boot/config.txt don’t work anymore with my RPi3 B+ and Bullseye.
                  Using dispsetup.sh is the only working solution.

                  I also had to set this in /boot/config.txt:

                  ...
                  # Enable DRM VC4 V3D driver
                  #dtoverlay=vc4-kms-v3d
                  ...
                  [all]
                  dtoverlay=vc4-fkms-v3d
                  
                  F 1 Reply Last reply Jul 21, 2022, 8:48 AM Reply Quote 0
                  • F Offline
                    fribse @doctore
                    last edited by Jul 21, 2022, 8:48 AM

                    @doctore Ok, I’ll try to see if that works, thankyou!

                    1 Reply Last reply Reply Quote 0
                    • K karsten13 referenced this topic on Sep 13, 2023, 7:22 PM
                    • 1
                    • 2
                    • 2 / 2
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Sam, technical setup by Karsten.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy