
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
This is a Node.js module that lets you write messages on HT1632 LED Message Boards from your Raspberry Pi, using its built in SPI Bus.
It was designed to work with the Raspberry Pi, but it should be easily ported to other platforms that provide an SPI Bus. I use 2 GPIOs to increase the number of Chip Select lines. The whole hardware setup is described here.
npm install pi-led
First, require pi-led:
var Led = require('pi-led').PiLed;
Then create an instance of it:
var led = new Led();
Now you can write messages:
led.WriteMessage("Hello World!", function(err, result) {
// This Callback happens when a message has finished scrolling
});
An event also gets emitted after a message has finished scrolling:
led.on('FinishedWrite', function(s) {
// Queue up another message to print here
});
I put together a long post on how I wired the boards together here. By default, the module is configured for 4 LED Modules, each with 32 LEDs across and 8 LEDs high.
To change this, go muck around in pi-led.cpp and then rebuild the module by going into the module directory and typing:
npm build .
FAQs
Connect LED Message Boards to your Raspberry PI using the SPI bus
We found that pi-led demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.