@@ -16,7 +16,7 @@ class Animated_Staircase : public Usermod {
16
16
/* configuration (available in API and stored in flash) */
17
17
bool enabled = false ; // Enable this usermod
18
18
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
20
20
int8_t topPIRorTriggerPin = -1 ; // disabled
21
21
int8_t bottomPIRorTriggerPin = -1 ; // disabled
22
22
int8_t topEchoPin = -1 ; // disabled
@@ -161,28 +161,37 @@ class Animated_Staircase : public Usermod {
161
161
if ((millis () - lastScanTime) > scanDelay) {
162
162
lastScanTime = millis ();
163
163
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
+ }
174
179
175
180
if (bottomSensorRead != bottomSensorState) {
176
181
bottomSensorState = bottomSensorRead; // change previous state
177
182
sensorChanged = true ;
178
- publishMqtt (true , bottomSensorState ? " on" : " off" );
183
+ #ifndef WLED_DISABLE_MQTT
184
+ publishMqtt (true , bottomSensorState ? " on" : " off" );
185
+ #endif
179
186
DEBUG_PRINTLN (F (" Bottom sensor changed." ));
180
187
}
181
188
182
189
if (topSensorRead != topSensorState) {
183
190
topSensorState = topSensorRead; // change previous state
184
191
sensorChanged = true ;
185
- publishMqtt (false , topSensorState ? " on" : " off" );
192
+ #ifndef WLED_DISABLE_MQTT
193
+ publishMqtt (false , topSensorState ? " on" : " off" );
194
+ #endif #endif
186
195
DEBUG_PRINTLN (F (" Top sensor changed." ));
187
196
}
188
197
@@ -224,7 +233,13 @@ class Animated_Staircase : public Usermod {
224
233
if (bottomSensorState || topSensorState) return ;
225
234
226
235
// 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
+
228
243
on = false ;
229
244
230
245
DEBUG_PRINT (F (" OFF -> Swipe " ));
0 commit comments