blob: 1d54cce41c5dd4dcd64e1c17a643fd263b87abeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <main.h>
void initializeIO(){
}
void initialize(){
pinMode(20,INPUT_ANALOG);
lcdInit(LCD_PORT);
lcdClear(LCD_PORT);
lcdSetBacklight(LCD_PORT,true);
zGyroInit();
zIMEInit();
delay(1000);
}
|