You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mentioned in above post but thought that I would post as it's own issue. The below code...
var i2c = require('i2c');
var wire = new i2c(0x6A, {device: '/dev/i2c-1', debug: false});
wire.on('data', function(data) {
console.log(data);
});
console.log("wire.stream**************************");
wire.stream(0x90, 4, 5000);
console.log("wire.stream**************************");
...never returns from the wire.stream command. The data event is triggered so things are working in the background. Other events (not shown in this example), such as an incoming socket message, are not handled.
The above test was run on a BeagleBone Black on a clean new O/S installed from the 09-07 Angstrom image.
The text was updated successfully, but these errors were encountered:
Mentioned in above post but thought that I would post as it's own issue. The below code...
...never returns from the wire.stream command. The data event is triggered so things are working in the background. Other events (not shown in this example), such as an incoming socket message, are not handled.
The above test was run on a BeagleBone Black on a clean new O/S installed from the 09-07 Angstrom image.
The text was updated successfully, but these errors were encountered: