Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@abandonware/i2c
Advanced tools
Native bindings for i2c-dev. Plays well with Raspberry Pi and BeagleBone.
Bindings for i2c-dev. Plays well with Raspberry Pi and Beaglebone.
$ npm install @abandonware/i2c
var i2c = require('@abandonware/i2c');
var address = 0x18;
var wire = new i2c(address, {device: '/dev/i2c-1'}); // point to your i2c address, debug provides REPL interface
wire.scan(function(err, data) {
// result contains an array of addresses
});
wire.writeByte(byte, function(err) {});
wire.writeBytes(command, [byte0, byte1], function(err) {});
wire.readByte(function(err, res) { // result is single byte })
wire.readBytes(command, length, function(err, res) {
// result contains a buffer of bytes
});
wire.on('data', function(data) {
// result for continuous stream contains data buffer, address, length, timestamp
});
wire.stream(command, length, delay); // continuous stream, delay in ms
// plain read/write
wire.write([byte0, byte1], function(err) {});
wire.read(length, function(err, res) {
// result contains a buffer of bytes
});
$ sudo vi /etc/modules
Add these two lines
i2c-bcm2708
i2c-dev
$ sudo vi /etc/modprobe.d/raspi-blacklist.conf
Comment out blacklist i2c-bcm2708
#blacklist i2c-bcm2708
Load kernel module
$ sudo modprobe i2c-bcm2708
$ sudo modprobe i2c-dev
Make device writable
sudo chmod o+rw /dev/i2c*
Install gcc 4.8 (required for Nan)
sudo apt-get install gcc-4.8 g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.6
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --config gcc
Set correct device for version
new i2c(address, device: '/dev/i2c-0') // rev 1
new i2c(address, device: '/dev/i2c-1') // rev 2
$ ntpdate -b -s -u pool.ntp.org
$ opkg update
$ opkg install python-compile
$ opkg install python-modules
$ opkg install python-misc
$ npm config set strict-ssl false
$ npm install i2c
npm install i2c@0.1.8
Thanks to @alphacharlie for Nan rewrite!
FAQs
Native bindings for i2c-dev. Plays well with Raspberry Pi and BeagleBone.
We found that @abandonware/i2c demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.