diff --git a/src/main.cpp b/src/main.cpp index a720d65..5dc265d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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); hardware.DelayMs(500); }