mirror of
https://github.com/peter-tanner/des-car-2022.git
synced 2024-11-30 09:00:21 +08:00
Peter
e65b30830e
http://github.com/Alphurious007/DES. Copy of the `peterus` branch which has my code. Original was adapted from MoBot but I have added many changes and replaced many parts so it is almost completely different.
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 |