MicroPython • Re: Pairing/bonding supported in C-SDK but not MicroPython
From my understanding the PICO-W port of Micropython does not support pairing/bonding. These #define options or whatever they are calledMICROPY_PY_BLUETOOTH_ENABLE_PAIRING_BONDING and...
View ArticleBeginners • New Raspberry Pi 3 Model B+ - How disable Wifi properly?
Hello ,got myself a new Raspberry Pi 3 Model B+ and trying to figure out how disable WiFi properly (with Libreelec installed).Would like WiFi disabled even if i put in another SDcard , say Raspian, is...
View ArticleGeneral discussion • Re: Scripting help needed - extract a part of long...
Try this oneCode: curl -s https://somewhere.com/token | grep searchfor | sed -n "s/^.*source: \"\([^\"]*\)\".*$/\1/p"You could get away without the grep, just add the "searchfor" into the sed, before...
View ArticleMicroPython • Re: Local image defined in html not being displayed by web serwer
Many thanks for all the answers, but the problem is still not solved by me.Using microdot @app.route('/virgo1.png') i see virgo1, but it isn't displayed by html <img src="virgo1.png"/>.I don't...
View ArticleGeneral discussion • Re: Install on Raspberry Pi 5 with Debian 12
Information on the internet states it cannot be done, but I still managed to get nearly to the end of the Debian 12 installation of Wine.So at this point you almost got WINE up, which is but the first...
View ArticleTroubleshooting • Re: no HDMI on TV
I am out of ideas. Any idea of what I could try ?Statistics: Posted by phramusca — Wed Feb 07, 2024 12:19 pm
View ArticleGeneral discussion • Re: STICKY: PINN - An enhanced version of NOOBS.
Ubuntu 23.10 has been updated to allow installation to an NVMe drive on the Pi5.I confirm the new version works flawlessyStatistics: Posted by ardoviniandrea — Wed Feb 07, 2024 12:26 pm
View ArticleTroubleshooting • Problem w Raspberry PI 4, Kodi and USB Remote Control (CEC?)
Hello All,lurker with first problem/question here.I have a RPi4 in an Argon One M2.sata case and I'm running standard Raspberry Pi OS Lite (bookworm) from the internal sata SSD. I intend to do a few...
View ArticleMicroPython • Re: Accessing the Raspberry Pi Pico + Pico Clock Green
I then however had an issue where the clock would not be recognised as a USB device on my pc, no matter how many times I reflashed the firmware and it wouldn't come up in Thonny and just say something...
View ArticleCamera board • Re: libcamera-raw with circular and signal
I experimented with this....The script will capture RAW 640x480 frames into /run/shm (RAM) at 100fps, on a Pi4 with a v2 camera. Note 640x480 crops the image.It will run from the start capturing...
View ArticleRaspberry Pi OS • Re: Raspberry Pi OS Support
I'm not sure why you brought up Pi approved,You may not care, but the OP and others trying to make decisions about deploying Pi as a "Windows" platform may consider that support for the proposed...
View ArticleFrançais • Re: Python 3.11.2 bloc quand j'execute mon code
Bon, j'avais lu un peu vite en diagonale!Est-ce que les 2 Linux (PC et RPi) utilise le même serveur X?Le RPi utilise Wayland depuis bookworm. Est-ce que cela pourrait être la cause?Il est possible de...
View ArticleAdvanced users • Re: HowTo: Install fresh OS on Pi5 NVMe 4tb 8tb drives
OK thanks, this makes sense.I tried it now, but when the script runs, it says it is MBR, would you like to change to GPT?but it aborts the script before I can press Y or N.I must be doing something...
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: How to use round GC9A01 display with...
Nope. Most power supplies are class II and therefore double insulated (denoted by square in a square logo), and will generally have a plastic earth pin if such is needed in the mains plug spec.The...
View ArticleTroubleshooting • RPi4 suddenly died !
Hi !I was working at a code for connecting a RPi4 (headless) and a Pico through I2C. When RPi4 stop responding in the ssh window. I reconected the power and RPi4 doesn't boot anymore. The red PWR led...
View ArticleSDK • Re: Pico SDK compilation question re placement of preprocessor directives
Yup; the reason the pico-examples do a compile time warning, is we don't want to fail the build (of all examples) if you a re building for a PICO_BOARD which doesn't have I2CIsn't it possible to add a...
View ArticleTroubleshooting • Pi Zero 2 W - camera connector problem
Title almost says it all.When disconnecting the cable the thin black locking bar came out and it looks like one of the two pins is not intact.I can't get it to fit with the cable in place and if I do...
View ArticleNetworking and servers • Re: Socket programming on rpi4 or rpi5
I want to do socket programming on python where I want to bind raspberry pi5 and esp32 with each other .esp32 continuously sending sring as raspberry pi response in rturn ,give me the code for thisMy...
View ArticleMicroPython • Re: How to Read Data from Nextion Display via UART with Pico
The very short version is:You have to send Code: objectname.attributename="new text" followed by three bytes with the value 255.If you have just made a button and not given it a new name it will be...
View ArticleC/C++ • Re: How to set date time to Y2040 and get time - a Y2038 problem
Starting with glibc 2.34 (bookworm), you can compile with -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64. (Or define the corresponding macros in every source file, such as by having your own "config.h" that...
View Article