<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Google Home Hub]]></title><description><![CDATA[<p dir="auto">Following the recent introduction of the Google Home Hub I was wondering if something similar could be achieved via Magic Mirror. As I have a Raspberry Pi 3B and Raspberry Pi Touchscreen with <a href="https://www.kiwi-electronics.nl/raspberry-pi-7-inch-touchscreen-display-behuizing-wit?lang=en" target="_blank" rel="noopener noreferrer nofollow ugc">enclosure</a> lying around the real effort would be in setting up and configuration of Magic Mirror.</p>
<p dir="auto">So I started putting the hardware together and installing a fresh Rasbian STRETCH (with Desktop) OS on it. I hooked it up to my Wifi network and enabled ssh.</p>
<p dir="auto">After doing the usual raspi-config I added lcd_rotate=2 to the config.txt to rotate the screen (and touchpoints)</p>
<p dir="auto">Then I installed MagicMirror and made it autostart using pm2. So I now have a default MagicMirror running on a 7" touchscreen in a enclosure. So far so good…</p>
<p dir="auto">Next steps would be to:</p>
<ul>
<li>Configuration of my own modules in Magic Mirror</li>
<li>Setup multiple “slides” with modules</li>
<li>Find a way to show a different screen (with Google Photos backgroud, date &amp; time and outside temperature) as a MagicMirror screensaver</li>
<li>Use the OS screensaver to turn the screen off after x minutes/hours (or more something like the Toon dim function)</li>
<li><s>Abandon the project halfway to start another one</s></li>
<li>Theme the interface</li>
<li>Turn off the OS screensaver when movement is detected</li>
<li>Show data, scenes and switches from domoticz and Home Assistant</li>
<li>I could implement Google Assistant (I don’t really care for voice assistants)</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/topic/8901/google-home-hub</link><generator>RSS for Node</generator><lastBuildDate>Wed, 13 May 2026 10:22:51 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/8901.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 12 Oct 2018 09:02:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Google Home Hub on Thu, 01 Nov 2018 19:30:49 GMT]]></title><description><![CDATA[<p dir="auto">thx <a class="plugin-mentions-user plugin-mentions-a" href="/user/emlowe" aria-label="Profile: emlowe">@<bdi>emlowe</bdi></a> for your feedback</p>
<p dir="auto">I must admit that I hesitated going forward with this project, but I realised I’m not in to make a perfect Google Home Hub replica. I want to find out how close I can get with the features I want.</p>
<p dir="auto">The carousel seems similar to what Google does when you ask something. I also looked into the <a href="https://github.com/Veldrovive/MMM-Page-Selector" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Page-Selector</a> module because it seems to be a good way to define the different screens. It also seems to be working together with the <a href="https://github.com/Veldrovive/MMM-Voice-Commands" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Voice-Commands</a> module.</p>
<p dir="auto">For now I want to make two screens working, one screensaver screen with the Google Photo background, clock and temperature. And one with some information, just to have a proof of concept.</p>
]]></description><link>https://forum.magicmirror.builders/post/46202</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/46202</guid><dc:creator><![CDATA[pietervanharen]]></dc:creator><pubDate>Thu, 01 Nov 2018 19:30:49 GMT</pubDate></item><item><title><![CDATA[Reply to Google Home Hub on Mon, 15 Oct 2018 03:59:37 GMT]]></title><description><![CDATA[<p dir="auto">I use a 7" touchscreen Pi as a “desk assistant” running MagicMirror. I keep a scrolling calendar for the day on one half, and I rotate the other half through a bunch of panels using mmm-carousel.</p>
<p dir="auto">You can simulate a lot of what this Google device does, however, it’s likely to be quite hard to get the touchscreen working in a similar way. Swiping, tapping, etc, bringing up a keyboard - these are all things Android does very seamlessly and easily. MagicMirror just doesn’t have the support for those, unfortunately.</p>
<p dir="auto">I spent some time trying to get some gestures to work - I wanted a “double-tap” to turn on and off the screen - but wasn’t really able to make much progress because the basic support for it in electron just wasn’t there</p>
<p dir="auto">But good luck on this project, I think this is a worthwhile goal and I’ll be following your progress</p>
]]></description><link>https://forum.magicmirror.builders/post/45420</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/45420</guid><dc:creator><![CDATA[emlowe]]></dc:creator><pubDate>Mon, 15 Oct 2018 03:59:37 GMT</pubDate></item><item><title><![CDATA[Reply to Google Home Hub on Sun, 14 Oct 2018 19:32:51 GMT]]></title><description><![CDATA[<p dir="auto">I decided to setup the “screensaver” set of modules first:</p>
<p dir="auto"><img src="https://cdn.images.express.co.uk/img/dynamic/59/590x/Amazon-Echo-Amazon-Echo-rival-Amazon-Echo-vs-Google-Home-Hub-Amazon-Echo-details-Amazon-Echo-news-Amazon-Echo-latest-1030767.jpg?r=1539504324352" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">I managed to get the <a href="https://github.com/eouia/MMM-GooglePhotos" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-GooglePhotos</a> module running, but somehow the photo overlaps doesn’t use the whole screen.<br />
To solve this I set the margin in main.css to 0 and added a padding of 30 pixels:</p>
<pre><code>margin: 0;
padding: 30px;
</code></pre>
<p dir="auto">I also adjusted the height and width calculation:</p>
<pre><code>height: calc(100% - 90px);
width: calc(100% - 90px);
</code></pre>
<p dir="auto">After that I setup the Clock to only show the hours and minutes in the lower left corner.</p>
<pre><code>showDate: false,
displaySeconds: false
</code></pre>
<p dir="auto">Below that I put the CurrentWeather Module, that will only show the rounded outside temperature.</p>
<pre><code>roundTemp: true,
onlyTemp: true
</code></pre>
<p dir="auto">The weather icon is now shown in grey, maybe I will add an additional color per icon later on.</p>
<p dir="auto"><img src="/assets/uploads/files/1539545563423-screensaver.png" alt="0_1539545561398_screensaver.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/45404</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/45404</guid><dc:creator><![CDATA[pietervanharen]]></dc:creator><pubDate>Sun, 14 Oct 2018 19:32:51 GMT</pubDate></item></channel></rss>