Really nice tutorial @jeff this should be pinned
Read the statement by Michael Teeuw here.
Posts
-
RE: CSS 101 - Getting started with CSS and understanding how CSS works
-
RE: MM Calendar showing "No upcoming events"
@vanmas said in MM Calendar showing “No upcoming events”:
the content of the file looks pretty empty
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH X-WR-CALNAME:http://www.westgatemennonite.ca/?plugin=all-in-one-event-calen dar&controller=ai1ec_exporter_controller&action=export_events&no_html=true& & X-WR-TIMEZONE:UTC END:VCALENDAR -
RE: MagicMirror to msSQL
@ales.krohne it’s not possible to use require in the browser like this. You need to read about the node_helper or check other modules. Require is a feature of nodejs and therefore can only be used there. You have to create one of this node_helper for your module and then communicate between your module via socket notifications
-
RE: can someone help pleas with my config/config.js
@jiyar is your file called config.js? Is it stored in MagicMirror/config/config.js
-
RE: can someone help pleas with my config/config.js
@jiyar linting your config on http://jshint.com/ doesn’t give anymore issues, can you specify what the issue is with your config. Can you provide any error logs (pm2, electron, browser, terminal …)?
-
RE: can someone help pleas with my config/config.js
@jiyar you have two issues, both are in the section of the module prayer time:
- after apiVersion there is a comma missing before your comment
apiVersion: '1.0', // please, leave unchanged. reserved for future use. - There are two brackets too much (
} ]), it should be:
alertTimer: 15000 } }, - after apiVersion there is a comma missing before your comment
-
RE: New Raspberry Pi 3+
It’s only a minor upgrade to the 3, stuff like this I would expect for a major upgrade in a pi 4
-
New Raspberry Pi 3+
Today they released a new Raspberry Pi
Broadcom BCM2837B0, Cortex-A53 (ARMv8) 64-bit SoC @ 1.4GHz 1GB LPDDR2 SDRAM 2.4GHz and 5GHz IEEE 802.11.b/g/n/ac wireless LAN, Bluetooth 4.2, BLE Gigabit Ethernet over USB 2.0 (maximum throughput 300 Mbps) Extended 40-pin GPIO header Full-size HDMI 4 USB 2.0 ports CSI camera port for connecting a Raspberry Pi camera DSI display port for connecting a Raspberry Pi touchscreen display 4-pole stereo output and composite video port Micro SD port for loading your operating system and storing data 5V/2.5A DC power input Power-over-Ethernet (PoE) support (requires separate PoE HAT)https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/
-
RE: Details about Nunjucks templating system?
@j.e.f.f I didn’t had a look yet, but maybe you want to have a look into the refactor of the weather modules where the nunjuck idea was born https://github.com/MichMich/MagicMirror/tree/weather-refactor/modules/default/weather
-
RE: NFL Score Module
Fixed issues reported (shows
NFL undefined 2017)[card:fewieden/MMM-NFL]
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@fabbr When I go to that page it says svg files are invalid
I need single svg files anyways (each team) with the api name of the team.
Here are the current icon fixes per team https://github.com/fewieden/MMM-soccer/blob/master/MMM-soccer.js#L13-L18When you tried
leagues: {'BRAZIL': 444}did you also setshow: 'BRAZIL' -
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@fabbr if you can send me the exact name from the API and a link to a SVG version of the logo, then I can add it
-
RE: Magic mirror serving multiple clients
@cowboysdude take a look at https://github.com/fewieden/MMM-syslog-slave thats the only thing were I connected multiple instances
-
RE: Help,please. iFrame wont display ANYTHING // Already read ALL other Threads regarding that
@LuiDavinci you have two main issues, first the module is
MMM-iFrameand notiFrame, second the url has to be an arrayurl: ["http://service.mta.info/ServiceStatus/status.html?widget=yes"],with those changes I can see it on my monitor.Furthermore, the documentation gives no details about a scrolling config option https://github.com/alberttwong/MMM-iFrame#configuration-options
-
RE: Custom module to run python script
@Sputnik the facerecognition moduel of @paviro makes also heavy use of python scripts, take a look here https://github.com/paviro/MMM-Facial-Recognition/blob/master/node_helper.js
-
RE: HTML or IFrame Scraping Help
@brycedewitt In this part of my module I’m scraping a website of a parcel carrier, so it’s possible https://github.com/fewieden/MMM-ShipmentTracking/blob/master/carriers/DHL.js
-
RE: What other factors are affecting the updateInterval?
@E3V3A you can store the data in a variable in the node helper, every time someone connects and your start flag is already set you just send him the data from your variable
-
RE: What other factors are affecting the updateInterval?
@E3V3A every client instance is connecting to the same nodehelper, so what some people did is having a start boolean variable so they can check if the nodehelper already initialised e.g.
https://github.com/paviro/MMM-Wunderlist/blob/master/node_helper.js#L19
https://github.com/paviro/MMM-Wunderlist/blob/master/node_helper.js#L94
https://github.com/paviro/MMM-Wunderlist/blob/master/node_helper.js#L106
