13 lines
182 B
C
Executable File
13 lines
182 B
C
Executable File
#ifndef _MIKUDUINO_H_
|
|
#define _MIKUDUINO_H_
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
void sayhello();
|
|
void delay (unsigned int howLong);
|
|
void setup();
|
|
void loop();
|
|
|
|
#endif
|