SOLVED question about MMM-MarineWeather module
-
I’m very new to this so please bear with me.
I have successfully added the above module to Magic Mirror and it’s working! However, I want to change units from Celsius to Fahrenheit. The module’s readme file says I can do this by coding config.units = imperial. I’m not exactly sure how to actually put this into the config.js file though.
I tried typing it out right after the last line of code, which was apid: XXXX and ended up crashing mm. little help?
-
Put a comma after appid like after latitude and longitude then units: imperial. The module have already units: config.units set in place so maybe you want to change the default settings of config.js, at the beginning of the file there is also units: metric, change it to imperial and will affect all modules.
-
@r3d6 you have two options.
Either you change it globally for your mirror here (recommended, because it also controls the units for other modules):
Or only for this module specifically:
-
@strawberry-3-141 Thank you. I changed it globally. This was very helpful. What did you mean by start a github?