Skip to content
This repository was archived by the owner on May 7, 2019. It is now read-only.

Commit 58e24df

Browse files
committed
Merge pull request #3 from bfesser/patch-1
typo fix
2 parents eaaa3bf + f5e292b commit 58e24df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/tsl2561/tsl2561.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void loop(void) {
4848
Serial.println(x, DEC);
4949

5050
// More advanced data read example. Read 32 bits with top 16 bits IR, bottom 16 bits full spectrum
51-
// That way you can do whatever math and comparions you want!
51+
// That way you can do whatever math and comparisons you want!
5252
uint32_t lum = tsl.getFullLuminosity();
5353
uint16_t ir, full;
5454
ir = lum >> 16;
@@ -60,4 +60,4 @@ void loop(void) {
6060
Serial.print("Lux: "); Serial.println(tsl.calculateLux(full, ir));
6161

6262
delay(100);
63-
}
63+
}

0 commit comments

Comments
 (0)