Read the statement by Michael Teeuw here.
Posts
-
RE: How can I create a new position?
Yes , you can create any position you like, the code will auto detect and use it validating module positions used
You edit index.html to
Make the html for the region
And custom.css for the css layout (main.css has the existing)See the note here under position
https://docs.magicmirror.builders/modules/configuration.html
A little further down is the layout of the existing positions shown with different colorsMagicMirror is displayed as a single web page, so there is not a lot of room!
I would start with no modules and use colored backgrounds for each region til you get the alignment you want
Another alternative is using css to move the left edge of a module in middle-center(full width starting at x:0)
Note that web content can overflow its region, and overlap, or push other content around unexpectedly
one of the best tools for understanding and manipulating css is the developers window elements tab, see the second link in my signature below for a post on using this.
-
RE: I have a touchscreen, would like to call up a module via a button
@kent right, that module provides buttons that show/hide A module
-
RE: I have a touchscreen, would like to call up a module via a button
@kent what is the notification you are sending
PAGE_CHANGED, 3 now, page 4 or page 1 next
PAGE_INCREMENT, from current pageAll you can do is change a page,
or
stop changing pages/resume changing -
RE: Has anyone developed a calendar module that can update through touchscreen or other local imput on MarigMirror directly such as throu Google Calendar API?
@aksuited there is a user who did this, but didn’t publish his module update
He did it with a modified calendarext3 as I recallI searched but didn’t find it
-
RE: Sending code
@videogame95 backtic is a single quote leaning to the left
On the US keyboard it is shifted to the left of the 1 key on the top row -
RE: Default Calendar module frequently refreshes
@DarrenO-0 in the output of npm start
There will be a lineBroadcasting xxx events for calendar yyyy
Where yyyy is the full url configured in the calendarThat line will have a timestamp at the beginning of the line
That is the output of the calendar module fetcher and starts the delivery to the front end to display
If you use pm2 that content is captured for you
You could use grep to extract just those lines
cd ~/.pm2/logs
lsFind the right filename.
Pm2_app name-out.loggrep Broadcasting fffff
Where fffff is the file name you selected
Note the file is added to each time MagicMirror is restarted unless you clear it first
pm2 flush
To clearBefore posting in a public place, make sure to mangle the url on each line so as not to expose your working cal url
-
RE: I have a touchscreen, would like to call up a module via a button
@kent there are modules that provide soft buttons… that button would send a notification to the pages module
like https://github.com/Tom-Hirschberger/MMM-TouchButton
to surface your Wifi page, and then it will return to the rotationfrom the doc
PAGE_CHANGED int MMM-pages will switch to the provided page index. -
RE: RCWL-0516 Microwave Radar Motion Sensor Module
@videogame95 the PIR module was reconstructed by
https://github.com/Coernel82/MMM-Pirapologize, please use periods at end of sentences, and new lines…
ca you confirm, the sensor works with its python code, outside MM
-
RE: Excessive pings to CalDAV server, like 2 per second
@xylyn the caldav module is getting g the data from the server
To create the iCal file the MagicMirror calendar module needsI don’t know how the caldav module works at that level