
commit
d6c5183fa8
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
#include "daisy_seed.h" |
|||
|
|||
namespace ld = daisy; |
|||
|
|||
static ld::DaisySeed hw{}; |
|||
|
|||
int main() |
|||
{ |
|||
hw.Init(); |
|||
while (true) { |
|||
hw.SetLed(true); |
|||
hw.DelayMs(100); |
|||
hw.SetLed(false); |
|||
hw.DelayMs(100); |
|||
} |
|||
} |
Loading…
Reference in new issue