Skip to content

Commit

Permalink
Merge pull request #6 from TheThingsNetwork/fix/enable-temperature
Browse files Browse the repository at this point in the history
Enable temperature sensor
  • Loading branch information
johanstokking authored Sep 29, 2017
2 parents dff7293 + 03d0d2b commit 3242266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/Basic/Basic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ void setup()
node = TheThingsNode::setup();
node->configLight(true);
node->configInterval(true, 60000);
node->configTemperature(true);
node->onWake(wake);
node->onInterval(interval);
node->onSleep(sleep);
Expand Down
1 change: 1 addition & 0 deletions examples/CayenneLPP/CayenneLPP.ino
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ void setup()
node = TheThingsNode::setup();
node->configLight(true);
node->configInterval(true, 60000);
node->configTemperature(true);
node->onWake(wake);
node->onInterval(interval);
node->onSleep(sleep);
Expand Down

0 comments on commit 3242266

Please sign in to comment.