Read the statement by Michael Teeuw here.
Another PIR sensor
-
@sdetweil said in Another PIR sensor:
@DaVinki said in Another PIR sensor:
MMM-GPIO-Notifications
do
cd ~/MagicMirror npm config:check
black screen, open the developers console, ctrl-shift-i on the keyboard,
and select the tab labeled ‘console’ and scroll up to see any errors, usually red text.npm config:check is an incorrect command.
The black screen shows no errors. It states that the modules are hidden. Even the wallpaper module, which should be ignored.
MMM-Wallpaper is suspended. module.js:198:7 MMM-Wallpaper is hidden. MMM-ProfileSwitcher.js:113:25
-
@DaVinki said in Another PIR sensor:
npm config:check is an incorrect command.
yeh,
npm run config:check
i would disable each module one at a time til I found the one hiding everything
add
disabled: true,
after the module statement{
module: name,
disabled: true,
position:
config: {
}
} -
@sdetweil said in Another PIR sensor:
@DaVinki said in Another PIR sensor:
npm config:check is an incorrect command.
yeh,
npm run config:check
i would disable each module one at a time yil I found the one hiding everything
add
disabled: true,
after the module statement{
module: name,
disabled: true,
position:
config: {
}
}Yeah, the culprit is MMM-ProfileSwitcher. Somehow I can not get that config working.
-
@DaVinki said in Another PIR sensor:
MMM-ProfileSwitcher
Hi,
your configuration of MMM-ProfileSwitcher is wrong. In your case it will simply look like this:{ module: 'MMM-ProfileSwitcher', config: { // See 'Configuration options' for more information. } }
But you need to add the classes part to your MMM-Wallpaper module:
{ module: 'MMM-Wallpaper', config: { ... } classes: 'pageOneEveryone', },
So your config will look like this:
{ module: 'MMM-ProfileSwitcher', config: { defaultClass: "pageOneEveryone", ignoreModules: ["moduleVisiableOnEveryPageOne", "moduleVisibleOnEveryPageTwo"] } }, { module: 'MMM-Wallpaper', config: { //Add your wallpaper config here } classes: 'pageOneEveryone', }, { module: 'MMM-ProfileControl', position: 'bottom_bar', config: { profiles: [ ['pageOneEveryone'], ['pageTwoEveryone'], ], } }, { module: 'MMM-GPIO-Notifications', config: { '22': { gpio_state: 1, gpio_debounce: 10, delay: 1000, notifications: [ { notification: 'PROFILE_DECREMENT_HORIZONTAL', }, ] } } },
The result will be two pages “pageOneEveryone” and “pageTwoEveryone”.
Every time your PIR triggers an “1” the GPIO Module will send an Notification to switch to the next page (and start again with “pageOneEveryone” if the end is reached).You then can add “classes: ‘pageOneEveryone’,” to every module you want to be displayed an “pageOneEveryone” and “classes: ‘pageTwoEveryone’,” to every module you want to be displayed on “pageTwoEveryone”.
If you want to have modules displayed on every page you can add them to the ignore list of MMM-ProfileSwitcher.
-
@wishmaster270 Hi,
Almost there. :-) . I’ve got two pages, PIR sensor is working. I can see notifications switching from page one to page two. However, the sensor seems to bounce. I can see the “enter” notification for page two, and almost immediately see the “leave” notification for page two. Sometimes it indeed accidentally switches to page two though, so the mechanism itself is working.
I Have been playing around with the debounce and delay timers, with no success.
What I’m trying to accomplish is switch to page two when the PIR is triggered, and return to page one using a timer in ProfileSwitcher.
Current config for GPIO-Notifications:
{ module: 'MMM-GPIO-Notifications', config: { '22': { gpio_state: 1, gpio_debounce: 1000, delay: 1000 * 20, notifications: [ { 'notification': 'PROFILE_DECREMENT_HORIZONTAL', 'profiles': 'pageOneEveryone', }, ] } } },
Doesn’t the “profiles” flag only trigger an action when that specific profile is active?
-
Sorry, my mistake. Sure the profiles option in the GPIO config will cause the module to only fire the notification on pageOneEveryone.
What kind of PIR are you using, a HC-SR501? Maybe your jumper is set to pulse a signal as long as a object is in distance.
-
Ps.: My modules write a lot of debug output to the log file. Maybe there is a hint in “~/.pm2/logs/MagicMirror-out.log”
-
@wishmaster270 I’m using one of the cheaper sensors from a Chinese store. Doesn’t even have jumpers on it. Seems to me that setting the debounce ridiculously high would solve the issue of it keeping firing.
Kind of at a lost here. Reading the PIN with a Python script gives a contiinue high, with an occasional low. However, setting the gpio_state to 0 doesn’t give any reaction. It also does not seem to react to changing the debounce or delay timers.
-
Maybe the problem is not the GPIO. Did you find same useful information in the log. Is the GPIO module fireing that often?
If an delay is configured in the GPIO module any events within this time range will be ignored. It is a simple mechanism and does not depend on the sensor. I use it with three PIRs in my setup without any problems.
Edit: There should be some entry like “MMM-GPIO-Notifications: : Skipped notifcation…” in the log if the delay works and the sensor fires
-
@wishmaster270 The GPIO does indeed fire a lot. I’m sure it is a simple mechanism. I’m trying to figure out a way to “filter” the signals. Be it by a delay, a debounce or whatever… there should be a simple work-around, right? (Don’t take this personally please, my work as IT engineer let’s me think in solutions and workarounds)
A small piece from the mm-out.log:
[2020-04-26 12:58:43.092] [LOG] [12:58:43] - MMM-OpeningHours : : Error: timeout [2020-04-26 12:59:00.692] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:00.694] [LOG] MMM-GPIO-Notifications: Sending notifications of pin 22... [2020-04-26 12:59:00.695] [LOG] CurProfile: pageOneEveryone [2020-04-26 12:59:00.696] [LOG] CurProfileString: pageOneEveryone [2020-04-26 12:59:00.702] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:00.872] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:01.039] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:01.111] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:02.201] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:02.252] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:09.191] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:09.192] [LOG] MMM-GPIO-Notifications: Skipping pin 22 because the delay is not exceeded ! [2020-04-26 12:59:17.471] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:17.472] [LOG] MMM-GPIO-Notifications: Skipping pin 22 because the delay is not exceeded ! [2020-04-26 12:59:27.987] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:27.989] [LOG] MMM-GPIO-Notifications: Sending notifications of pin 22... [2020-04-26 12:59:27.991] [LOG] CurProfile: pageOneEveryone [2020-04-26 12:59:27.992] [LOG] CurProfileString: pageOneEveryone [2020-04-26 12:59:28.005] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:28.102] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:28.112] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:28.537] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:29.213] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE