Skip to content

Commit

Permalink
Fix example code copy-paste mess
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jul 10, 2015
1 parent dd90b93 commit 5ea339f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/led-rgb-intensity.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ board.on("ready", function() {
// 3 secs then turn blue, still 30% intensity
wait: 3000,
task: function() {
console.log("30% red");
led.intensity(30);
console.log("30% blue");
led.color("#0000FF");
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions eg/led-rgb-intensity.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ board.on("ready", function() {
// 3 secs then turn blue, still 30% intensity
wait: 3000,
task: function() {
console.log("30% red");
led.intensity(30);
console.log("30% blue");
led.color("#0000FF");
}
},
{
Expand Down

0 comments on commit 5ea339f

Please sign in to comment.