mirror of
https://github.com/peter-tanner/des-car-2022.git
synced 2024-11-30 12:00:16 +08:00
17 lines
302 B
C
17 lines
302 B
C
|
#ifndef _BOT_H
|
||
|
#define _BOT_H
|
||
|
|
||
|
#include "parameters.h"
|
||
|
#include "util.h"
|
||
|
#include "user_config.h"
|
||
|
#include "steering.h"
|
||
|
|
||
|
#include <NewPing.h>
|
||
|
#include <NMEAGPS.h>
|
||
|
#include <NeoSWSerial.h>
|
||
|
#include <Wire.h>
|
||
|
#include <LSM303.h>
|
||
|
#include <pins_arduino.h>
|
||
|
#include <avr/interrupt.h>
|
||
|
|
||
|
#endif
|