A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-voice ugly hdmi banner
-
@sdetweil im leaving it with the ; in the command line?
-
@dazza120 the example doesn’t have ;
on_event_start /home/{userid}/MagicMirror/modules/MMM-SleepWake/external_motion started
-
@sdetweil no it this is what its like i hope this is correct?
# Command to be executed when an event starts. (default: none) # An event starts at first motion detected after a period of no motion defined $ ; on_event_start /home/pi/MagicMirror/modules/MMM-SleepWake/external_motion sta$ # Command to be executed when an event ends after a period of no motion # (default: none). The period of no motion is defined by option event_gap. ; on_event_end value /home/pi/MagicMirror/modules/MMM-SleepWake/external_motion$
-
ok, that ; is a comment in the motion conf file, just like #… have to remove it
note that the on event end has an extra token there that neds to be removed
on_event_end value -
@sdetweil yes it is do i have to remove the # aswell?
-
@dazza120 no, there is no # on those two lines
-
@sdetweil no on the two lines above it
-
@dazza120 no, those are comments to explain what these lines do
-
@sdetweil ok cool so this is how i have it now
# Command to be executed when an event starts. (default: none) # An event starts at first motion detected after a period of no motion defined by event_gap on_event_start /home/pi/MagicMirror/modules/MMM-SleepWake/external_motion started # Command to be executed when an event ends after a period of no motion # (default: none). The period of no motion is defined by option event_gap. on_event_end /home/pi/MagicMirror/modules/MMM-SleepWake/external_motion ended
-
@dazza120 looks good