Skip to content
This repository was archived by the owner on Sep 30, 2021. It is now read-only.

Commit c028cb4

Browse files
author
Federico Fissore
committed
Removing useless includes from examples
1 parent 6ee7a6a commit c028cb4

File tree

25 files changed

+0
-25
lines changed

25 files changed

+0
-25
lines changed

examples/explore/R01_Logo/R01_Logo.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
#include <ArduinoRobot.h> // include the robot library
2626
#include <Wire.h>
27-
#include <SPI.h>
2827

2928
int commands[20]; // array for storing commands
3029

examples/explore/R02_Line_Follow/R02_Line_Follow.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
#include <ArduinoRobot.h> // include the robot library
2121
#include <Wire.h>
22-
#include <SPI.h>
2322

2423
long timerOrigin; // used for counting elapsed time
2524

examples/explore/R03_Disco_Bot/R03_Disco_Bot.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#include <ArduinoRobot.h> // include the robot library
2020
#include <Wire.h>
21-
#include <SPI.h>
2221

2322
/* Dancing steps:
2423
S: stop

examples/explore/R04_Compass/R04_Compass.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
// include the robot library
2323
#include <ArduinoRobot.h>
2424
#include <Wire.h>
25-
#include <SPI.h>
2625

2726
int speedLeft;
2827
int speedRight;

examples/explore/R05_Inputs/R05_Inputs.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
#include <ArduinoRobot.h>
2323
#include <Wire.h>
24-
#include <SPI.h>
2524

2625
// default tempo and pitch of the music
2726
int tempo = 60;

examples/explore/R06_Wheel_Calibration/R06_Wheel_Calibration.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
#include <ArduinoRobot.h>
1616
#include <Wire.h>
17-
#include <SPI.h>
1817

1918
void setup() {
2019
Serial.begin(9600);

examples/explore/R07_Runaway_Robot/R07_Runaway_Robot.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
// include the robot library
2222
#include <ArduinoRobot.h>
2323
#include <Wire.h>
24-
#include <SPI.h>
2524

2625
int sensorPin = M1; // pin is used by the sensor
2726

examples/explore/R08_Remote_Control/R08_Remote_Control.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include <IRremoteTools.h>
2929
#include <ArduinoRobot.h>
3030
#include <Wire.h>
31-
#include <SPI.h>
3231

3332
// Define a few commands from your remote control
3433
#define IR_CODE_FORWARD 284154405

examples/explore/R09_Picture_Browser/R09_Picture_Browser.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636
#include <ArduinoRobot.h> // include the robot library
3737
#include <Wire.h>
38-
#include <SPI.h>
3938

4039
const int NUM_PICS = 4; //Total number of pictures in Gallery
4140

examples/explore/R10_Rescue/R10_Rescue.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
#include <ArduinoRobot.h> // include the robot library
2626
#include <Wire.h>
27-
#include <SPI.h>
2827

2928
void setup() {
3029
// initialize the Robot, SD card, display, and speaker

0 commit comments

Comments
 (0)