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.
15 lines
200 B
15 lines
200 B
/** Basic Daisy Program
|
|
*
|
|
* This file is a blank starting point for a new project.
|
|
*/
|
|
#include "daisy_seed.h"
|
|
|
|
using namespace daisy;
|
|
|
|
DaisySeed hw;
|
|
|
|
int main() {
|
|
hw.Init();
|
|
while (1) {
|
|
}
|
|
}
|
|
|