Hey! Did you find a way to display a non-public google calendar? I would be really interested in the solution! Thanks
Read the statement by Michael Teeuw here.
Latest posts made by Edohvin
-
RE: How does the default MMM-Calendar authenticate Google?
-
Easy calendar question
Is it possible to show a google calendar that is not made available to the public, using the default calendar module?
On the screenshot, you can see the access permissions. It is not shared with the public but is shared however in my organization.I guess it has to do with the credentials, right? Just filling in my google account details in the calendar config (user & pass variables) doesn’t seem to make it work. What am I missing here? What’s the correct way to obtain credentials?
-
RE: Calendar can switch on notifications
@sdetweil Yes, I was thinking the same thing. I can implement this very easily, but then I would have to run 30 calendar modules at the same time. (29 would just be hidden, and one would actually show). Won’t that slow things down?
-
Calendar can switch on notifications
Hello!
I have a face recognition module installed. Whenever a person stands in front of the mirror, the module sends out a ‘this.sendNotification(“USERS_LOGIN”, user)’.
After this notification, I would like the calendar module to display this certain user’s calendar.
Can anyone help with this?I would start of with the following added to the calendar module:
notificationReceived: function(notification, payload, sender) { var self = this; switch (notification) { case "USERS_LOGIN": { // Put the appropriate calendar on the screen } case "USERS_LOGOUT_MODULES": { //Show the default calendar again } } },
-
RE: Creating Custom Voice Commands for Hello-Lucy...?
@Doctor0ctoroc Have you been able to increase the speed? If so, what did you do?
-
RE: Is there an online voice assistant with custom commands?
@saljoke Thanks for the reply! I will check it out right away!
-
Is there an online voice assistant with custom commands?
Hi everyone
I have tested the voice assistants based on annyang (MMM-Voice-Control) and based on pocketsphinx (Hello-Lucy). With these modules it is really easy to add custom commands and have appropriate actions, which is very nice. But both modules seem to work poorly. When I talk to them, they work alright, but that’s just because I know how to do it (right speed, intonation, pronunciation, etc.) For other people, it’s just unusable.
Is there an online voice assistant (to increase hit rate) where I can also add custom commands? Like when I say ‘Play Video’, the module sends a notification like ‘this.sendNotification(“YT_PLAY_VIDEO”)’ to all other modules.
I know there are modules like MMM-GoogleAssistent, but you can not add custom commands in here.
TLDR: Is there an online voice assistant that can interact with other modules by sending notifications?
-
Python script streaming ideas
Hello community!
I have a python script that runs a detection algorithm. When it is ran, it shows a webcamfeed (using cv2) with drawings (detection boxes) drawn on there aswell.
Now, I want my mirror to be able to start this python script AND also show the webcam feed (with the bounding boxes) on my mirror!
Anyone knows some ideas how to tackle this problem? I included a picture to give you an idea what I mean with webcam feed and bounding boxes! (I am using a jetson Nano, but that shouldn’t be important for this question)
Any brainstorming is appreciated, thanks!