Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / testing / dongle / robot_receiver / firefly+_lib.h @ 13

History | View | Annotate | Download (609 Bytes)

1
/*
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 <avr/signal.h>
17
#include <avr/interrupt.h>
18
//#include <avr/delay.h>
19
#include <util/delay.h>
20

    
21
#include <analog.h>
22
#include <dio.h>
23

    
24
#include <time.h>
25
#include <lcd.h>
26
#include <lights.h>
27

    
28
#include <motor.h>
29
#include <serial.h>
30
#include <buzzer.h>
31
#include <servo.h>
32

    
33
#endif