Troubleshooting • Re: CUPS BROTHER MFC-J5910DW
i have a Brother Laser printer, and i had to install brlaser.apt search brlaseryou have an inkjet. It may not help, but its worth a tryStatistics: Posted by terribleted — Sat Dec 21, 2024 2:59 pm
View ArticleMicroPython • Re: Building an Internet-Radio using a Pico W using just Python
I just tried the linked example code with adaptions to the Pico W (see below) and the Pimoroni Pico Audio Pack.It works when using a 64 kbit/s audio stream delivered via HTTP (unencrypted).Switching...
View ArticleAutomation, sensing and robotics • Re: Tiny Code Reader from Useful Sensors...
Could you direct me to the official documentation for using the “Tiny Code Reader from Useful Sensors” module with a raspberry pi 4?Ask the designer/seller. Their email address is on that...
View ArticleAI Camera - IMX500 • Re: Hello world for Raspberry Pi AI camera
I don't have a spare RPi4, but I tried an RPi3 and got the same problem as you. I am afraid this stuff only works on RPi5.Statistics: Posted by marianvittek — Sat Dec 21, 2024 3:40 pm
View ArticleRaspberry Pi Connect • Re: cli commands not saved to $HOME/.bash_history
One poster suggested using `history -a`, and another suggested using `history -w` to explicitly save your command history.There is an important difference between them: `history -a` appends "new"...
View ArticleGeneral discussion • Re: A Pi Pie Chart
No idea, likely all the RAM optimised profiles, temp SDRAM timings in the bootup settings, kernel improvements along the way from 6.1 to 6.6. 6.12 show improvements from 6.6. and both use a type of...
View ArticleDevice Tree • Re: Writing a DTS file for the audio codec.
why don't you ask the author of the posting on hackaday?You should get that kind of details from your device tree bindings, shouldn't you? https://github.com/raspberrypi/linux/bl ... 98090.yamlThe...
View ArticleTroubleshooting • Re: Howcome netatlk can be installed on bookworm lite but...
Use Samba unless you’re trying to connect old Apple hardware. Apple have deprecated AFP which is what netatalk implemented.Statistics: Posted by trejan — Sun Dec 22, 2024 3:38 pm
View ArticleTroubleshooting • Re: Raspberry Pi HDMI and Files not working
I tried removing it and putting it back in but i still can’t see it on windows, also I tried using my old pc and installed the latest Ubuntu version on it but like in the VM I just see some file...
View ArticleOfficial Display • Re: Touch Display 2 not rotating
What command do you use to get this information? I want to see this information for vc4-kms-v3d.That's from the README in the /overlay directory. Online here: https://github.com/raspberrypi/rpi-firm...
View ArticleCamera board • Re: Blurry Images While Camera In Motion
Try short exposure timesCode: from picamera2 import Picamera2picam2 = Picamera2()picam2.configure(picam2.create_still_configuration())def do_capture(exp_time): picam2.set_controls({"ExposureTime":...
View ArticleBeginners • Re: 6 weeks and out of time
You need to make sure that the venv has been activated in the command line before running your python code.As for running your code at system start you might want to look at the following:Running A...
View ArticleDeutsch • Re: RPI5 DC Wandler
Kannst Du vielleicht die 12 V über die lange Leitung führen und die Wandlung nach 5 V nahe am Raspi machen?Vielleicht ist es einfacher, PoE über diese Entfernung zu verwenden.Statistics: Posted by...
View ArticleFor sale • Raspberry Pi 15.6" Monitor Stand
Hi All,I've just got my new Raspberry Pi 15.6" monitor last week and as much as I like the built-in kick stand I wanted my monitor to sit at a certain angle and for it be raised up off my desk a...
View ArticleOther projects • Re: Powering an arcade style cabinet from a single UK plug
Why not just mount a 4 way mains adapter in the cabinet?Statistics: Posted by rpiMike — Sun Dec 22, 2024 3:54 pm
View ArticleBeginners • Re: What is the path syntax to a shared folder?
Thank you for your interest.I appreciate that the 'other' user must be able to 'cd' (traverse) into the shared folder (follow the total path)However, there must (should be) a way to share a common...
View ArticleBeginners • Re: NOOB (not really) w/RPi5 Dev Kit
Can you try another SD cardNo Joy !Statistics: Posted by theoldwizard1 — Mon Dec 23, 2024 2:46 pm
View ArticleBeginners • Re: My cheap and easy LAN setup for a headless zero with on/off...
by ejolson » Mon Dec 23, 2024 1:28 am On a test I wrote the Zero 2 consumes 730 mA in 64-bit mode but only 580 mA in 32-bit mode. https://forums.raspberrypi.com/viewtopic.php?p=1930593#p1930593It...
View ArticleTroubleshooting • Re: HC05 and i2c working at the same time
Code: # I2C Scanner MicroPythonfrom machine import Pin, SoftI2C, UARTimport ssd1306import time# You can choose any other combination of I2C pinsi2c = SoftI2C(scl=Pin(0), sda=Pin(1))uart1 = UART(1,...
View ArticleBeginners • Re: How can i control 100 solenoids from a single Raspberry Pi
Redesigning the project to use a Pi will be a significant effort, but nothing ought to stop you. However, the design is already complete and working, and easy to replicate, so why do you want to do...
View Article