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

    Posts

    Recent Best Controversial
    • RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates

      Hi. There is a way to call, i.e, module controls/carousel/next slide from url?

      posted in Development
      M
      mohace
    • RE: MMM MyWeather/martinkooij only Day icons ....no night icons shown

      @Stoffbeuteluwe

      Did you follow all the installation instructions correctly?

      "Installing the module
      Clone this repository in your ~/MagicMirror/modules/ folder ( $ cd ~MagicMirror/modules/ ):

      git clone https://github.com/martinkooij/MMM-MyWeather.git
      then goto to the module directory and execute in the module directory

      npm install
      to install the dependencies"

      Especially npm install?

      posted in Troubleshooting
      M
      mohace
    • RE: MMM MyWeather/martinkooij only Day icons ....no night icons shown

      Hi. What module, this one https://github.com/cowboysdude/MMM-MyWeather or this one https://github.com/martinkooij/MMM-MyWeather

      posted in Troubleshooting
      M
      mohace
    • MMM-WeatherBackground new default collections. Please contribute.

      Hi. I recently made a PR for the MMM-WeatherBackground module. I made a contribution to modify MMM-WeatherBackground.js, in such a way that now there are predetermined a series of collections that reflect in addition to the weather conditions, the time of day (day or night) and the season of the year.

      All those collections can be seen in:
      https://unsplash.com/@mohace/collections

      It is a hard job to select photos and add them to the collections.
      They are divided into all weather conditions, whether it is day or night and the season of the year. For example, fog day, rain day spring, snow night, etc.
      For this reason I want to ask anyone who is interested in contributing photos to the collections, to use this post to do so.
      As follows:
      cloudy windy day autumn: https://unsplash.com/photos/VQqt3g0BixA

      That way I will be adding the photos to the collections, so that by default they are visualized in the module when season, day or night and weather condition match.

      The configuration of the module in config.js should now be as simple as:

      {
      	  module: "MMM-WeatherBackground",
      	  config: {
                                       targetDOM: ".MMM-Dummy",
                                       //null or DomSelector for target.
      				// if null, currentweather will be targeted.
      				// examples: ".newsfeed", "#SOME_SPECIAL_DOM", ".top.left .module"
      				hemisphere: "n", // new config option "s" or "n". Another letter or number won't work.
      				source : "MMM-NOAA3", // `currentweather`, `MMM-NOAA3`, `MMM-DarkSkyForecast`
      				defaultCollection: "featured", 	// I think this is now deprecated			
      			}
      },
      
      posted in Utilities
      M
      mohace
    • RE: Where are you from?

      Palma de Mallorca, Spain.

      posted in General Discussion
      M
      mohace
    • RE: [MMM-Remote-Control] Cannot GET /api

      @teemuoksanen said in [MMM-Remote-Control] Cannot GET /api:

      I have exactly the same problem - all API calls result in error “Cannot GET /api/whatevermoduleitrytocall”. However, remote.html loads just fine.

      As I have.

      Edited: It was a mistake, sorry. I have same problem.

      posted in Troubleshooting
      M
      mohace
    • RE: MMM-WeatherBackground question

      @Sean said in MMM-WeatherBackground question:

      Sorry for incomplete information on repository.

      Don’t worry. It was just to contribute!

      posted in Troubleshooting
      M
      mohace
    • RE: True Challenge Weather Modules Developers

      Solved in https://forum.magicmirror.builders/topic/10244/photo-notification-depending-on-weather

      posted in Requests
      M
      mohace
    • RE: MMM-WeatherBackground question

      @Sean said in MMM-WeatherBackground question:

      @lkthomas
      You can use these as keywords.

      sunny, clouds, cloudy, windy, heavy rain, rain, thunderstorm, snow, fog, clear night, cloudy night, night rain, night thunderstorm, night snow, windy night
      

      Hi Sean, your module is really very nice, thank You.
      I was working with collections and I couldn’t make module loads my ones, despite your instructions in the 2 previous posts.
      So, I took a look to console log and see that You url always appends in the url the weather conditions. When condititions carry on “-” between words, your url also carry on that sign.
      I meant, when I wrote in config.js

      collections: {
      				  "clear-day": "4613658"
      				  "sunny": "4613658",
      				  "clouds": "4557538",
      				  "cloudy": "4557538",
      				  "cloudy night": "4613565",
      				  "partly cloudy day": "4618566",
      				  "partly cloudy night": "4618856",
      				  "windy": "4613696",
      				  "wind": "4613696",
      				  "heavy rain": "4613730",
      				  "rain": "4613732",
      				  "night rain": "4613625",
      				  "clear night": "4613623",
      				  "fog": "4618886",
      				  "thunderstorm": "4613853",
      				  "tornado": "4619143",
      				  /*"hail": "",
      				  "i-rain": "",
      				  "i-wind": "",
      				  "sleet": "",
      				  "snow": "",*/
      

      featured photos was loaded anyway.
      But when I did set collections in this way:

      				  "clear-day": "4613658",  
      				  "sunny": "4613658",
      				  "clouds": "4557538",
      				  "cloudy": "4557538",
      				  "cloudy-night": "4613565",
      				  "partly-cloudy-day": "4618566",
      				  "partly-cloudy-night": "4618856",
      				  "windy": "4613696",
      				  "wind": "4613696",
      				  "heavy-rain": "4613730",
      				  "rain": "4613732",
      				  "night-rain": "4613625",
      				  "clear-night": "4613623",
      				  "fog": "4618886",
      				  "thunderstorm": "4613853",
      				  "tornado": "4619143",
      				  /*"hail": "",
      				  "i-rain": "",
      				  "i-wind": "",
      				  "sleet": "",
      				  "snow": "",*/
      

      photos I collected was loaded fine.
      clear-day was worked but today was a partly-cloudy-day
      Last commented conditions I don’t know what it means but snow, but in my place never goes snow.
      Collections was “collected” from unsplash people following unsplash rules, so, I think any people can use it for MagicMirror. Feel free to use it for this wonderful module. Thank you.

      Sometimes, unsplash could return mismatched images with keyword.
      

      By using mentioned collections this won’t happen.

      0_1554934214133_2019-04-10-235906_1366x768_scrot_resized.png

      0_1554934368253_2019-04-11-001048_1366x768_scrot_resized.png

      posted in Troubleshooting
      M
      mohace
    • RE: photo notification depending on weather

      @Sean said in photo notification depending on weather:

      @mohace
      MMM-WeatherBackground would get weather info from some weather module, then would search e from unsplash.com, then put the image into any position.

      I didn’t know that module when I asked in the other post. Thank you!!

      posted in Requests
      M
      mohace
    • RE: photo notification depending on weather

      @Sean said in photo notification depending on weather:

      @ines
      Maybe https://github.com/eouia/MMM-WeatherBackground this could be what you seek.

      Hi. I think he is asking same as me in https://forum.magicmirror.builders/topic/10167/true-challenge-weather-modules-developers

      posted in Requests
      M
      mohace
    • RE: Local weather on MagicMirror

      @TamP Sorry, I don’t know. I figured out that this page give you de city id.
      There are anothers modules that gives current weather and forecast using another apis and working with coordinates, for example, https://github.com/mykle1/MMM-BMW-DS
      You can zoom the icons by css if they were to small.
      Sorry, I don’t know another way to help you.

      posted in Troubleshooting
      M
      mohace
    • RE: Local weather on MagicMirror

      @TamP said in Local weather on MagicMirror:

      Just got the MagicMirror running on my Pi3 B+
      I am trying to get my local UK area weather to display, but the openweather api only seems to have a few UK areas listed in the city list, which are of no use to me.
      Is it possible to get a local weather display.

      Did you try in https://openweathermap.org/find ?

      posted in Troubleshooting
      M
      mohace
    • True Challenge Weather Modules Developers

      Hi, I passed hours trying, but it was not possible. Maybe one of you can.
      I am asking for a current weather module that show a picture in ‘fullscreen_below’ position. In that way, the wallpaper would show pics according with responses from the weather server for the current weather.
      First of all I asked in WallberryTheme issues, but it seemed not to be the right place (module issues).
      I thought in WallberryTheme as it has wallpaper, time and weather modules. For me is the best one candidate to integrate.
      But indeed, there are many other candidates for the integration.
      For example default Current Weather, but also many others as you can see in 3rd-party-modules.
      The wallpapers modules could be any of MMM-BackgroundSlideshow (local pics),, MMM-Google Photos, MMM-Random Photo, and maybe MMM-DropboxWallpaper,.
      WallberryTheme takes picture from unsplash.com.
      It needs apikey, but could be without. For example, you can take a look to this collection I created, WI-cloudy,. This will show a random photo from collection. Calling unsplash without an api permits developer to create collections with pictures according familiar names (with apikey it would need several ones, one by each WI currentweather, sun, clouds, rain, snow, fog, etc.).
      MMM-Google Photos would need several apikeys, or photos named, for example, we-cloudy-01, WI-cloudy-02, etc. if we want to work with only one apikey.
      MMM-Random Photo shows a random photo from a url. It could be from source.unsplash.com in the way I pointed previously.
      MMM-DropboxWallpaper perhaps, but it would need to save the pics with WI-cloudy-01, WI-cloudy-02, etc., names.
      Well, this is all I investigate to reach the subject objective, but I don’t know how to encode.
      Of course a true challenge could start all from scratch.
      I hope that any of you want to take over on this.
      Thank you.

      posted in Requests
      M
      mohace
    • RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates

      @Cr4z33 said in [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates:

      @mohace huh?
      I don’t have those menu’s entries at all.
      Are you using a custom version of the module or? :confused_face:

      Not at all. You can see same pic in shbatm second post, after the first one you replyed.

      @shbatm said in [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates:

      Additional Features Added:

      • Dynamic Module Control menu – uses the new API to create a Module Control menu on the remote page to control other modules via notifications.
      • Custom Menu – ability to specify your own custom menu items from a file (for advanced users)
      • Use PM2 API to control restarts/stops of MM. Can also support starting/stopping other PM2 scripts by passing processName: “scriptToUse” in the query payload.

      Example Dynamic Menu for MMM-Carousel w/ Navigation

      0_1546390145459_ModuleMenuExample.png

      It seems that you need activate some features in modules to show them in this menu. But I don’t know what needs Newsfeed, for to have active his entry.

      posted in Development
      M
      mohace
    • RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates

      @Cr4z33 said in [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates:

      @mohace I can.

      Double check if you edited anything or try deleting and reinstalling the module?

      I meant not in that menu but in

      alt text

      posted in Development
      M
      mohace
    • RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates

      Hi, I can’t see newsfeed options in Module Controls.
      Can you help me please?

      posted in Development
      M
      mohace
    • 1 / 1