Hello everyone,
I just repaired my connection of the PIR Sensor and the Pi. Doing so i thought this should be it and the sensor work again.
However: For some reason the Module is not working as intended.
Intention:
Monitor being on for 20s when movement has been registered
Current behavior:
Either being ONLY when movement is detected or CONSTANTLY on
Status Quo:
The old code i have used and worked is as follows:
{
module: 'MMM-PIR-Sensor',
config: {
sensorPin: 14,
powerSaving: true,
OffDelay: 20000,
}
Doing so will have the monitor turned off instantly unless i move.
{
module: 'MMM-PIR-Sensor',
config: {
sensorPin: 14,
powerSaving: true,
powerSavingDelay: 15,
}
this code will have the MM on “forever” (well i havent been standing infront of the mirror for minutes… so i cant tell if forever…) at least not after 15s
I am a bit at a loss as to what has changed… i have not updated any modules or the MM… reconecting the pin 17 to the sensor was all I did…
Any help is highly appreciated