Skip to content

Commit a01cc49

Browse files
authored
Merge pull request #95 from troyhacks/mdev
Fixes for animated staircase usermod
2 parents d63b716 + 6f07958 commit a01cc49

File tree

1 file changed

+29
-14
lines changed

1 file changed

+29
-14
lines changed

usermods/Animated_Staircase/Animated_Staircase.h

+29-14
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Animated_Staircase : public Usermod {
1616
/* configuration (available in API and stored in flash) */
1717
bool enabled = false; // Enable this usermod
1818
unsigned long segment_delay_ms = 150; // Time between switching each segment
19-
unsigned long on_time_ms = 30000; // The time for the light to stay on
19+
unsigned long on_time_ms = 5000; // The time for the light to stay on - TroyHacks: 5s for testing
2020
int8_t topPIRorTriggerPin = -1; // disabled
2121
int8_t bottomPIRorTriggerPin = -1; // disabled
2222
int8_t topEchoPin = -1; // disabled
@@ -161,28 +161,37 @@ class Animated_Staircase : public Usermod {
161161
if ((millis() - lastScanTime) > scanDelay) {
162162
lastScanTime = millis();
163163

164-
bottomSensorRead = bottomSensorWrite ||
165-
(!useUSSensorBottom ?
166-
(bottomPIRorTriggerPin<0 ? false : digitalRead(bottomPIRorTriggerPin)) :
167-
ultrasoundRead(bottomPIRorTriggerPin, bottomEchoPin, bottomMaxDist*59) // cm to us
168-
);
169-
topSensorRead = topSensorWrite ||
170-
(!useUSSensorTop ?
171-
(topPIRorTriggerPin<0 ? false : digitalRead(topPIRorTriggerPin)) :
172-
ultrasoundRead(topPIRorTriggerPin, topEchoPin, topMaxDist*59) // cm to us
173-
);
164+
if (useUSSensorBottom) {
165+
bottomSensorRead = ultrasoundRead(bottomPIRorTriggerPin, bottomEchoPin, bottomMaxDist*59); // US
166+
} else if (bottomPIRorTriggerPin > 0) {
167+
bottomSensorRead = digitalRead(bottomPIRorTriggerPin); // PIR
168+
} else {
169+
bottomSensorRead = false; // DUNNO
170+
}
171+
172+
if (useUSSensorTop) {
173+
topSensorRead = ultrasoundRead(topPIRorTriggerPin, topEchoPin, topMaxDist*59); // US
174+
} else if (topPIRorTriggerPin > 0) {
175+
topSensorRead = digitalRead(topPIRorTriggerPin); // PIR
176+
} else {
177+
topSensorRead = false; // DUNNO
178+
}
174179

175180
if (bottomSensorRead != bottomSensorState) {
176181
bottomSensorState = bottomSensorRead; // change previous state
177182
sensorChanged = true;
178-
publishMqtt(true, bottomSensorState ? "on" : "off");
183+
#ifndef WLED_DISABLE_MQTT
184+
publishMqtt(true, bottomSensorState ? "on" : "off");
185+
#endif
179186
DEBUG_PRINTLN(F("Bottom sensor changed."));
180187
}
181188

182189
if (topSensorRead != topSensorState) {
183190
topSensorState = topSensorRead; // change previous state
184191
sensorChanged = true;
185-
publishMqtt(false, topSensorState ? "on" : "off");
192+
#ifndef WLED_DISABLE_MQTT
193+
publishMqtt(false, topSensorState ? "on" : "off");
194+
#endif#endif
186195
DEBUG_PRINTLN(F("Top sensor changed."));
187196
}
188197

@@ -224,7 +233,13 @@ class Animated_Staircase : public Usermod {
224233
if (bottomSensorState || topSensorState) return;
225234

226235
// Swipe OFF in the direction of the last sensor detection
227-
swipe = lastSensor;
236+
// WLED-MM/TroyHacks: This should follow you up/dowm the stairs.
237+
if (lastSensor == SWIPE_UP) {
238+
swipe = SWIPE_DOWN;
239+
} else {
240+
swipe = SWIPE_UP;
241+
}
242+
228243
on = false;
229244

230245
DEBUG_PRINT(F("OFF -> Swipe "));

0 commit comments

Comments
 (0)