Fix merge conflict with interrupt disable lock.

This commit is contained in:
Tony DiCola
2015-07-22 12:22:35 -07:00
2 changed files with 49 additions and 39 deletions

11
DHT.h
View File

@ -57,4 +57,15 @@ class DHT {
};
class InterruptLock {
public:
InterruptLock() {
noInterrupts();
}
~InterruptLock() {
interrupts();
}
};
#endif