From b9eae98532492925ba9f3230dd411622e1164289 Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 10 Sep 2024 00:24:57 +0200 Subject: [PATCH] Build: add Makefile.conf - this specifies project specific things --- src/main.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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); }