
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
raspberrypi-oled-text
Advanced tools
Use three lines of scrollable text on OLED lcd from a Raspberry Pi
Use three lines of scrollable text on OLED lcd from a Raspberry Pi
npm i raspberrypi-oled-text
const Oled = require('raspberrypi-oled-text');
const oled = new Oled();
oled.on('ready', () => {
oled.firstLineScroll = 'on';
oled.firstLine = 'Line 1 scroll';
oled.secondLineScroll = 'off';
oled.secondLine = 'Line 2 no scroll';
oled.thirdLineScroll = 'auto';
oled.thirdLine = 'Line 3 autoscroll';
});
oled.init();
Valid scroll mode values:
When setting consecutively the scroll mode and the text content of a line you should use the method instead of the setter
oled.firstLineScroll = 'on'; // Uses two process commands internally
oled.firstLine = 'Not optimized'; // (not optimized)
oled.setFirstLine('Optimized', 'on'); // Uses only one process command internally (optimized)
FAQs
Use three lines of scrollable text on OLED lcd from a Raspberry Pi
We found that raspberrypi-oled-text 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

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