Skip to content

Commit

Permalink
Align with namespace change in ESP8266 Arduino implementation of Inte…
Browse files Browse the repository at this point in the history
…rruptLock.
  • Loading branch information
dok-net committed Jul 9, 2019
1 parent eea12ca commit 2cea6e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions DHT.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <interrupts.h>
#endif


/* Uncomment to enable printing out nice debug messages. */
//#define DHT_DEBUG

Expand Down Expand Up @@ -77,7 +76,9 @@ class DHT {

};

#if !defined(ESP8266)
#if defined(ESP8266)
using esp8266::InterruptLock;
#else
/*!
* @brief Class that defines Interrupt Lock Avaiability
*/
Expand Down

0 comments on commit 2cea6e7

Please sign in to comment.