Skip to content

Commit

Permalink
Include GS.h in all example sketches
Browse files Browse the repository at this point in the history
Since the Arduino IDE doesn't do recursive library dependencies yet
(arduino/Arduino#1726), we'll have to include
all of these explicitely.
  • Loading branch information
matthijskooijman committed Jan 21, 2014
1 parent 8e5f481 commit 4a11fe5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/Mesh/EdDemo/EdDemo.ino
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "config.h"
#include <Scout.h>
#include <GS.h>

/*- Types ------------------------------------------------------------------*/
typedef enum AppState_t
Expand Down
1 change: 1 addition & 0 deletions examples/Peripherals/BlinkRGB/BlinkRGB.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Peripherals/FadeRGB/FadeRGB.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Peripherals/Temperature/Temperature.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Peripherals/TrueRandomNumber/TrueRandomNumber.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Power/BackpackPower/BackpackPower.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Power/BatteryStatus/BatteryStatus.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

void setup() {
Scout.setup();
Expand Down
1 change: 1 addition & 0 deletions examples/Power/SleepyTime/SleepyTime.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <SPI.h>
#include <Wire.h>
#include <Scout.h>
#include <GS.h>

typedef enum AppState_t
{
Expand Down

0 comments on commit 4a11fe5

Please sign in to comment.