|
|
|
|
|
by asciimike
3882 days ago
|
|
Bonescript is pretty simple as well: // npm install bonescript
var b = require('bonescript');
b.pinMode('P8_13', b.OUTPUT);
b.digitalWrite('P8_13', 1);
Pretty sure Bonescript is just doing the filesystem stuff under the hood, though doing memory mapping would be way nicer. |
|