@pnobrega as long as the module isn’t relying on rpi hardware (like the gpio) you are good to go.
You can run MM2 on a regular windows machine to if you like. (There is a guide somewhere here on that)
Read the statement by Michael Teeuw here.
Posts
-
RE: Eeepc instead of raspberry
-
RE: Currentweather,doesn't appear.
I tested this with my mirror (2.9.0)
{ module: "currentweather", position: "bottom_right", config: { location: "Alzey,Germany", locationID: "2956710", appid: "my api code", } },
And had no issues, Double check your API code and the Mirrors internet connection.
-
RE: Currentweather,doesn't appear.
The only thing that I see wrong is that the position doesn’t exist.
These are the positions that you can choose from :
top_bar, top_left, top_center, top_right, upper_third, middle_center, lower_third, bottom_left, bottom_center, bottom_right, bottom_bar, fullscreen_above, and fullscreen_below
A reference for the positions (regions) can be found here :
https://forum.magicmirror.builders/topic/286/regions/2 -
RE: virtual touchscreen?
Looks like a noise-maker with that rotating mirror :D
But fun idea! -
RE: MMM-flic
@da4throux excellent! Maybe now I will have the motivation to setup the flic buttons I got two years ago 😁
-
RE: Trying to change size of currentweather module driving me nuts...
.currentweather .small { font-size: 10px; } .currentweather .medium { font-size: 15px; } .currentweather .large { font-size: 20px; }
-
RE: MMM Remote Control Error
@Chynovsky you are missing commas after
module: 'MMM-Remote-Control'
And
position: 'bottom_left'
It should be
module: 'MMM-Remote-Control',
And
position: 'bottom_left',
-
RE: My first two mirrors made with privacy film vs acrylic one
@hedmik check with your local “Glasmästare” most of them can get hold of two way mirrors, Pilkington is readily available. Pilkington mirroview has a good enough balance for most scenarios.
-
RE: MM using Arduino...
@justjim1220 with a 16mhz clockspeed, limited amount of memory… I would say you can’t.
You could probably write something similar if you just want some simple text displayed on a small tft.
-
RE: Change a font issue
Try (removing the font weight from the font face)
@font-face { font-family: FivoSans; font-style: normal; src: local("Fivo"), url("FivoSans-Medium.woff2") format("woff2"); } .newsfeed .light { font-family: FivoSans; }
(notice that i added the
.light
class after.newsfeed
, this is because the.light
class name adds the robot font and overwrites the more general font added to.newsfeed
)
With the font file still in the css folder (no subfolders ofc)., Next step is to try any other font type, like otf or ttf