Last active
August 29, 2015 14:03
-
-
Save murilopontes/3b48d99111b273a63f4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
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