MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. JRCelis
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    J
    Offline
    • Profile
    • Following 1
    • Followers 0
    • Topics 1
    • Posts 9
    • Groups 0

    JRCelis

    @JRCelis

    2
    Reputation
    597
    Profile views
    9
    Posts
    0
    Followers
    1
    Following
    Joined
    Last Online

    JRCelis Unfollow Follow

    Best posts made by JRCelis

    • RE: MMM-NOAA - Another Weather Module

      @justjim1220

      Thanks!

      posted in System
      J
      JRCelis

    Latest posts made by JRCelis

    • RE: MMM-NOAA - Another Weather Module

      @justjim1220

      Thanks!

      posted in System
      J
      JRCelis
    • RE: MMM-NOAA - Another Weather Module

      Trying to update my MMM-NOAA but I’m getting the following message.

      pi@raspberrypi:~/MagicMirror/modules/MMM-NOAA3 $ git pull
      Updating 083122c…747044d
      error: The following untracked working tree files would be overwritten by merge:
      latlon.json
      Please move or remove them before you merge.
      Aborting

      posted in System
      J
      JRCelis
    • RE: Ecobee

      The module is working fine. Thanks! Is there any way to change the output temperature to Celsius instead of Fahrenheit?

      posted in Requests
      J
      JRCelis
    • RE: Rpi 3B+, can't install

      @epi
      I got the same issue and I installed manually.

      1. install the latest Node.js version.
      • Updates Debian apt package repository to include the NodeSource packages.
        curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

      • install Node.js
        sudo apt install -y nodejs

      • Check your node version ( should be V 10.10.0)
        node -v

      1. Clone the repository and check out the master branch: git clone https://github.com/MichMich/MagicMirror
      2. Enter the repository: cd MagicMirror/
      3. Install and run the app with: npm install && npm start
      4. create a working config.
      posted in Troubleshooting
      J
      JRCelis
    • RE: MMM-NOAA - Another Weather Module

      @tbbear Thanks!!!

      posted in System
      J
      JRCelis
    • RE: MMM-NOAA - Another Weather Module

      Does not run after updated and modified the config file.

      /home/pi/.pm2/logs/mm-error.log last 15 lines:
      0|mm       | WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
      0|mm       | WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
      0|mm       | TypeError: Cannot read property 'data' of undefined
      0|mm       |     at Object.parseResponse (/home/pi/MagicMirror/modules/MMM-NOAA3/providers/ds.js:61:43)
      0|mm       |     at Request._callback (/home/pi/MagicMirror/modules/MMM-NOAA3/providers/ds.js:52:28)
      0|mm       |     at Request.self.callback (/home/pi/MagicMirror/modules/MMM-NOAA3/node_modules/request/request.js:185:22)
      0|mm       |     at emitTwo (events.js:126:13)
      0|mm       |     at Request.emit (events.js:214:7)
      0|mm       |     at Request.<anonymous> (/home/pi/MagicMirror/modules/MMM-NOAA3/node_modules/request/request.js:1161:10)
      0|mm       |     at emitOne (events.js:116:13)
      0|mm       |     at Request.emit (events.js:211:7)
      0|mm       |     at IncomingMessage.<anonymous> (/home/pi/MagicMirror/modules/MMM-NOAA3/node_modules/request/request.js:1083:12)
      0|mm       |     at Object.onceWrapper (events.js:313:30)
      0|mm       | WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
      0|mm       | WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
      

      My config.js

      {
      			module: 'MMM-NOAA3',
      			position: 'top_right',
         			config: {
             			provider: "darksky", // From list above
             			apiKey: "xxxxxx",        // From one of the providers listed above
             			airKey: "xxxxxx",    
             			css: "NOAA3"                   // THIS MUST CONTAIN A CSS STYLE NAME 
      			userlat: "43.02xxxx", 
                   		userlon: "-81.32xxxx" 
      			}
      
      },
      
      posted in System
      J
      JRCelis
    • MMM-NOAA3 - No icon

      Hello,

      My MMM-NOAA3 module is working partially, the four days forecast does not show up and the Icon at the top does not appear. How can I fix it? Thanks

      0_1535082601072_CropperCapture[21].jpg

      :::

      language: "en",
      timeFormat: 12,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "US Holidays",
      		position: "top_left",
      		config: {
      			calendars: [
      				{symbol: "calendar-check-o ",
      					url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      				}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	{
      		disable: true,
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "London",
      			locationID: "60585xx",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "1622a28870ff593b300001xxxxxxxxxx"
      		}
      	},
      	{
      		disabled: true,
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "London",
      			locationID: "6058560",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "1622a28870ff593b300001xxxxxxxxxx"
      		}
      	},
      	{ 
      		module: 'MMM-NOAA3',
      		position: 'top_right',
      		config: {
         			provider: "openweather", // From list above
         			apiKey: "1622a28870ff593b300001xxxxxxxxxx",        // From one of the providers listed above
         			airKey: "MdzfQP4dSXbMCyxxx",    
         			css: "NOAA4"                   // THIS MUST CONTAIN A CSS STYLE NAME 
      		}
      	},
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "New York Times",
      					url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      ]
      

      :::

      posted in Troubleshooting
      J
      JRCelis
    • RE: MMM-AssistantMk2

      @sean
      Hello @Sean and thanks for your help. I’m using the speaker that is coming with Google Voice Kit V1 and is working fine when I’m testing the sound, no buzz or distorted sound and the beginning of the sentences, the issue starts when I click the speaker icon when MMM-assistantk2 is running, the assistants answer start whit a big distorted noise o buzz and then will be fine.

      posted in System
      J
      JRCelis
    • RE: MMM-AssistantMk2

      @jomwells

      I get the same issue, I hear a buzz at the beginning of the answered sentences in my speaker and clear voice after two seconds of the sentences start.

      posted in System
      J
      JRCelis