Skip to content

Commit a98822d

Browse files
committed
Update RgbLed module
1 parent a9a61e9 commit a98822d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module/rgb-led.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function RgbLed (pins) {
1111
var options = {
1212
// Default 20ms period(500Hz) is for Linkit 7688.
1313
period: 20000000,
14-
maxDutyCycle: 2550000
14+
maxDutyCycle: 20000000
1515
};
1616
this._red = new IO(pins[0], 'pwm', options);
1717
this._green = new IO(pins[1], 'pwm', options);

0 commit comments

Comments
 (0)