This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ============================================ | |
Shauns Simple Boat Autopilot | |
Servo on pin 9 | |
Offset Control buttons pin 8 and 7 | |
MPU6050 connected to SCL and SDA, Interrupt to pin 2, ADO to Ground | |
=============================================== | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <SD.h> | |
#include <Ethernet.h> | |
#include <DS3231.h> | |
#include <Wire.h> | |
#include <OneWire.h> | |
#include <DallasTemperature.h> | |
#include <EthernetUdp.h> | |
#include <EEPROM.h> |