AI Camera - IMX500 • Hello world for Raspberry Pi AI camera
Hello,I am not an AI oriented guy, but I am interested in the AI camera because it is a visual processing unit with built-in convolution and matrix operations. I am also not a Python developer, but it...
View ArticleBeginners • Re: How to install locales with a script
Thanks, @jojopi.Here is my particular use case: I have a script that incorporates all the necessary steps to set up a digital picture frame.It includes geolocation, meaning users can see where they...
View ArticleNetworking and servers • Re: one pi to rule them all....
Ok, have got to the point where I am using xfce terminal in a Bash script:Code: xfce4-terminal --tab --title="DoorPi4" --command='sshpass -p {PWord} ssh {IP}'Question - is it possible to pass a...
View ArticleGeneral • Re: Trace FIFO and TPIU with ITM
Only one bit must be set, bit0 = 1 bit wide, bit1 = 2 bit wide ... bit 31 = 32 bit wide.Ahh. You are right, I was too blind to see it. This Thanks!Now I also get data that looks promising. I will see...
View ArticleDevice Tree • Re: DHT11
For anyone still interested in this problem, I recently updated my tutorial to use Raspberry PI with DHT11. I found that you must update the Raspberry PI firmware at least at the 6454 pull request....
View ArticleTroubleshooting • Re: DHT 11, not working how I need it to work
With the latest Raspberry PI OS releases you don't need anymore to install specific Python libraries, as the OS brings specific modules to manage DHT11 (and DHT22) sensors. You just need to add the...
View ArticleOther RP2040 boards • Re: PICO 2 RP2350 clone
This was already discussed few times. They remove company logos from images on aliexpress for some reason but it is unrelated to the product you will get. It is perhaps to pass some check or avoid...
View ArticleRaspberry Pi Connect • Re: Having trouble with Raspberry Pi Connect Lite
Are you using the Raspberry Pi Connect CLI as a regular user or were you running your rpi-connect commands as another user (e.g. root) via sudo?In order to work, rpi-connect needs to connect to the...
View ArticleRaspberry Pi Connect • Re: Raspberry Pi Connect not working
Please also see common troubleshooting tips on how to share logs from rpi-connect to help us diagnose your issue.Statistics: Posted by paulmu — Mon Nov 11, 2024 9:08 am
View ArticleTroubleshooting • Re: USB ports not working after reinstall to newest Bookworm
You sait that the way USB serial chips are treated has changed in Linux at some point in time. Where can I find some more info about this? ?This might give me some ideas. I've looked into serial port...
View ArticleBeginners • Re: Running a program at startup
Ah, the .config/autostart/foo.desktop method works, thanks!Perhaps someone should correct the sticky post, first post on this section of the forum, because it is completely...
View ArticleAdvanced users • Re: Pi becoming unresponsive for a period of time
Thanks all.I've bought a new SD card as the one I was running was old. The new one hasn't arrived yet.I initially thought it was maybe the power supply (it was running off my router USB, so changed it...
View ArticleAI Camera - IMX500 • Re: Deploy TFLite model
Unfortunately the TFLite framework has some limitations - particularly with the type of quantization modes available. The MCT is more capable, so we would recommend using a framework (e.g. TF or Keras...
View ArticleAutomation, sensing and robotics • Re: Relays for ethernet connections
Use 'ifconfig' or 'ip link' on the Pi to set the connection up or down. Your target system probably won't be able to tell the difference between that and an unplugged cable.Ethernet uses...
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: Interfacing Sony IMX900
Well you might not be so complimentary when you encounter the almost complete lack of documentation for the CSI Host and CSIDMA blocks... I expect you will need some derivative of the RP1 CFE driver...
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: AD7606 SPI 6.1 Probe Failed With...
The SPI protocol doesn't provide any confirmation that there is a device at other end - you need to look at the returned data to see if it makes sense. Enabling kernel tracing for SPI traffic may...
View ArticleRaspberry Pi OS • [Pi 4]smaller size than "Raspberry Pi OS Lite"
Hi,I have a project which doesn't require much requirements from OS. I use Pi_4 and do everything from command line (some text editing, run services, run my AI applications on python, configure WIFI,...
View ArticlePython • Re: Video feed not connecting / refreshing to WiFi Mesh
I would check if it is the “tornado” software by using a known working example.Try the picamera2 example script mjpeg_server_2.pyhttps://github.com/raspberrypi/picamera ... erver_2.pyThis works for me...
View ArticleMicroPython • Re: Traffic_Lights.py example error
What alternatives are there to _thread?There are interrupt callbacks which can set flags and do things when a button is pushed - which is probably the best option for the code you have. There is also...
View ArticleSDK • Re: Using printf with TinyUSB HID: Is It Possible?
Apparently there is a way but I don't know the details -https://github.com/raspberrypi/pico-sdk/pull/871https://github.com/thewh1teagle/pico-bl ... id-cdc-bleStatistics: Posted by hippy — Tue Nov 12,...
View Article