Skip to content

Instantly share code, notes, and snippets.

@murilopontes
Last active August 29, 2015 14:03
Show Gist options
  • Save murilopontes/3b48d99111b273a63f4e to your computer and use it in GitHub Desktop.
Save murilopontes/3b48d99111b273a63f4e to your computer and use it in GitHub Desktop.
//
var b = require('bonescript');
// configure PWM pins as output
b.pinMode('P8_13', b.OUTPUT);
b.pinMode('P8_19', b.OUTPUT);
b.pinMode('P9_14', b.OUTPUT);
b.pinMode('P9_16', b.OUTPUT);
// generate 490Hz 49% duty-cycle => ESC/motor minimal throttle
b.analogWrite('P8_13', 0.49, 490, printStatus);
b.analogWrite('P8_19', 0.49, 490, printStatus);
b.analogWrite('P9_14', 0.49, 490, printStatus);
b.analogWrite('P9_16', 0.49, 490, printStatus);
// callback
function printStatus(x) {
console.log('x.value = ' + x.value);
console.log('x.err = ' + x.err);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment