Posts by Da Flex
-
-
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.
-
Disable Bluetooth.
-
Bluetooth is broken on LE, so it maybe affects audio rooting in a bad way. Just deactivate it.
-
Got it. For such advanced routing I suggest to start with Raspberry Pi OS. You'll get much more software options and community support on that OS. If you made it work, come back, show the Rpi OS solution, and there is a chance to adapt it on LE.
-
I'm using CEC with a Panasonic Plasma TV. CEC is called Viera Link on this brand. No issues since many years.
-
Read this showcase: Click!
-
Also try to boot from an USB-2 port. Maybe it's an internal bus issue.
-
Tweak your programming skills and build your own driver then. It's unlikely to find someone, who does the job for you.
-
If it worked on RPi3, it could be a bug. Finding a solution is hard at the moment. If you write a bug report for LE 9.2.6, the answer is to switch to LE 10.0 Beta. On LE 10.0 Beta video settings move from config.txt to cmdline.txt with a different syntax. All info I have about the new video settings is here: Click! As you can see, there is no YCbCr setting. I think all you can do is waiting until it's implemented.

-
We have a showcase about audio on Chrome: Volume Control for Chrome Add-On