Project

General

Profile

Statistics
| Revision:

root / branches / rbom / code / projects / colonet / testing / robot_routine_reg_test / firefly+_lib.h @ 1390

History | View | Annotate | Download (683 Bytes)

1 13 emarinel
/*
2

3
firefly+_lib.h
4

5
author: CMU Robotics Club, Colony project
6
much of this is adapted from the firefly library (author: Tom Lauwers)
7
*/
8
#ifndef _FIREFLY_LIB_H_
9
#define _FIREFLY_LIB_H_
10
11
#include <inttypes.h>
12
#include <stdio.h>
13
#include <stdlib.h>
14
#include <avr/io.h>
15
#include <avr/interrupt.h>
16
#include <util/delay.h>
17
//#include <avr/delay.h>
18
//#include <avr/signal.h>
19
20
#include "analog.h"
21
#include "dio.h"
22
23
#include "lcd.h"
24
#include "time.h"
25
#include "lights.h"
26
27
#include "motor.h"
28
#include "serial.h"
29
#include "buzzer.h"
30
31
#include "servo.h"
32
#include "bom.h"
33
34
//wireless
35
#include "wl_adhoc.h"
36
37
//localization
38
#include "localization.h"
39
40
#endif