@ -1,9 +1,3 @@
/** Daisy Blink Example
*
* This example blinks the Daisy Seed's LED
* once per second, as explained in the
* C++ Getting Started guide for the Daisy.
*/
#include "daisy_seed.h"
using namespace daisy;
@ -17,7 +11,7 @@ int main()
while (true)
{
hardware.SetLed(true);
hardware.DelayMs(500);
hardware.DelayMs(100);
hardware.SetLed(false);
}