Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
corrected compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
generationmake committed Feb 9, 2022
1 parent 8b96154 commit 61cb64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/TCS3472-Basic/TCS3472-Basic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void setup()
if (!tcs3472.begin())
{
Serial.print("ArduinoTCS3472::begin(...) failed, error code ");
Serial.print(static cast<int>(tcs3472.error()));
Serial.print(static_cast<int>(tcs3472.error()));
for(;;) { }
}

Expand Down

0 comments on commit 61cb64c

Please sign in to comment.