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.

    Dell LCD Display with ESP32

    Scheduled Pinned Locked Moved Hardware
    12 Posts 4 Posters 2.6k 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.
    • A Offline
      Antony1
      last edited by

      Hello,

      I’ve been looking at the interesting possibilities of a MagicMirror for some time now, but I don’t want to use a mirror, just a laptop display. I have a few Dell 14 inch displays lying around here. I wanted to ask whether it is possible to use such a display with an ESP32 microcontroller.
      This is what the display looks like:
      alt text
      this is what the display controller looks like
      alt text

      My idea was to build a digital dashboard that is as thin as possible, max 1-1.5cm. With such a display and an ESP32, wouldn’t that theoretically be possible? I’m still wondering whether I can also install the modules with the ESP32 or is this only possible with a Raspberry Pi?
      Sorry if the questions sound so silly, but I’m a complete new in this area.

      S S 2 Replies Last reply Reply Quote 0
      • S Offline
        sdetweil @Antony1
        last edited by sdetweil

        @Antony1 there are a lot of module dependencies , you would need to run some supportable linux on the esp32

        maybe a browser to access a MagicMirror server somewhere else, but i don’t know what browser that would be. has to be fairly current cause of the new es6 js code we use

        i don’t see either of those choices in searching.
        a pi02w is pretty ok for MagicMirror
        wifi, just a little bigger than an esp32 board
        1/4 in tall, 1 in wide 2.5 in long usb micro for power like esp32. mini hdmi, jack for usb hub if you need it

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • S Offline
          schris88 @Antony1
          last edited by

          @Antony1 Only way I see is running Magicmirror server only and esp32 as client see https://docs.magicmirror.builders/getting-started/installation.html#other-operating-systems (scroll way down) the esp32 will not be able to handle magicmirror itself.

          esp32 can have a vga output (https://github.com/bitluni/ESP32Lib) which is present on most display control boards from ebay etc. that i´ve seen.

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @schris88
            last edited by

            @schris88 but how do you get the browser on the esp32 to output to the vga

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              schris88 @sdetweil
              last edited by

              @sdetweil not sure, it just sounds like you can have at least any video output but it is very limited

              ESP32Lib implements VGA output over I²S.
              The highest possible resolution with this library is 800x600. Many common resolutions like 320x240 are preconfigured und can be used without any effort. Two color depths are available. 14Bit R5G5B4 and 3Bit(8 color) R1G1B1 for convenience and memory savings.

              so this wont look good, esp32 is not the ideal hardware to do this, I love them too for WLED stuff etc. but not very good with displays except those little 1" oleds etc.

              Pi zero 2W is like 10 bucks more and you dont need to fiddle with even getting a video out to work.
              Maybe someone else has any idea, I would say wrong hardware for the job.

              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @schris88
                last edited by

                @schris88 there is the electrical part which you are talking about
                and then there is the app part…

                one can write an esp32 module to output to the electrical device… and thats cool.
                but MM uses a web browser with a full JS scripting engine for its display engine

                so that app function needs to be provided on the OS/hardware platform so that our app function can work…

                I don’t see a functional browser on ESP32 anywhere when searching
                I have all kinds of code running on ESP32 devices doing all kinds of things…

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                A 1 Reply Last reply Reply Quote 0
                • A Offline
                  Antony1 @sdetweil
                  last edited by

                  @sdetweil @schris88
                  Thank you for your very helpful answers! I hadn’t even thought of the Raspberry Pi Zero 2W - that sounds like a really good alternative to the ESP32.
                  I have a few questions about this:

                  What would be the best way to set up the system?
                  Which hardware components do I need besides:

                  Raspberry Pi Zero 2W
                  SD card
                  Wiring to the display
                  Is there anything important missing?

                  Would this link be the correct guide for the basic installation of MagicMirror?
                  https://docs.magicmirror.builders/getting-started/installation.html#manual-installation
                  Additional important questions:

                  Which power supply/power adapter would you recommend for the Zero 2W?
                  Do I need an active or passive cooler for continuous operation?
                  Are there any limitations on the number of modules that the Zero 2W can process simultaneously?
                  Would you recommend a specific Linux distribution?
                  Do I need additional hardware (keyboard, mouse, etc.) for the initial setup, or can I set everything up headless?

                  Best regards,
                  Antony1

                  S 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @Antony1
                    last edited by

                    @Antony1 the pi02w is a pi3 in pi0 form factor.
                    has hdmi on board for the display , and wifi
                    pi02w doesn’t support a fan

                    any 2a power supply will be good

                    use the raspi imager to create the sd card
                    you can set it up so you don’t need keyboard or mouse to run on first boot

                    i would run the legacy 32 bit image
                    enable ssh in the config, then you can use ssh connection from your dedktop/laptop to
                    access

                    run my installer script, it does all the work
                    see
                    https://github.com/sdetweil/MagicMirror_scripts

                    limitations:
                    well smaller memory means the swap file will be used when memory gets full, sd cards are slow
                    but the next device up is a bigger form factor

                    some of the competition has started making pi0 form factor boards either more memory and faster processors (for more money of course)

                    this form factor only has one micro usb port, i recommend a hub w usb A ports gor mouse/keyboard

                    also recommend one of the free sw tools to run from you home system, winscp or bitvise ssh clients, they give you the terminal window AND a file manager view of the target pi file system so you can double click to edit the pi/MagicMirror files and drag/drop files too

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      schris88 @sdetweil
                      last edited by

                      @sdetweil There is a hole thread about it in the forum, I have not read any of it tho
                      https://forum.magicmirror.builders/topic/18194/raspberry-pi-zero-w-for-magic-mirror

                      maybe you find some good answers there, it´s not a new idea, I know the zero 2W from many retro consoles and handhelds atm, so it seems to be powerfull enough while light on the battery. Many of the Anbernic devices run it.

                      S 1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil @schris88
                        last edited by

                        @schris88 thanks . really @Antony1 needs the info

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 1 / 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