#GPIO

2026-03-09

This week's exciting forays into computing:

🟠 I am loving Debian + KDE on my main computer. I miss nothing from Windows. (What the hell takes Windows Explorer so long? Dolphin is instant!)

🟠 Steam/Proton run some of my games better than Windows did.

🟠 While Windows removes the ability to customise things with every update, I can customise every little thing on Linux.

🟠 Wrote my first C program that does GPIO stuff on Raspberry Pi.

2026-03-06

I've added `libgpiod` to my C project to get read/write access to digital #GPIO pins on #linux powered devices like #raspberrypi or variants from #orangepi or #radxa.
Reason: /sys/class/gpio is deprecated.

But there is a peculiarity: different versions of `libgpiod` are shipped
on different linux distros. And the newer v2 is incompatible with the older v1.

My "generic" solution is now: late-binding via `dlopen()` to load available functions and using a small wrapper around both APIs.

N-gated Hacker Newsngate
2026-02-21

🤖 A "personal AI assistant" that fits in 888 KB on an ESP32? Sounds like the future of sarcastic technology innovation! 🚀 It probably can't even remember your coffee order, but hey, at least it does , , and memory—because nothing says "AI" like scheduling tasks and flipping switches. 🙄
github.com/tnm/zclaw

2026-02-18

Распознавание речи и голосовое управление на Repka Pi 4 — автономная работа в real-time с ИИ моделями

В современном мире технологии распознавания речи используются очень широко. Например, они нашли применение в системах управления умным домом, в устройствах IoT, при управлении различным оборудованием. Наличие в одноплатных микрокомпьютерах портов вводы/вывода и промышленных интерфейсов позволяет управлять устройствами голосом. В статье рассказано, как настроить локальное (автономно работающее) распознавание речи в реальном времени на микрокомпьютере отечественного Российского производства Repka-Pi 4 Optimal , на борту у которого есть всего 2 Гбайт оперативной памяти. Рассмотрим такую работу на конкретных примерах и разберём подробно, как это работает. Дальше простор для фантазии и создания своих проектов открывается безграничный.

habr.com/ru/articles/988662/

#Linux #gpio #умный_дом #iot #repkapi #raspberry_pi #orange_pi

2026-02-05

Cubie A7S – A compact Allwinner A733 SBC with USB-C DisplayPort, GbE, WiFi 6, PCIe Gen3 FFC connector, GPIO headers

fed.brid.gy/r/https://www.cnx-

Entité terrestre auto-critiques4mdf0o1@piaille.fr
2026-02-01

J'ai une #idee ! (oui : encore)
J'ai une raspi5 qui fait home cinema
mais je manque de retours de température dans la maison 🤔
Alors j'ai des #DS18B20 #1wire, et la raspi a des #gpio
Bon jusque-là : ok
Mais la raspi chauffe, et des fils + un truc format transistor qui traîne (oui : encore), bein c'est moche, et ça va mesurer le dégagement de la raspi.
Alors je me suis dit :
il faut le surélever, et trouver un design sympa.
Conclusion : une main qui lève le doigt en #3D avec le capteur logé au bout du doigt.
Et en cas de question :
"Mais c'est quoi ce truc !?"
- c'est un thermomètre : c'est pour mesurer la température au doigt mouillé" 🤭 😂
#DIY

2026-01-29

UP Xtreme PTL Edge – Intel Core Ultra X5 338H/X7 358H Panther Lake AI mini PC features 40-pin GPIO header, RS232/RS485 COM ports

fed.brid.gy/r/https://www.cnx-

2026-01-29

Avalue EMS-ARH – A fanless, modular industrial “Arrow Lake-H” PC featuring IET interface with DDI, PCIe, USB 3.0…

fed.brid.gy/r/https://www.cnx-

2026-01-15

release interfaces for Cortex-M7 on i.MX8MP platform👇

1. Comment out the pinmux (pin multiplexing) configuration;
2. Comment out all device nodes that reference the GPIO.

Click the link below for details:
forlinx.net/industrial-news/im

2026-01-15

On i.MX8MP, GPIOs are owned by Linux (A53) by default.
If the Cortex-M7 needs them—especially for interrupts—you must release them in the device tree:

• Remove pinmux
• Remove GPIO references
• Disable the GPIO controller if needed

This prevents A53/M7 resource conflicts and ensures real-time reliability.
forlinx.net/industrial-news/im

OK8MP Development Notes | Detailed Method for A-Core GPIO Pin Release
Kevin Karhan :verified:kkarhan@infosec.space
2026-01-11

Am I the only one remembering @vwestlife video about the #K3Wintel or are #ShortCorcuit only up for #Clickbait here?

Personally, I think there should be more such devices like the #RaspberryPi #Pi400 & #Pi500 because they make way more sense than an #AiO in a screen!

  • Also I wished there was like a mini LCD to clip onto a #Pi400 and just plug into the #GPIO for power (extending it) and into the HDMI for display...
2026-01-06

I'm all willing to use a brick as my default computer. If it has ports.

2025-11-05
Seit der Zeitumstellung beobachte ich immer wieder seltsame, kleine Zeitsprünge zwischen 2 und 18 Sekunden – unregelmäßig, aber eindeutig. Mein GPS‑Empfänger meldet saubere 1PPS‑Impulse, HDOP ist stabil, und trotzdem: irgendwann hüpft die Kernel‑Sekunde. Heute hab ich mir vorgenommen, dem Ding nochmal strukturiert nachzugehen – mit einem gezielten 30‑Minuten‑Slew‑Only‑Test. Ich hab alle automatischen NTP‑Sprungkorrekturen deaktiviert, nur das sanfte Slewing aktiv […]
2025-12-26

Как Работать с UART на Микроконтроллерах ( UART + FIFO = LOG )

В этом тексте я написал про то как работать с UART на микроконтроллерах. Вы узнаете как пользоваться UART до того, как он будет включен. Допустим вы решили делать в своей прошивке printf- отладку. Или даже забабахать UART-CLI (Shell). Или у ваc есть какое -то внешнее устройство конфигурируемое по UART. Например микросхема U-Blox со своим UBX протоколом. Или LTE модуль с AT-командами. Первое с чем Вы столкнетесь - это настроить UART-трансивер. Как же реализовать алгоритм работы с UART периферией?

habr.com/ru/articles/981028/

#uart #прерывания #dma #gpio #fifo #LOG #cli #shell #printf #Критическая_секция

Le site de Korbenkorben.info@web.brid.gy
2025-12-19
<p>Vous vous souvenez des radios pirates clandestines qui diffusaient de la musique interdite depuis des appartements ou des camionnettes ? Hé bien le même concept revient en force, mais cette fois avec un Raspberry Pi et quelques lignes de Python.</p>
<p>
<a href="https://botwave.dpip.lol/">BotWave</a>
, c'est un projet open source qui transforme n'importe quel Raspberry Pi en émetteur FM fonctionnel. Vous branchez une antenne sur le GPIO 4 (la broche 7), vous lancez le script, et hop, vous diffusez sur la bande FM comme un vrai pirate des ondes. Vos voisins peuvent alors vous capter sur leur autoradio sans le savoir.</p>
<p><strong>⚠️ Attention : diffuser sur la bande FM sans autorisation de l'ANFR est illégal en France</strong> (et dans la plupart des pays). Les sanctions peuvent aller jusqu'à 6 mois de prison et 30 000 € d'amende. En pratique, avec une antenne bricolée, la portée se limite à quelques mètres, mais légalement, même ça reste interdit. Les développeurs recommandent d'ailleurs d'utiliser un filtre passe-bande pour limiter les interférences.</p>
<img alt="" src="https://korben.info/cdn-cgi/image/width=1200,fit=scale-down,quality=90,f=avif/botwave-raspberry-pi-emetteur-fm-radio/botwave-raspberry-pi-emetteur-fm-radio-2.png" />
<p>Le truc que j'ai trouvé intéressant avec BotWave, c'est son architecture client-serveur. Vous pouvez contrôler plusieurs Raspberry Pi depuis un seul serveur central, du coup, si vous voulez monter un réseau de diffusion avec des émetteur
2025-12-13
My ever growing collection of DIY #GPIO expansion modules for my #FlipperZero 😎😁 So far these are:
-Geigercounter
-NRF24 Module
-Sub 1Ghz extender Module
-Light/Exposure meter
-Spectral UV meter (A, B & C)
-Ir Co2 meter
And surely some pin protector containers for all of them... 😏
Kevin Karhan :verified:kkarhan@infosec.space
2025-12-03

@itsfoss no.

There are cheaper #ThinClients if one doesn't need the 40-pin #GPIO or #ARM64 and can use #AMD64 instead.

The 1GB models of the #Pi4, #Pi5, #CM4 & #CM5 solely exist for industrial clients.

2025-11-29

Apparently the humidifier I have is pretty easy to reflash with #esphome. You "just" connect your computer to the #GPIO pins and dump firmware, then flash with new one.
I have #flipper zero. I have MH-Z19 CO2 sensor hanging off of it, and getting readings over UART using the flipper app, so that works.
You can use flipper as a bridge between computer and GPIO/UART.

2025-11-20

Детектор грозовой активности «раСкат»

Привет, Хабр! Гроза - захватывающее явление… Раскаты грома, сверкание молний вызывают загадочную палитру чувств и желание понять, как рождается молния, в какой точке неба начинается ее путь и где заканчивается. А что если принять радиосигнал молнии и попытаться его запеленговать? Вот об этом и пойдет сегодняшний рассказ. Мы могли бы принять участие в готовом проекте Blitzortung, купив у них детектор и разместив его у себя. Но… пошли своим путем.

habr.com/ru/articles/968302/

#gpio #adc #ацп #гроза #молния #детектор #DIY #orangepi #miniwhip #антенна

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst