Skip to content

Commit

Permalink
Rename DroneLibs.h to MINDS-i-Drone.h for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettFolkins committed May 26, 2016
1 parent 2b80cf1 commit 6220462
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion examples/APM_AcclTest/APM_AcclTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

const float INT_PERIOD = 5000;

Expand Down
2 changes: 1 addition & 1 deletion examples/APM_Barometer/APM_Barometer.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
/*
Altimeter, get a raw value and maybe a converted value to feet?
(through the Arduino Serial Terminal)
Expand Down
2 changes: 1 addition & 1 deletion examples/APM_CompassTest/APM_CompassTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

HMC5883L cmp;
Settings set(eeStorage::getInstance());
Expand Down
2 changes: 1 addition & 1 deletion examples/APM_GyroTest/APM_GyroTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
const float INT_PERIOD = 5000;

Settings settings(eeStorage::getInstance());
Expand Down
2 changes: 1 addition & 1 deletion examples/APM_balanceTest/APM_balanceTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
const float INT_PERIOD = 5000;

Settings settings(eeStorage::getInstance());
Expand Down
3 changes: 1 addition & 2 deletions examples/CalibrateESCs/CalibrateESCs.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "Servo.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
#include "platforms/Quadcopter.h"

void setup(){
Expand Down
2 changes: 1 addition & 1 deletion examples/CalibrateSensors/CalibrateSensors.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

enum ProgramState {
COLLECT_STATES,
Expand Down
2 changes: 1 addition & 1 deletion examples/RoboMagellan6x6/RoboMagellan6x6.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "Wire.h"
#include "MINDSi.h"
#include "Encoder.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
#include "util/callbackTemplate.h"

//Constants that should never change during driving and never/rarely tuned
Expand Down
2 changes: 1 addition & 1 deletion examples/cruiseExample/cruiseExample.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "Wire.h"
#include "MINDSi.h"
#include "Encoder.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

const uint8_t EncoderPin[]= { 2, 3 }; //apm 6,7
const uint8_t ServoPin[] = {12, 11, 8};//drive, steer, backS; APM 1,2,3 resp.
Expand Down
2 changes: 1 addition & 1 deletion examples/droneCommsTest/droneCommsTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

HardwareSerial *commSerial = &Serial;
Storage<float> *storage = eeStorage::getInstance();
Expand Down
2 changes: 1 addition & 1 deletion examples/gpsLogger/gpsLogger.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

List<Waypoint> *eeList;
const uint32_t UPDATE_INTERVAL = 4000;
Expand Down
2 changes: 1 addition & 1 deletion examples/quadMinimal/quadMinimal.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
#include "platforms/Quadcopter.h"

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/quadcopter/quadcopter.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"
#include "platforms/Quadcopter.h"

const float GsToFeet = -32.17;
Expand Down
2 changes: 1 addition & 1 deletion examples/rawTelemetry/rawTelemetry.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

const int UPDATE_INTERVAL = 1000; //ms between transmits
HardwareSerial *commSerial = &Serial;
Expand Down
2 changes: 1 addition & 1 deletion examples/sensorTest/sensorTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

const uint32_t UPDATE_INTERVAL = 5;
MPU6000 mpu;
Expand Down
2 changes: 1 addition & 1 deletion examples/streamGPS/streamGPS.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

LEA6H gps;

Expand Down
2 changes: 1 addition & 1 deletion examples/telemetryTest/telemetryTest.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Wire.h"
#include "SPI.h"
#include "DroneLibs.h"
#include "MINDS-i-Drone.h"

const int UPDATE_INTERVAL = 100; //ms between transmits
HardwareSerial *commSerial = &Serial;
Expand Down

0 comments on commit 6220462

Please sign in to comment.