Networking and servers • Re: My First Home Server
Welcome and remember to take backups Code: sudo apt updatesudo apt full-upgradesudo apt autoremoveis my preferred way to get everything up to date and remove older packages though you can put it on...
View ArticleTroubleshooting • Re: USB boot requires a high current (5V 5A) power supply....
How could the house or which mains socket used affect the ability of the power supply to negotiate 5A mode on the USB side with the Pi?It is hard to tell why but a noisy mains connection could reset...
View ArticleNetworking and servers • Re: Access mysql database on raspberry pi from...
Is it actually mariadb ?Statistics: Posted by neilgl — Tue Jul 30, 2024 11:39 am
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: Interfacing a 8-bit Serial RGB Display
Thank you, I will certainly look into this. In order to enable the colors in turn I guess I will have to edit the driver itself?If the display-width is 3 times larger, how will this affect the image...
View ArticleGeneral • Re: Progress - basically works but eventually loses MQTT connection
Using MQTT, the Picos eventually lose the connection to the broker, and that's more likely the higher the frame rate is. At 5fps, it remains stable, at 20fps it usually fails within 10 seconds.But...
View ArticleTroubleshooting • Re: Two RPi 5 dead
I now investigated the PMIC a bit. It's a Renesas DA9091 but unfortunately the datasheet does not seem to be publicly available.But looking at the board we can see that it includes eight buck...
View ArticleBeginners • Re: Please help me connect phone to Pi 5 via Bluetooth.
Phones use the OBEX protocol, so you definitely need an OBEX server. The problem seems to be the initial pairing which must be done for the Pi to show up as a share destination. I have a Bluetooth...
View ArticleHATs and other add-ons • Re: So I broke the fan connector
another option: unscrew the fan from the heat sink, mount the - now passive - heatsink only --> better than without any kind of cooling (and no 'advanced techniques' needed)Statistics: Posted by...
View ArticleBeginners • Re: Measuring voltage on GPIO to detect blackout
If you are running Bullseye on your Pi4, use the built in command raspi-gpio e.g.Code: raspi-gpio get 21GPIO 21: level=0 fsel=0 func=INPUT pull=DOWNAlso check out this for gpio...
View ArticleAdvanced users • Re: disable Autostart
You could also check the date in the bash script and exit the script if the date is not right.Code: #!/bin/bash# Exit if month is not Julymm=$(date +%m)if [ $mm -lt 7 ] || [ $mm -gt 7 ]; then exit;...
View ArticleCompute Module • Re: I2C problem at 85°C / Clock-stretching
there is no clock stretching on the Pi; what you see is caused by throttling.Statistics: Posted by aBUGSworstnightmare — Tue Jul 30, 2024 12:05 pm
View ArticleCompute Module • Re: Linux Reboot fail
which manufacturer is that (for the uSD)? Use quality uSD cards and you should not see an issue.Statistics: Posted by aBUGSworstnightmare — Tue Jul 30, 2024 12:06 pm
View ArticleGeneral • Re: i need help on how to get power for multiple sensors
that will not be enough for this projectsHow much power do you need ?The Official Pi 3B PSU can deliver 2.5A via micro-USB so, plug that into a Pico, and you should have over 2A available on VBUS. You...
View ArticleBeginners • Re: SSH RaspberryPi remotely that's using wireguard vpn client
Sure, that is possible. Follow the instructions on https://www.pivpn.io/ and install the WireGuard ‘server’ on your RPi. Then , before you leave your LAN, install the WireGuard ‘client’ software on...
View ArticleCamera board • Re: LINK_FREQ and PIXEL_RATE
Both are covered by the V4L2 documentation - https://www.kernel.org/doc/html/latest/ ... ocess.htmlV4L2_CID_PIXEL_RATE is used with the width, height, V4L2_CID_VBLANK, and V4L2_CID_HBLANK to configure...
View ArticleTroubleshooting • Re: Pi 4B will boot from one m.2 SATA SSD but not from another
Thanks again, David. After the bootloader update, the pi now boots from the 256GB SSD. I'm dd-ing the 32GB-->256GB again right now and will come back if any problems.The bootloader update wasn't a...
View ArticleJava • Re: Java Help with bitwise operators
The stored data type is "byte"Code: byte[] data = new byte[2];Can I assume this is unsigned 8 bits like uint8_t in C ?If so, the & 0xFF mask in "(data[0] & 0xFF)" seems pointless but harmless...
View ArticleTroubleshooting • Re: Bios does not recognize raspberry Pi in g_multi mode
Hi thanks for the tipp I´ve managed to get it working now this lib composite... the BIOS now recognizes the Pi I still have one problem: The Ethernet adapter from the Raspberry Pi, which is configured...
View ArticleTroubleshooting • Re: Raspberry Pi Hardware Repairs
" the cable the wrong way around, so swapped it around ..."Which cable ?The DSI cableStatistics: Posted by JonnyAlpha — Wed Jul 31, 2024 11:59 am
View ArticleInterfacing (DSI, CSI, I2C, etc.) • PWM phase offsets not working on RP1
Hi all!I'm working on a project on a Raspberry PI 5 where I need two synchronised PWM's operating with a phase shift. (Software PWM does not cut it for this application I'm afraid.)My problem is that...
View Article