diff --git a/examples/tsl2561/tsl2561.pde b/examples/tsl2561/tsl2561.pde index 5a2fd12..7752230 100644 --- a/examples/tsl2561/tsl2561.pde +++ b/examples/tsl2561/tsl2561.pde @@ -48,7 +48,7 @@ void loop(void) { Serial.println(x, DEC); // More advanced data read example. Read 32 bits with top 16 bits IR, bottom 16 bits full spectrum - // That way you can do whatever math and comparions you want! + // That way you can do whatever math and comparisons you want! uint32_t lum = tsl.getFullLuminosity(); uint16_t ir, full; ir = lum >> 16; @@ -60,4 +60,4 @@ void loop(void) { Serial.print("Lux: "); Serial.println(tsl.calculateLux(full, ir)); delay(100); -} \ No newline at end of file +}