Using NFC To Power Devices Instead Of Qi

It shouldn’t be any surprise that NFC and similar RFID implementations are capable of providing power to a receiver, since this is after all how RFID tags can work without a battery. The question is more whether you can do more with NFC than just briefly power some low-power circuitry to spit out some data. This is the topic of a recent [Denki Otaku] video.

Although both Qi and NFC use electromagnetic induction, they differ in the frequency and correspondingly the maximum power that they can deliver to a receiver. For NFC this is around a Watt, with the used NFC module supporting up to 250 mW, which already sets the rough scope of what one can expect from an NFC-powered device. That said, an NFC transmitter and receiver can be significantly smaller than those for Qi due to the much higher frequency.

An additional benefit of NFC is that it offers more freedom to the user in its protocol in terms of user data, which is useful for applications where you don’t just want to power a device. In the video an MCU and IMU are powered along with an OLED display, which demonstrates wireless charging as well as data transfer of the IMU data to a second MCU.

The benefits of NFC over Qi would thus be the smaller antenna size, and depending on the used NFC implementation also charging and data transfer at the same time.

Continue reading “Using NFC To Power Devices Instead Of Qi”

How Giant Tanks Of Fluid Could Help Support The Power Grid

If you’ve been paying any attention to the renewable energy space, you’ll know that generation isn’t really the problem anymore. Solar panels are cheap, and wind turbines are everywhere. The problem is matching generation with demand—sometimes there’s too much wind and sun, and sometimes there’s not enough. Ideally, you could store that energy somewhere, and deploy it when you need it.

The answer everyone keeps reaching for is lithium-ion batteries, and they work just fine. However, there’s a competing technology that’s been quietly scaling up in the background—the vanadium flow battery. It has some unique advantages that could see it rise to prominence in the world of large-scale grid storage.

Continue reading “How Giant Tanks Of Fluid Could Help Support The Power Grid”

A Digital Audio Recorder For TOSLink

Every now and then in our travels we come upon a project with such an obvious need that it’s almost a surprise nobody has thought of doing it before. So it is with [Elehobica]’s project, an audio recorder for S/PDIF audio streams. It’s the device you could have used, years ago!

S/PDIF, or its optical fiber cousin TOSLINK, is the digital output you’ll find on the back of Hi-Fi equipment, it’s a serial encoding of an uncompressed digital audio data stream dating from the era when CDs were new. Its relative simplicity may be what’s given it longevity — it’s easy to implement so it plugs into pretty much everything.

Perhaps back in the day it might have been a pain for an 8-bit microprocessor to handle, but in 2026 it’s no bother for a Raspberry Pi Pico. The project is a small PCB with the Pico, a few interface components, and an SD card socket, and it sends what it hears on the input to the card as WAV files. We particularly like its smart sample rate and bit depth detection, and the way it cuts up tracks based on periods of silence. If you work with SPD/IF, this is going to be a useful tool.

Perhaps it could even be fed with a laser!

LightInk, A Solar Powered ESP32 Smartwatch

There’s something about the ESP32 family of microcontrollers and timekeeping. We probably see it in clocks as often as we do anything else; we also probably see more clocks with one as the beating heart than any of the many other possible timekeeping options.

[Daniel Ansorregui]’s LightInk watch is no different in that regard — but it is very different in one important detail, because like any other smartwatch, you won’t have to worry about battery life. Outside of gloomiest Gotham, its built-in solar panel should be able to keep it charged.

That’s for a few reasons. The obvious one is the e-ink display, which only takes a sip of power during updates. That’s hardly unique to [Daniel]’s projec t– he quite explicitly calls out the Watchy project, which we featured previously, as where he got the idea of putting e-ink and an ESP32-PICO together on his wrist. What is unique is the delightful hack [Daniel] is using to minimize power usage, which is our favorite part.

Continue reading “LightInk, A Solar Powered ESP32 Smartwatch”

E-paper Dashboard Reimagines Smart Home’s Connection With Technology

When [Joel Hawksley] and his partner got married, they had a goal to create a home with a healthy relationship to technology, which largely means avoiding smartphone use. Smartphones aren’t without their benefits, though, like being clocks and calendars, so [Joel] started looking for other options to replace these capabilities. At first he went with a “magic mirror” solution, but quickly pivoted to a wall-mounted e-paper solution he calls Timeframe which has evolved into a respectable overview for his home and life.

E-paper has a number of advantages over LCD and LED displays, one of which being that its resemblance to real paper makes it feel more organic. The first e-paper iterations of Timeframe used multiple displays in wooden frames, and [Joel] had a few different ones stationed around the house. They received their data from a custom-built Rails backend which sent pictures to the devices. This made the refresh rate possible fairly low, but a new 23.5″ display from Boox eventually enabled an acceptably high resolution and refresh rate which could support more traditional display uses. But this display required that [Joel] rewrite the entire back-end, an effort that took quite a bit of time but resulted in an impressive final product.

Like any custom-built project like this, [Joel] still has plans for improvements including those around further integration with his Home Assistant and reducing costs for future platforms. E-paper displays are popular pieces of technology for home dashboards like this, in the past we’ve seen similar, smaller builds which coincidentally have the same name.

Camera Slider: Build Instead Of Buy Goes Awry

[TheHyperFix] had a problem. He’d spied a brilliant camera slider, but didn’t want to lay out big money to acquire it. The natural solution? Build one! Only, life is seldom so straightforward.

The plan was straightforward – take an old broken 3D printer, and repurpose its parts to make a camera slider instead. The build started with a aluminium extrusion, some V-slot wheels, and a 3D printed platform to hold the camera. Moving the platform was done via a belt drive, using the stepper motors and some software to tell the original printer controller what to do.

Unfortunately, the early experiments failed when the controller blew up under load. An Arduino was subbed in with a CNC shield, which got things back on track, and [TheHyperFix] had a somewhat functional slider with relatively jerky movement. A tough iterative design process ensued to work out problems with bearings and the Arduino’s pulse limit, among others.

As it stands, the slider is semi-functional, but it’s not quite well behaved enough to use for professional shooting. Still, for a first attempt at electronics prototyping, we think [TheHyperFix] did a pretty solid job. It might not be all there yet, but it’s well on the way, and a great deal was learned in the process.

If you’re trying to build a camera slider in a hurry, you might like to try recreating one of the builds we’ve featured before. Video after the break.

Continue reading “Camera Slider: Build Instead Of Buy Goes Awry”

The Math You Need To Start Understanding LLMs

Once you peel back the hype and mysticism, large language models (LLMs) are a fascinating application of statistical models, effectively what you get when you dial a basic auto-complete model up to eleven. In order to analyze a mind-boggling amount of text and produce meaningful auto-completion results quite a bit of math is involved, with a recent three-part article series by [Giles] going through the basics of inference, being the prediction step using a trained model.

The text is encoded in the LLM’s vector space as token IDs, each token being a text fragment that has some probability of following another ID, such as when cats may be found on desks, as in the above photo by [Giles]. With inference multiple of such IDs are retrieved in a vector from which in successive steps a sentence can be pieced together. These so-called logits are detailed in the first article in the series, with the second article focusing on vocabulary space and embedding, as well as the matrix operations used for inference.

Finally, the third article puts all of this together and looks at transformers, which is a crucial part of GPT (generative pretrained transformer) LLM architecture. Of note is the attention mechanism, which takes GPTs beyond merely being glorified auto-complete systems by adding pattern matching. Here we can see how the statistical model of the LLM is used to generate a rather plausible output, which is where the human has to ask themselves in how far they feel that it is correct.

Of course, there goes a lot more into making LLMs and GPTs performant, such as key-value caches that massively speed up inference.