Fork me on GitHub
beagleboard.org

Using a slider with analogWrite

Please connect P8-13 to LED through 1khom resistor


pinMode(bone.P8_13, 'out', 4);
$("#slider1").bind("slidechange", function(event, ui) {
 analogWrite(bone.P8_13, ui.value/100.0);
});