Maybe your device is defective. Try Raspberry Pi OS. If that OS also doesn't work on HDMI-0, order a replacement.
Posts by Da Flex
-
-
-
-
-
-
-
Use LE 10.0 Beta. It has an MPD fix included.
-
LE uses TrueType fonts on an OpenGLES surface. Check whether you're low on memory after a while. If yes, a swap file could help.
-
- activate debug logging at GUI (HUD will appear)
- reboot
- reproduce the error
- login by SSH
- run pastekodi (can take a while)
- post the resulting link
-
-
Can it be that the computer can handle the issues (incorrectly wired or faulty cables) but the rpi cant?
No, Linux handles the Ethernet protocol perfectly. If your laptop can deal with the same Ethernet cable, check your router settings. Make the RPi a known and trusted device for the firewall (compare with your laptop settings).
-
Yes, the dtoverlay method still works fine. If you want to avoid the shutdown menu, read our showcase.
-
I'm using the same scripts with an LED instead of a fan. The warning is normal. The RPi Tools add-on seems to have a bug on it's current version, because my LED switches off after a while without obvious reason. I think we have to wait for a fix.
-
I'm using 12m Ethernet cable myself on an RPi - no problems. Make sure you have WiFi disabled at LE settings.
-
The prompt is correct.
You can't switch pin #4 on / off. Use the programmable pin #33 (GPIO 13) and it's opposite Ground pin #34 instead.
Create /storage/.config/autostart.sh :
Create a /storage/.kodi/userdata/scripts folder.
Create /storage/.kodi/userdata/scripts/fan.py :
Python
Display More#!/usr/bin/python import sys sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib') import RPi.GPIO as GPIO import os fan_gpio_number = 13 GPIO.setmode(GPIO.BCM) GPIO.setup(fan_gpio_number, GPIO.OUT) GPIO.output(fan_gpio_number, True)This will turn the fan on at system start. Adapt the script for your needs.
-
-
Sounds like a bug. Try LE 10.0 Beta.
-
That's the cause:
CodeJun 09 07:46:10.365327 LibreELECrpi4 kernel: Out of memory: Killed process 813 (kodi.bin) total-vm:809796kB, anon-rss:117624kB, file-rss:18040kB, shmem-rss:23132kB, UID:0 pgtables:800kB oom_score_adj:0Create a swap file to increase memory.