@solelo Maybe some photo rotation of items you sell? Or something humorous that make customers remember your store?
Read the statement by Michael Teeuw here.
Posts
-
RE: MagicMirror Ideas for Retail Application
-
RE: How to start MM with a module as default hidden
@thestigh You could combine MMM-pages and MMM-voice and just setup a page with the module and without it. However, this will probably only work if you are talking about 1 module. If you want several to be turned on and off, Lucy is the way to go. I belive Mykle1 has a video with it working as well.
-
RE: Hello-Lucy
@dazza120 said in Hello-Lucy:
Do you have to install both forks?
You need to install the original one and then copy cowboydudes fork (his folders) into the original and overwrite the files that come up.
-
RE: Can't install / Error with NPM / Electron not found
@sdetweil said in Can't install / Error with NPM / Electron not found:
note the missing g
libconf-2-4
should be
libgconf-2-4Hah! Sorry, such a dummy. Works now, thanks buddy!!
-
RE: Configuration MagicMirror
@greda Hey there! I should just be in the config file. I believe it is also explained in the read me on GitHub.
-
RE: Absolute Beginner Needing Help Installing Dependencies
@bhall321 HI! I see you are using the automatic installer which - I seem to recall - is missing Node. I would recommend doing a manual installation instead. The steps to do it is on GitHub and they are very easy to follow :-)
-
RE: Hello-Lucy
@dazza120 said in Hello-Lucy:
@mdhenriksen works a treat but I don’t know how to make a third page. Not sure what I’ll put on it? But I’m sure I’ll find something to install if I figure out how to add more pages it’s stuck on two at the mo 😢
Hey Dazza!
It’s pretty easy actually. Now first you should install MMM-page-indicator as well. That makes it easier to see what page you are on.
Making several pages:
{ module: 'MMM-pages', config: { modules: [[ "weatherforecast", "newsfeed", "compliments"], [ "calendar", "compliments", "calendar2"], ["MMM-CalendarWeek"]], excludes: ["clock", "currentweather", "MMM-page-indicator", "MMM-voice"], } },
The pages are made in an 2D-array, which is basically a line of elements separated by the brackets “[” and “]”.
Your array starts at the double bracket, “[[” right before “weatherforecast” and ends at the “]]” right after “MMM-CalendarWeek”. Inside the array the pages are separated by one bracket.
So this is a page: (remember the comma at the end)
[ "weatherforecast", "newsfeed", "compliments"],
And this is a page:
[ "calendar", "compliments", "calendar2"],
And lastly this is a page as well:
["MMM-CalendarWeek"]
Remember that the array is zero-based which means that the first page will be number 0. The second will be number 1 and the third will be number 2.
Hope it helps! :grinning_face_with_smiling_eyes:
-
RE: Hello-Lucy
@dazza120 It’s the small things that make the difference :grinning_face_with_smiling_eyes: