@axellejamous yes additional data gets passed in the payload, see documentation https://github.com/MichMich/MagicMirror/blob/master/modules/README.md#thissendnotificationnotification-payload
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-AlarmClock
-
RE: Voice/motion control
@Mitchfarino it’s just work in progress as i showed here https://forum.magicmirror.builders/topic/222/voice-control but i’m collaborating with @ronny3050 the next days to hopefully get a nice module based on pocketsphinx.
progress can be watched on my github
-
RE: Mistake in the config.js and i dont no
@Thomas you can define your own styling in
~/MagicMirror/css/custom.css, for the most modules this should work.MODULENAME { color: blue; } -
RE: Error after update..
@campos you are in the wrong directory. do
cd MagicMirrorfirst -
RE: MMM-voice
@sdetweil I can tell you the same as I just told another user
as the author of MMM-voice I can tell you, that my module doesn’t support a command called hide clock at all. You are probably using hello-lucy, at least that’s a mod I’m aware of which enhances the commands. You can see the command list here https://github.com/fewieden/MMM-voice#usage
i also had problems due to my accent. you can also look into the dic file how the system expects you to pronounce it
-
RE: DHT22 Sensor
@Bangee go into the directory of your new module e.g.
~/MagicMirror/modules/MMM-Temperature/and typenpm initand follow the instructions, after that typenpm install --save node-dht-sensor -
RE: layer definition: here MMM-Globe overlaps left panel
@Niggich when you set it to two it will be above all, you have to set a lower value than the other have like -1
-
RE: Modules not showing up
@ROMSY probably you don’t have installed momentjs correctly
-
RE: MMM-AlarmClock
I refactored the module and switched to nunjuck templates.
I’m looking for people who are willing to test it:
- combinations of config options
- new config option
popup
how to test:
- if not already done, clone the repository to your modules
cd ~/MagicMirror/modules/ && git clone https://github.com/fewieden/MMM-AlarmClock.git - go to the module
cd ~/MagicMirror/modules/MMM-AlarmClock - run
git checkout develop - test various config options
[card:fewieden/MMM-AlarmClock]
-
RE: Movie info module
i will have a look into this and create a module after the weekend
-
RE: Voice on/off
@SimJim I will release a voice module the next days, which has this feature already built in. So stay tuned
-
RE: ALERT: setting the display time individually
@binderth a notification display time cannot be set in a notification itself, it’s up to the user to define the notification time for the alert module.
{ module: 'alert', config: { display_time: 10000 } }if you want to set the duration you have to use an alert instead of notification:
this.sendNotification("SHOW_ALERT", {timer: 10000, title: "Title", message: "Message"}); -
RE: Final Step of Installing MagicMirror (EXTREME NOOB)
@hall1458 did you install the dependencies with
npm install? -
RE: Viewing Mirror through browser on network
this should be fixed with version 2.0.3 try
git pulland see if it is fixed -
RE: Adding Modules
@johnnyboy in the config there is a
modules: []section put it right before the closing]don’t forget to add a comma in front if there is none after the}from the last module in the section -
RE: Final Step of Installing MagicMirror (EXTREME NOOB)
@hall1458
cd ~/MagicMirrorthennpm install