Read the statement by Michael Teeuw here.
NFL Score Module
-
after an issue on github i made a bugfix on a seperate branch so people can test if this will work for everyone
cd ~/MagicMirror/modules/MMM-NFL git fetch git checkout bugfix/time-conversion npm install
start your mirror and see if the match start datetime is correct for your timezone
-
The changes are now merged to master branch
To update do the following
cd ~/MagicMirror/modules/MMM-NFL git pull npm install
If you tested the bugfix branch you have to do the following
cd ~/MagicMirror/modules/MMM-NFL git checkout master git pull
-
I want to announce, that there will come statistics in place the next days
-
That’s really AWESOME! Thank you!!!
-
Your Module looks very awesome!!
Do you think you could create a step by step instructions for the installation?
Because for me it isnt working atm and i dont know why… -
@kwaeksler https://github.com/fewieden/MMM-NFL#installation
any errors in the console?
did you run
npm install
?in the config
{ module: 'MMM-NFL', position: 'top_right'}
-
@kwaeksler said in NFL Score Module:
Your Module looks very awesome!!
Do you think you could create a step by step instructions for the installation?
Because for me it isnt working atm and i dont know why…Was probably my fault. Apparently I had an incorrect configuration of the MagicMirror.
I had one more error with a default module so i’ve reinstalled my MagicMirror.
After the installation and configuration of the MM the NFL Module works very fine.
So sorry for trouble and a great thank you for support @strawberry-3-141Love your Module!
-
I love this module. It looks awesome.
I am trying to remove the TV column, and it doesn’t seem to be having any effect. I set network to false.
module: 'MMM-NFL', position: 'top_right', config: { colored: 'false', network: 'false', reloadInterval: 900000, }, },
-
@daveyg_71 you need to remove the quotes, otherwise the boolean is a string and will represent true
config: { colored: false, network: false, reloadInterval: 900000, },
-
That worked to remove the network column but to have the colored logos show up I had to have the quotes. This is how I have it set and I have colored logos and no TV column.
{ module: 'MMM-NFL', position: 'top_right', config: { colored: 'false', network: false, reloadInterval: 900000, },