Browse Source

Build: add Makefile.conf - this specifies project specific things

main
heck 7 months ago
parent
commit
b9eae98532
  1. 8
      src/main.cpp

8
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);
}

Loading…
Cancel
Save