Skip to content

Commit

Permalink
More fixes for updated #define names.
Browse files Browse the repository at this point in the history
  • Loading branch information
itsayellow committed May 9, 2020
1 parent 9f835c9 commit 3fb82d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/interrupt/interrupt.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


/* Initialise with specific int time and gain values */
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_700MS, TCS34725_GAIN_1X);
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_614MS, TCS34725_GAIN_1X);
const int interruptPin = 2;
volatile boolean state = false;

Expand Down
2 changes: 1 addition & 1 deletion examples/tcs34725/tcs34725.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Adafruit_TCS34725 tcs = Adafruit_TCS34725();

/* Initialise with specific int time and gain values */
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_700MS, TCS34725_GAIN_1X);
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_614MS, TCS34725_GAIN_1X);

void setup(void) {
Serial.begin(9600);
Expand Down

0 comments on commit 3fb82d4

Please sign in to comment.