13 lines
173 B
C
13 lines
173 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
typedef unsigned char byte;
|
|
|
|
void initIO(void);
|
|
void blinkLed(void);
|
|
void readTemp(void);
|
|
void readPhoto(void);
|
|
void runServos(void);
|
|
|
|
#endif
|