Reply To: Example Suggestion
About › Forums › Forum › Suggestions › Example Suggestion › Reply To: Example Suggestion
March 21, 2012 at 10:51 AM
#582
soundanalogous
Member
Have you looked at Breakout/examples/getting_started/hello_world.html. All this uses is an LED and button. It will still work even if you don’t wire up the button.
To turn an LED on or off you can use the on() and off() methods of the LED. For example, you can change line 63 of the hello_world.html example to:
fadeLED.on();
and then after a delay (using setTimeout) turn it off using:
fadeLED.off();
If you want to blink or fade an LED at a regular interval, then it is best to use the blink() method and pass a waveform as illustrated in the hello_world example.