Create the Ultimate Human-To-Web Device | Raspberry Pi Kiosk Mode

Sdílet
Vložit
  • čas přidán 11. 09. 2024

Komentáře • 36

  • @-ColorMehJewish-
    @-ColorMehJewish- Před 11 dny

    Just to mention --- the Pi Imager has an OS called "Full Page OS" that already does much of the same thing.
    Your guide is cooler than their setup tho

  • @Tortita13
    @Tortita13 Před měsícem

    Thank you for this! i wanted to do a project like this for so long!

  • @MegaBlox_YT
    @MegaBlox_YT Před 12 dny +1

    Nice

  • @gayanx86
    @gayanx86 Před měsícem

    Great information. Just the thing I wanted for the Pi5 LCD I ordered yesterday. 🤩

  • @mariopojoy
    @mariopojoy Před měsícem

    Nice project, you helped me alot with this one, although I went for a more manual approach on changing screens using GPIO and a touch sensor and a switch for turning off the display once I'm done and away from desk. I use this for clock, calendar and HomeAssistant dashboard.

  • @alexlovett1991
    @alexlovett1991 Před měsícem

    Not sure about chromium but chrome has plugin to rotate between tabs, really handy we used it as a screen for Jenkins / jira etc

  • @johntcantrell
    @johntcantrell Před 12 dny

    What are you using to create the full page dashboard? I’m currently using DAKBoard but would love to move to something with no cost.

  • @jyvben1520
    @jyvben1520 Před měsícem

    Nice demo, Firefox also has kiosk mode and can be configured to run on a chosen display in a 2 display system if os is running X11. (untested)
    raspi os can be configured to run X11, it is in the raspi-config (terminal version) Advanced options = A6 Wayland (gives choice Wayland or X11) 2024-08-05
    seems xdotool also exists, works on my rpi5 X11. (xdotool keyboard uses qwerty layout)

    • @jyvben1520
      @jyvben1520 Před měsícem +1

      "unclutter" command seems to hide the mouse

    • @Core-Electronics
      @Core-Electronics  Před měsícem +1

      unclutter is brilliant, we have it in our x11 guide as well, such a shame it doesn't work on Wayland yet. 😔

  • @emeraldent
    @emeraldent Před 27 dny

    Bro, this is killer! The idea cauldron is bubbling! Thank you! Liked and subbed my guy!

    • @Core-Electronics
      @Core-Electronics  Před 27 dny

      Idea cauldron, never heard it put that way but it really gets the idea across, happy making!

  • @hashimsawalha
    @hashimsawalha Před 4 dny

    can someone help me, the wayfire folder has another folder that says default.ini. thats where you put the autostart comand, but its read only. does anyone have any solutions

  • @wilty5
    @wilty5 Před měsícem +2

    Can I use another browser instead of Chrome?

    • @Core-Electronics
      @Core-Electronics  Před měsícem +1

      During testing I managed to get this to work with Firefox as well! You can change the line where we open chromium to instead open firefox. The start up options are different and a quick google search can find them. But the rest of the guide should be nearly the same, but some parts may need a little modification here and there.

    • @wilty5
      @wilty5 Před měsícem

      @@Core-ElectronicsThanks

    • @kitchenanykey
      @kitchenanykey Před 25 dny

      There is no option to launch another. It should be Firefox, but its too buged in kiosk mode.
      btw chromium not perfect too - this version cant work with all kind of cameras.

  • @mrafayshams3089
    @mrafayshams3089 Před 25 dny +1

    How to show a local webpage you are hosting?

    • @Core-Electronics
      @Core-Electronics  Před 24 dny +1

      Just get it to open the address! There are a lot of ways to host a webpage, and we have a guide on how to host one on a microcontroller if you are interested. This is mainly for controlling hardware plugged into the microcontroller, but it might be a good starting point!
      czcams.com/video/hLLUxuFxLOI/video.html

  • @samagarwal3804
    @samagarwal3804 Před 13 dny

    no fan in your case. How long can your raspi work ?

    • @Core-Electronics
      @Core-Electronics  Před 13 dny

      We attached the active cooler to the pi and had no issues! The case is aluminium and isn't completely airtight + looking at a webpage isn't too intensive of a task. As long as you have a Pi with at least a passive cooler on there, you shouldn't have too much of an issue.

  • @DerSolinski
    @DerSolinski Před měsícem

    Use DietPi instead of Raspbian.
    No bloat, just what you need and starting into kiosk mode is literally a checkbox in the config manager...
    Runs smoothly on the older models too.

    • @Core-Electronics
      @Core-Electronics  Před měsícem

      We went with Raspbian as it allows people to follow other guides they may also want to run on their Pi at the same time. But if I were to get an old Pi 3B or 2 out of the cupboard and run it in kiosk, DietPi would be the way to go!

  • @kitchenanykey
    @kitchenanykey Před 25 dny +2

    KIOSK mode means that the user will never see either the desktop or the panel.
    As u can see - desktop and panel was loading before browser opens. I wrote about this mistake everywhere (official forums too).
    The problem is - [core] module in wayfire.ini file is not declared. Thats some explanation:
    # this option turns on [autostart] plugin
    [core]
    plugins = \
    autostart
    # When plugin is declared - this part of configuration should working
    [autostart]
    # next parameter disables wallpaper, start a panel and dock
    autostart_wf_shell = false
    # turn off screensaver
    screensaver = false
    # turn off Display Power Management Signaling
    dpms = false
    # starts chromium with specific page in KIOSK mode, without error dialogs, without panels and bars, without welcome message, using Ozone platform abstraction layer
    chromium = chromium-browser google.com --kiosk --noerrdialogs --disable-infobars --no-first-run --ozone-platform=wayland >
    U can check it on my GitHub page: githubadress/nozloy/rpi-wayland-wayfire-kiosk

  • @JaymeEduardo
    @JaymeEduardo Před 23 dny

    and the keyboard?

  • @AdamHinckley
    @AdamHinckley Před 13 dny

    9:13 how do you get it to do a auto scroll down on pages?

    • @Core-Electronics
      @Core-Electronics  Před 13 dny

      You could use ydotool to simulate scroll wheel movements, or your could use wtype to press the arrow keys. Something like:
      wtype -P Down
      sleep 1
      wtype -p Down
      The capital -P means press the key, then sleep for how ever long you need, then the lower case -p means to release it.

    • @AdamHinckley
      @AdamHinckley Před 12 dny

      @@Core-Electronics thanks

  • @johnadams1976
    @johnadams1976 Před měsícem

    double clicking the script file does nothing for me....doesn't fire up browser

    • @Core-Electronics
      @Core-Electronics  Před měsícem

      If you open the shell script and you don't get the options to execute, open, etc... then you haven't made it an executable properly. Try running "sudo chmod +x run_kiosk.sh" again. If it does open that little option window, then double check your code.
      If you are still having issue with it, feel free to post on our dedicated forum topic for this video, we have a lot of maker eyes over there that can help just give us some info of the problem. Cheers!
      forum.core-electronics.com.au/t/how-to-set-up-a-raspberry-pi-kiosk-launch-a-fullscreen-webpage-on-boot/20578

  • @pathfinderpolska
    @pathfinderpolska Před měsícem

    It is like android

    • @MehdiGuizani
      @MehdiGuizani Před měsícem +1

      Not really 😂 it’s more Linux 😅