You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using rc.local and recompiling the binary every reboot, it seems like it may be more efficient to use systemd to manage the LCD display service.
That's what I did by creating the following unit file at /usr/lib/systemd/system/lcd_display.service:
Then I ran sudo systemctl daemon-reload to reload the daemon, sudo systemctl start lcd_display to start the display, and sudo systemctl enable lcd_display to make sure it starts at boot.
This setup assumes you're running the latest version of Raspberry Pi OS, Debian 11, or Ubuntu 20.04 or later.
The text was updated successfully, but these errors were encountered:
Nice Thanks
You may be interested in my branch https://github.com/TiVoHomeUser/SKU_RM0004 I added a trap that blanks the screen on shutdown.
I also added some status color to the display info
Instead of using
rc.local
and recompiling the binary every reboot, it seems like it may be more efficient to usesystemd
to manage the LCD display service.That's what I did by creating the following unit file at
/usr/lib/systemd/system/lcd_display.service
:Then I ran
sudo systemctl daemon-reload
to reload the daemon,sudo systemctl start lcd_display
to start the display, andsudo systemctl enable lcd_display
to make sure it starts at boot.This setup assumes you're running the latest version of Raspberry Pi OS, Debian 11, or Ubuntu 20.04 or later.
The text was updated successfully, but these errors were encountered: