Read the statement by Michael Teeuw here.
MMM-Memo - Add some memos on your page and manage them through HTTP request
-
I love this module, but have a few requests:
-
I’d like to get rid of the pin. I want to make it more professional looking.
-
What css should I use in custom.css to left-align the text in the memos? I can’t figure out what to use.
-
You should add a different font option. I had to override it custom.css.
-
-
Hi all! Thank you for this module, it looks awesome!
I’d have just one question, on my mirror when I do this command
http://192.168.0.137:8080/DisplayMemo?memoTitle=SHOPPING&item=ALL
it only stays 3 seconds. Is there more options, to display it longer?
Thank you for your help =) -
-
@strawberry-3.141 Hi, Thank you for your quick reply =)
I am sorry I read this already, but I didn’t understand how to make my memo stay longer… :/
I have only one module with “memoDisplayNotification” set to “true”.
I understand the alert module is managing this with:
self.sendNotification(“SHOW_ALERT”, {});
But how to integrate this into the command
http://192.168.0.137:8080/DisplayMemo?memoTitle=SHOPPING&item=ALL
Thank you again! -
@ceddirr add the config option
display_time
to the alert module https://github.com/MichMich/MagicMirror/tree/master/modules/default/alert#configuration-options -
Riiight, thank you very much! :D
-
Hi all,
Thank you again for your answer last time, playing with the option display_time from the alert module.
However, if you modify it, every alert would be modified. For exemple, if I want to set my memo to keep displayed for at least 30 secondes, I go modify the display_time from the alert module. But, all alerts like for example “welcome back Mr Blabla” when I switch profile will stay longer than usual.
The question is how do I have to do to only change the MMM-Memo alerts please?
Many thanks,
Cedric ;) -
Hi guys,
Just came back on the Internet, and I saw your messages.
@ceddirr, I’m sorry, but I didn’t develop a specific module for alerts as the existing one is quite nice… But I understand your problem.
When I had this DisplayMemo option, the idea was to temporarily display a long message, is it your case ? -
Hi, thank you for getting back to me =)
Yes, the idea is basically the same, but I would just like to see the memo a little bit longer than the regular alert’s configuration.
The problem for me is if I change the display_time setting directly on the alert module, it would be too long for the other alert like “nice to see you %profile%”, etc lol -
@schnibel easiest soluton would be to replace notifications with alerts, as they can have a duration parameter, but the downside is there can be just one alert per module at the same time.
https://github.com/schnibel/MMM-Memo/blob/master/MMM-Memo.js#L123
to
this.sendNotification("SHOW_ALERT", {title: ttl, message: msg, timer: 5000});
for 5 seconds or make a config option for it