Read the statement by Michael Teeuw here.
Hi, there is a new Alexa Module
-
@rubenix Hi, I think I have good news for you. I tested the MMM-CalenderExt2 and I had problems with my module, too. I found on the link I send you the solution. The only thing you have to do is add a notification. I added this to your config and I hope it works.
{ module: 'MMM-CalendarExt2', position: "middle_center", config: { rotateInterval: 0, updateInterval: 1000 * 60 * 60, calendars : [ { name: "Family", url: "mycalendar.ics", //obviously my correct ics address here }, ], views: [ { name: "VIEW1", mode: "month", position: "middle_center", locale: "es_ES", slotCount: 1, calendars: ["Family"], }, ], scenes: [ { name: "PAGE1", views:["VIEW1"], className: "fakeScene" }, { name: "PAGE2", views:["VIEW1"], }, { name: "PAGE3", views:["VIEW1"], className: "fakeScene" }, { name: "PAGE4", views:["VIEW1"], className: "fakeScene" }, { name: "PAGE5", views:["VIEW1"], className: "fakeScene" }, ], notifications: { "PAGE_INCREMENT" : { exec: "sceneNext", }, "PAGE_DECREMENT" : { exec: "scenePrevious", }, "PAGE_CHANGED" : { exec: "changeSceneById", payload: (payload) => {return payload} } }, }, },
-
Hey man!! many thanks will try it asap and tell you how it goes.
I found another solution to show my google calendar using an iframe (had to make it public tho and do not want this)So pretty good news if I make it to work.
Many thanks!!!
-
Yehaaaa. Got it working with no issues at all.
I think I tried before as per your link instructions but I think I put it without the notifications of page increment and page decrement. I made a fatal mix indeed…and thats why mirror was doing weird things…Thanks so much, I’ve been in touch with MMM-Page developer but yours it has been the best indication indeed.
I’ve been playing with MMM-Notification-Trigger as I needed for interact with a groove sensor to fire QUERY_PAGE_NUMBER and got it working too. Very productive weekened indeed :face_savouring_delicious_food:So now pages rotates by itself ; I can change them by AlexaControl and with a gesture too!!! Lovely
Thats what I wanted; reverting back calendar as private!!!Thanks so much @JoChef2 I owe you a beer:clinking_beer_mugs:
-
Hello again! I’ve another question…
I want to power off USB power at the same time I power off monitor from alexa module.I’ve seen on line 199 of node_helper.js the following:
exec("vcgencmd display_power 0", opts, (error, stdout, stderr) =>
Tried to add the command: echo ‘1-1’ |sudo tee /sys/bus/usb/drivers/usb/unbind (cut power from usb ports)
like that:exec("vcgencmd display_power 0 && echo '1-1' |sudo tee /sys/bus/usb/drivers/usb/unbind", opts, (error, stdout, stderr) =>
Command does not work (I think theres a syntax error) monitor powers off but usb power still on.
Command works from commandline.
Also tried to put it on a separate exec function without succeed.Can you give me a hand with this @JoChef2
Thanks!
-
Also created a couple of scripts (monitor_on.sh & monitor_off.sh) --> with 2 commands I mentioned before on them.
Both works from bash but cannot execute them from node_helper.js
any thoughts? sorry about asking but am not a coder & cannot find an answer anywere…Thanks!
-
@rubenix what do the scripts look like? if u replaced the vcgencmd strin with the scripts, they should work…
where are the scripts? they MUST be on the path, or have the full path specified in the command too
-
@rubenix Hi, I don’t really know why it doesn’t work. The syntax seems to be right. That’s the hole edit part around line 199. Maybe it helps. I tested this and it works great.
device.handler = function(action) { if(action === 1){ exec("vcgencmd display_power 1 && echo '1-1' |sudo tee /sys/bus/usb/drivers/usb/bind", opts, (error, stdout, stderr) => { _this.checkForExecError(error, stdout, stderr); }); }if(action === 0){ exec("vcgencmd display_power 0 && echo '1-1' |sudo tee /sys/bus/usb/drivers/usb/unbind", opts, (error, stdout, stderr) => { _this.checkForExecError(error, stdout, stderr); }); } }
-
@JoChef2 its because the exec() is launching A program… but the program is NOT a shell (sh., bash etc), and only THEY understand the | and && syntax… vcgencmd does not… it executes what it knows ‘display_power 1’ ,and ignores the rest
now, you CAN execute a script directly as long as it contains the processor name at the front
#!/bin/sh or #!/bin/bashexec(“/home/pi/MagicMirror/modules/MMM-AlexaControl/scriptname”)
or the script has to be in the path environment varible.
(unlike windows, the ‘current directory’ is NOT included in the path (for security reasons))if the script does NOT contain the processor path&name
then you have to launch the shellexec(“/bin/bash -c “command string with pipe and logic chars””)
-
got it working thanks!
if(action === 1){ exec('/home/pi/monitor_on.sh'); }if(action === 0){ exec('/home/pi/monitor_off.sh');
forgot to put the path :confounded_face:
Thanks buds!
-
Hi, mmm-alexacontrol is ok, i’m change pages,etc.
Can I ask alexa for something and alexa replies in the compliments module?
thanks