• 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.

FireTV or Android TV as MM client

Scheduled Pinned Locked Moved Hardware
20 Posts 4 Posters 6.4k Views 4 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.
  • K Offline
    kayakbabe @OldSunGuy
    last edited by Sep 11, 2022, 2:05 AM

    @OldSunGuy Thats really cool! I’ll have to check that device out.

    1 Reply Last reply Reply Quote 0
    • K Offline
      korey_sed @OldSunGuy
      last edited by Sep 11, 2022, 12:32 PM

      @OldSunGuy Thanks.

      I played with my setup some more and realized that it is the animation in MMM-Background that was causing most of my issues. Once i stopped that, it seems to work fine with the exception of the fonts being too big. Did you run into that latter issue as well?

      Also took a look at Chromecast with GoogleTV. Looks like a better alternative to an official device that may last longer. I could not find specs on it, but I hope it can handle the animations.

      TV Bro is also good but just in case you are interested, I was looking at Fully Kiosk Browser since it is also controllable from Home Assistant although i have not looked into it just yet.

      O 1 Reply Last reply Sep 11, 2022, 11:58 PM Reply Quote 0
      • O Offline
        OldSunGuy @korey_sed
        last edited by OldSunGuy Sep 12, 2022, 12:00 AM Sep 11, 2022, 11:58 PM

        @korey_sed Fonts were adjusted via CSS and/or (un)zoom.

        The following was copied from Google Store

        Length: 6.4 in (162 mm)
        Width: 2.4 in (61 mm)
        Height: 0.5 in (12.5 mm)
        Weight: 1.9 oz (55 g)
        Colors: Snow, Sunrise, Sky
        Connectivity: Wi-Fi 802.11ac (2.4 GHz / 5 GHz); Bluetooth®

        Operating System: Android TV OS
        Resolution: Up to 4K HDR, 60 FPS
        Supports resolutions up to 4K and high dynamic range (HDR)
        Video Formats
        Dolby Vision, HDR10, HDR10+ for stunning picture quality.
        1Ports
        HDMI to plug directly into the TV
        USB Type-C power

        K 1 Reply Last reply Sep 12, 2022, 1:15 PM Reply Quote 0
        • K Offline
          korey_sed @OldSunGuy
          last edited by Sep 12, 2022, 1:15 PM

          @OldSunGuy

          Thanks again. I did look into the hardware specs and it seems to run a Amlogic S905D3G (4x ARM Cortex-A55 @ 1.9 GHz). so it really is not much better than the device I currently use which makes me doubt if it can handle the animations.

          As for the font size, it is a little more complicated than that.

          • Zoom out is not possible (seems to already be at the min)
          • Changing font size works but then line size, etc, also needs to be adjusted to fix it all, so a little more involved.
          • If I fix it for this, then I will most likely have issues with it on normal displays (e.g. using rpi as a client). This is not meant to be the only client.

          Regarding the last point, is it possible to serve different CSS based on user agent string?

          S 1 Reply Last reply Sep 12, 2022, 1:26 PM Reply Quote 1
          • S Offline
            sdetweil @korey_sed
            last edited by sdetweil Sep 13, 2022, 1:50 PM Sep 12, 2022, 1:26 PM

            @korey_sed no, but… there is support for loal overrides in chrome browser

            see this post
            https://forum.magicmirror.builders/topic/17190/seperate-config-for-web-access/4?_=1662987708966

            u might also be able to do settings in case based on screen size…

            in another system I do

            :root{
              --scale-factor: 1;  /* set default scaling in case we have partial window, debug or in vm terminal window */
              --design-width: 1920px;
              --design-height: 1080px;
            }
            
            @media screen and (orientation: landscape) {
                :root{
                    --scale-factor: var(width) / var(--design-width);
                 };
             }
             @media screen and (orientation: portrait) {
                :root{
                    --scale-factor: var(width) / var(--design-height);
                 };
             }
            
            /* for example */
            h1 {
                font-size:  calc( 120px * var(--scale-factor));
            }
            

            edit: updated css

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            K 1 Reply Last reply Sep 13, 2022, 1:48 PM Reply Quote 0
            • K Offline
              korey_sed @sdetweil
              last edited by Sep 13, 2022, 1:48 PM

              @sdetweil
              thanks. this is great. will try it.

              K 1 Reply Last reply Sep 15, 2022, 4:46 AM Reply Quote 0
              • K Offline
                kayakbabe @korey_sed
                last edited by Sep 15, 2022, 4:46 AM

                @korey_sed Another css tip is not to use “fixed” sizes for things like fonts and widths of div containers or images.

                I prefer to use units which are relative in size like em and vh and vw which are relative size units. so 1em on a phone versus 1em on a high rez computer screen will be different sizes relative to the media display. better than pixels which are a fixed size and do not scale with the display.

                For instance, I use vw and vh for images, because i actually move my pi around to different size monitors. vw is view height and vh is view width. So for my module that shows an random image (that can change from portrait or landscaped and size everyday), I set the css up for max-width: 50vw which translates to 50% of the view port size and 30vh. (vh is view height.) That way an image in that module will never be bigger than 50% of the width or 30% height of the screen. I find relative sizing really useful for websites that have to support a lot of different devices looking at it. No beans about it, MagicMirror is definitely a website.

                You might want to google about relative css units. here is a links to get you started if you want to try it.

                https://www.freecodecamp.org/news/css-unit-guide/

                K 1 Reply Last reply Sep 15, 2022, 12:39 PM Reply Quote 0
                • K Offline
                  korey_sed @kayakbabe
                  last edited by Sep 15, 2022, 12:39 PM

                  @kayakbabe Thanks. this is good advice. I am hoping the MM core CSS already does this and it is only my custom CSS I have to worry about, but will find out soon. Waiting on my Chromecast with GoogleTV to arrive.

                  S 1 Reply Last reply Sep 15, 2022, 12:50 PM Reply Quote 1
                  • S Offline
                    sdetweil @korey_sed
                    last edited by Sep 15, 2022, 12:50 PM

                    @korey_sed core tries to be adjustable… but add on modules may not

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • K Offline
                      korey_sed
                      last edited by Sep 16, 2022, 1:23 PM

                      So it turned out to be very easy.

                      Fully kiosk browser told me that the resolution is 1920 x 1080 even on a 4K TV so I just had to change the body. For some reason setting it to 100% causes issues but. this works and nothing else needs to change.

                      @media screen and (max-width: 1920px) {
                      body {
                      height: 1080px;
                      width: 1920px;
                      }
                      }

                      S 1 Reply Last reply Sep 16, 2022, 1:36 PM Reply Quote 0
                      • 1
                      • 2
                      • 2 / 2
                      2 / 2
                      • First post
                        12/20
                        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