You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
251 B

#include "daisy_seed.h"
daisy::DaisySeed hardware;
int main()
{
hardware.Init();
bool led_state = false;
while (true)
{
hardware.SetLed(led_state);
led_state = !led_state;
daisy::System::Delay(500);
}
}