Im new to the magic mirror scene, and ive just installed Magic mirror on to my pi zero w using what i learned from this page: https://forum.magicmirror.builders/topic/9386/installing-on-a-pi-zero
after installing, the mirror runs great, and I see the modules. However, whenever I try to modify the config.js file, either to add a module or to edit an existing one, I get an error message when the mirror boots up saying that i need to read the readme file due to an error. When i remove the modifications, the mirror runs smoothly.
here is an example of code I put in to modify the clock module:
{
module: “clock”,
position: “top_left”
config: {
timeFormat:“12”,
showPeriod:“false”,
displayType:“both”,
analogSize:“400px”
}
},
{
module: “clock”,
position: “top_left”
config: {
timeFormat:“12”,
showPeriod:“false”,
displayType:“both”,
analogSize:“400px”
}
},
like I said, im new to this, and would like to better learn how to program the config file.