I’ve managed to create the VoiceControl module based on Snowboy Hotword detection: https://snowboy.kitt.ai/
Read the statement by Michael Teeuw here.
Posts
-
VoiceControl module
-
RE: Airplay 'Now Playing' module - help badly needed
@darrene You’re missing parenthesis in your call to frombase64:
this.frombase64();
-
RE: Earth globe
Here’s how the module based on WebGL looks like on my dev box:
https://www.youtube.com/watch?v=1L9yofDD-Ic&feature=youtu.be
It displays twitter stream of the tweets that have location. Red lines signify the negative sentiment and green positive. White is neutral.
-
RE: Motion Detector
@strawberry-3.141 I have a feeling that the camera is not properly captured from the client side js code. I am going to create a dev branch with a lot more logging soon.
-
RE: Viewing Mirror through browser on network
You should be able to access it from other computers. Make sure that you’re using the RPI’s current ipaddress.
-
RE: Stocks
I’ve found a web service which provides free intraday stock quotes. You will only need to register to get an API key.
https://www.alphavantage.co/support/#api-key
The code in the module will need to be modified though to parse a different payload result. I will try to update it today or tomorrow.
-
Motion Detector
I’ve published the Motion detector module that I’ve been using for a while. It uses a web camera connected to a Raspberry Pi.
You can find it here:
https://github.com/alexyak/motiondetector
The configuration should be pretty straightforward.
-
Camera module
I’ve just published the camera module. Besides displaying a video feed on your mirror, it could also take photos and email them.
[card:alexyak/camera]
-
RE: Stocks
I’ve updated the code to support the new API’s from https://iextrading.com/developer/docs/#stocks. Which BTW, doesn’t even require registration.
-
RE: Trafficmaps
Here’s a basic module traffic map module to display a static map with a route and traffic based on bing api’s:
'use strict'; Module.register('maproute',{ defaults: { key: "your_bing_map_key", start: "Morganville, NJ", end: "New York, NY", }, start: function() { Log.info('Starting module: ' + this.name); }, // Override dom generator. getDom: function() { var wrapper = document.createElement("img"); wrapper.style = "position:center; width:600px; height:600px;"; wrapper.src = "http://dev.virtualearth.net/REST/V1/Imagery/Map/Road/Routes?wp.0=" + this.config.start + ";46&wp.1=" + this.config.end + ";46&mapLayer=TrafficFlow&TravelMode=Driving&mapSize=600,600&key=" + this.config.key; return wrapper; } });Unfortunately there’s no way to change the style of the map on bing (black and white). You can get your map key from here:
https://www.bingmapsportal.com/
Thanks… Alex
-
RE: Another Kickstarter is trying to launch Magic Mirror
@Cato exactly my point. We already live “in the future” how all these campaigns promise :)
-
RE: Website Launched
Another one: “MagicMirror² has an extensive documentated API.”
It should probably be “MagicMirror² has an extensively documented API.” -
RE: Artificial Intelligence MMM Video
@wjdw87 The links are on the Youtube page
-
RE: Facial Rec. Attendance/Roll Taker
There’s another option to use a cloud service from Microsoft https://www.microsoft.com/cognitive-services/en-us/face-api. It should be enough to have just one good picture of your student uploaded to the server. I’ve got a basic module working that uses these api’s, but it’s not at the stage that I can publish it for everybody yet.
-Alex
-
RE: Motion Detector
Sorry, guys, the problem should be fixed now. Just pull the latest.
-
RE: Artificial Intelligence MMM Video
This is all nice and dandy but configuring and installing all of these dependencies and then making this run is really fragile process. On a top of that it seems like RPI hardware is not really capable of running this. So a few days ago I’ve got Amazon’t Alexa device - Dot and spend sometime connecting it to the MM on RPI and it works very well. (Voice recognition, passing commands, parameters, etc…)
So essentially we are bypassing all of this goo that these guys put together such as Speech AI, Voice Reco, TTS and connecting the result to MM. -
RE: Voice/motion control
I think using https://snowboy.kitt.ai is the best approach right now for detecting a hot word and then continuing with the google one (annyang). The same way the guy at the http://docs.smart-mirror.io has done it.
-
RE: Phone Notifications
@djsunrise19 It looks like their iPhone app doesn’t support notifications which is understandable due to restrictions Apple has for ability to hook into global notifications on the device.
-
RE: MMM-SpotifyConnectUI
@Cato How hard it would be to add the code to actually play the music on the RaspPi?