Merge pull request #1255 from guilhermebera/patch-1

Update usermod_PIR_sensor_switch.h
This commit is contained in:
Aircoookie 2020-10-14 13:58:38 +02:00 committed by GitHub
commit 0d96a0fb7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,9 @@ class PIRsensorSwitch : public Usermod {
*/ */
bool handleOffTimer() { bool handleOffTimer() {
if (m_offTimerStart > 0 && millis() - m_offTimerStart > m_switchOffDelay) { if (m_offTimerStart > 0 && millis() - m_offTimerStart > m_switchOffDelay) {
switchStrip(false); if (m_PIRenabled == true){
switchStrip(false);
}
m_offTimerStart = 0; m_offTimerStart = 0;
return true; return true;
} }