Raspberry Pi OS • Re: USB: ch341 appears and disappears periodically
Thank you for the quick response...It was the cable... Feels a bit like being a fool Statistics: Posted by wangenkuesse — Mon Mar 25, 2024 7:54 pm
View ArticleGeneral • Re: Getting started
And more importantly "machine" was available by default in Thonny, and must be on my computer somewhere, but how do I find it?That 'machine' is a built-in part of MicroPython so it seems you aren't...
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: UART 3 and 4 data corrupted when CPU...
Here's the output when the data is not corrupted.Code: $ vcgencmd versionuname -avcgencmd get_throttledvcgencmd measure_tempvcgencmd measure_clock coreOct 17 2023 15:39:16 Copyright (c) 2012...
View ArticleSDK • Re: Inconsistent pin-high times when setting pin high with GPIO...
So after thinking about it I've decided to try to implement your PWM solution and just accept that there's going to be a delay between receipt of the clock and the pin going high, but that it's likely...
View ArticleTroubleshooting • Re: Issues with RPi.GPIO? Depreciated?
On Bookworm we now use gpiozero python library, not RPi.GPIO.Alternatively, install the “Legacy” version of Raspberry Pi OS i.e. Bullseye, using Imager settings to set up the user, WiFi etc - it works...
View ArticlePython • Re: Clock/Calendar Using SH1106 128x64 Pixel I2C OLED Display
Code: draw.text((-2, 17), (timeH), font=FontTime, fill="white")draw.text((49, 11), (":"), font=FontTime, fill="white")draw.text((70, 17), (timeM), font=FontTime, fill="white")y is different, as you...
View ArticleTroubleshooting • Re: Libcamera-vid app not capturing video
If using a pi5 and rpicam-vid you can record direct to mp4.rpicam-vid -t 10000 -o test.mp4That worked! Thank you!!Statistics: Posted by miki2670 — Tue Mar 26, 2024 7:37 pm
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: control GPIO and websockets
example node code using pinctrl set 21 op dh to set GPIO21 high: Code: const { exec } = require('node:child_process');exec('pinctrl set 21 op dh', (error, stdout, stderr) => { if (error) {...
View ArticleSDK • Re: IR transmission (ideally with PIO, but not necessarily)
This was my proof of concept PIO code for MicroPython which was intended to demonstrate how it worked using the Pico on-board LED, which should work when used with a real IR LED.The PIO worked but I...
View ArticleTroubleshooting • Re: Turning on LED Strip is Not Working - Raspberry Pi 5
Have a look at the issue on github https://github.com/jgarff/rpi_ws281x/issues/528Statistics: Posted by neilgl — Tue Mar 26, 2024 7:53 pm
View ArticleHATs and other add-ons • Re: Issue with using GPS and LTE network with Sim7000X
Hi,Help me understand this are you not able to access internet only when you're reading GPS data via serial?Thanks for your reply!If I use one I can't use the other, get a ttyS0 lock error.Statistics:...
View ArticleCamera board • Re: [GS camera] rpicam-vid broken by latest updates? Always...
Scratch the below... It's working now. The second `sudo rpi-update pulls/6027` must have done the trick, maybe I was seeing a still shot from before the reboot.Note, though, that even with the...
View ArticleGeneral • Re: UART issues with overclocked Pico
The above is all Run from RAM with CLK_DIV=4 if that even matters. Have never got above 450 MHz though that's pretty impressive in itself; a 3.6 overclock of the default 125 MHz, 1.8 overclock of the...
View ArticleHATs and other add-ons • Re: How to wire TL-W5MC1 Inductive Proximity Sensor
The advantage of the optocoupler (also known as an opto-isolator) is that it electrically isolates the pi input (max 3.3V) from the high voltage of the proximity sensor (say 12V). The signal is...
View ArticleTroubleshooting • Re: Pi 5 just flashing green light, no display or outputs
Possibly try the reflash mentioned in viewtopic.php?t=367758hi bro, thank you so much, it worked! do you know what could have caused it in the first place though?Statistics: Posted by mrpetgoldfish —...
View ArticleAdvanced users • Re: Image File Utilities
I looked in the image-compare script and found that rsync's --itemize-changes option is what creates the column that made me curious. The manual page for rsync shows what's below. A better formatted...
View ArticleBeginners • sound output of both tv and pi on the same speaker
Hi,I have a pair of speakers that are currently connected to my tv via 3.5mm cable and I would like to be able to use them for the pi as well.What I don't have is an y-cable which probably would be...
View ArticleRaspberry Pi OS • Re: Disable keyboard inputs but still provide power
In the early 90s as researcher at University we all worked on SunOS Unix workstations with X11.Because we hopped from workstation to workstation, in order to avoid issues people did execute "xhost...
View ArticleBeginners • Re: RPi as Win RDP Client
Cant' help you with RDP, but the pi comes with VNC server which works well and all you need to use it is a VNC client installed on your computer to access the pi with it.Search the forums, there are...
View ArticleRaspberry Pi OS • Re: Bookworm/Wayland : how can I launch Chromium and...
thanks to all. I was actually not aware about the possibility to revert to x11, thanks for the tip. I'll try those suggestions.Statistics: Posted by jcoe2412 — Wed Mar 27, 2024 8:22 pm
View Article