Read the statement by Michael Teeuw here.
MMM-Image-On-Notification
-
Thank you @sdetweil That look better
Now I think it’s my last issue . The path …
I’m getting :
jarvis-standby2.gif:1 GET http://localhost:8080/jarvis-standby2.gif 404 (Not Found)
If the images is placed in /home/pi/MagicMirror/jarvis-standby2.gifnot sure what’s wrong and what is the “expectation” with the path …
Thanks -
@ejay-ibm the default path for the localhost server is /home/pi/MagicMirror,
if you do
ls /home/pi/MagicMirror/jarvis-standby2.gif -laF ``` do you get a proper display out? linux/pi is case sensitive..
-
@sdetweil said in MMM-Image-On-Notification:
ls /home/pi/MagicMirror/jarvis-standby2.gif -laF
yup
i@ejaypi:~/MagicMirror$ ls /home/pi/MagicMirror/jarvis-standby2.gif -laF
-rw-r–r-- 1 pi pi 8735111 mars 1 19:58 /home/pi/MagicMirror/jarvis-standby2.gif -
I found
src=“modules/MMM-HTMLBox/jarvis-standby2.gif”
that works …
thank you
-
@ejay-ibm actually looks like the base is
/home/pi/MagicMirror/modules
code in app/server.js
var directories = ["/config", "/css", "/fonts", "/modules", "/vendor", "/translations", "/tests/configs"];
sets up listening on those folders
-
Thank you @Sean & @sdetweil
This is the draft result. I still have to work on the talking image. that one is a quick test.https://drive.google.com/open?id=1G34tJ-1trMCK1yEJK0C6gIw3Nx3O8X8Q
As you can see the animation is triggered a bit early.
As I discussed with you Sean This is why I would need an additional notification between HOTWORD_PAUSE & ASSISTANT_ACTIVATE (I’ll use this notification as well to turn down the volume when user command is given in case any music is played on the mirror )thank you again
Ejay
-
@sdetweil I didn’t know that . Thanks I learnt something
I’ll use config folder thenEjay
-
@ejay-ibm i would try to stay away from MM folders… create another under modules for your own content
-
@sdetweil Yes config/images or modules/images
Both would be ok since not overwritten in case of an update.
Good Idea.