MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. crazylegs
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 17
    • Best 2
    • Controversial 0
    • Groups 0

    crazylegs

    @crazylegs

    2
    Reputation
    24
    Profile views
    17
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    crazylegs Unfollow Follow

    Best posts made by crazylegs

    • RE: [Weather - Env Canada] Forcast days name is the reverse order of the data.

      Just a further update… Environment Canada actually got back to me and confirmed that they did have a problem with load balance caching and this has now been resolved. I confirmed with my own MM that the correct data is being returned to the weather module’s envCanada provider.

      posted in Bug Hunt
      crazylegs
      crazylegs
    • RE: Introduce yourself!

      Hello! My name is Kevin and I am from London, Ontario, Canada. I’m 58 years old and recently retired after 37 years in the IT profession - started as a software developer and then somehow morphed into a Senior Architect designing various things such contact centres and voice applications. I also very occasionally teach IT courses at our local college. I’ve been married for over 30 years and have 2 grown children.

      I enjoy tinkering (without always knowing what I’m doing), hiking, traveling, and playing hockey because Canada 🙂

      My COVID project has been to build a ‘family info screen’ using the MM framework. It is hanging in my kitchen and currently doing things such display family photos from a local NAS, show local weather, show local waste collection calendar, etc. all with voice support. I will say that if not for the patience of this community, I would not have been successful with this build! My current project is to create a new provider for the default weather module to pull data from Environment Canada - seen running here on my MM build:

      MM Showoff 1.jpeg

      I look forward to adding more functionality to my display in the future!

      posted in General Discussion
      crazylegs
      crazylegs

    Latest posts made by crazylegs

    • RE: [Weather - Env Canada] Forcast days name is the reverse order of the data.

      Just a further update… Environment Canada actually got back to me and confirmed that they did have a problem with load balance caching and this has now been resolved. I confirmed with my own MM that the correct data is being returned to the weather module’s envCanada provider.

      posted in Bug Hunt
      crazylegs
      crazylegs
    • RE: how to hide all modules?

      @oky1029 said in how to hide all modules?:

      Additionally, I use “MMM-Google Assistant” and the extension “EXT-Google Photos”, but the Google logo is always displayed when I hide the calendar. Can this also be hidden?

      If you mean the Google logo that appears in the top left corner of the screen, it is part of the ‘wake-word’ detection module and yes this can be suppressed. In your config.js you need to update the parameters for EXT-Detector. Specifically, you need to include useIcon: false. Here is an example:

      			{
        			module: "EXT-Detector",
        			position: "top_left",
        			configDeepMerge: true,
        			config: {
          				debug: false,
      				useIcon: false,
          				detectors: [
            					{
              				detector: "Snowboy",
              				Model: "jarvis",
            					}
          					]
        				}
      			},
      
      posted in Troubleshooting
      crazylegs
      crazylegs
    • RE: [Weather - Env Canada] Forcast days name is the reverse order of the data.

      @cedrikl For what it’s worth, I used your weather config parms on my own Mirror and found no issues. That is, I could not reproduce what you are seeing. To be fair, my RaspPi is not as current as yours (I’m running on Buster with MM 2.21.0).

      HOWEVER… I can confirm that Environment Canada backend has been having issues since Fri Feb 3. Every so often it is returning weather data (XML document) for Fri Feb 3, which of course is in the past. I thought I was going crazy because my Mirror was showing bad current and/or forecast data on a random basis.

      I did a bunch of testing (accessing EC URL directly from a browser) to confirm that, yes, this is really happening randomly. So, for example, it would be possible to have Current from today, and Forecast from Feb 3 (on both from Feb or both from today). I’m not saying this is causing your issue, but I wanted to mention that EC data quality is currently a problem.

      My strong suspicion is that there is at least 1 caching server sitting in front of the EC datamart that has not updated its cache since Feb 3, so any HTTP requests directed to that server are getting old/bad data. FWIW I have a sent an email to an EC support address to highlight there is a problem that needs to be fixed.

      posted in Bug Hunt
      crazylegs
      crazylegs
    • RE: Hello-Lucy + RaspPi Bullseye + MM v2.18 + USB Mic

      @sdetweil Thank you. Yes, I was thinking about the same thing and trying to avoid digging into the pocketsphinx code 🙂 But I think that’s where I will head next.

      posted in Troubleshooting
      crazylegs
      crazylegs
    • Hello-Lucy + RaspPi Bullseye + MM v2.18 + USB Mic

      Hello Forum… I wonder if someone could smack me in the head to make me see where I am going wrong.

      I have been running MM v2.15 on RaspPi Buster for quite awhile, and part of that build is using Hello-Lucy with a PS Eye USB mic. This works just fine for me.

      I decided to do a full rebuild of my system on RaspPi Bullseye and MM v2.18. Everything on this build works fine except Hello-Lucy. Basically, Hello-Lucy is having trouble opening the PS Eye mic. Here are some details:

      1. I can see the mic device as card 1, device 0:
      pi@InfoWall4:~ $ arecord -l
      **** List of CAPTURE Hardware Devices ****
      card 1: CameraB409241 [USB Camera-B4.09.24.1], device 0: USB Audio [USB Audio]
        Subdevices: 1/1
        Subdevice #0: subdevice #0
      
      1. I can record to a wav and it plays back fine:
      pi@InfoWall4:~ $ arecord --device=plughw:1,0 --format cd --duration 10 --channels 1 testmic.wav
      
      Recording WAVE 'testmic.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Mono
      
      1. I installed Hello-Lucy as per instructions, with 1 change. In dependcies.sh, I changed python-dev and python-pip references to python3-dev and python3-pip

      2. My config.js file has the following parms:

      {
      			disabled: false,
      			module: "Hello-Lucy",
      			position: "bottom_left",
      			config: {
          				keyword: 'OKAY JARVIS',             // keyword to activate listening for a command/sentence
       				timeout: 10,                        // timeout listening for a command/sentence
      				defaultOnStartup: null,
      				debug: true,
       				standByMethod: 'PI',              // 'DPMS' = anything else than RPi or 'PI'
       				microphone: "1,0",                  // run "arecord -l" card # and device # mine is "0,0"
       				sounds: ["silence.mp3"],      // welcome sound at startup. Add several for a random greetings
        				confirmationSound: "null.mp3",      // name and extension of sound file
      				soundPath: 'modules/Infowall/Sounds',
      				micOn: 'SpeechOn.wav',
      				micOff: 'SpeechOff.wav',
        				startHideAll: true,                 // All modules start as hidden EXCEPT PAGE ONE
      				pageOneModules: ["MMM-BackgroundSlideshow", "weather", "Hello-Lucy"],   // default to show on page1 start
          			}
      		},
      
      1. When I start up MM, Hello-Lucy shows:

      a9d7eedb-ef1e-484f-965f-d70633ea0eb1-image.png

      1. There are no issues showing in the PM2 logs. However, the Hello-Lucy error.log shows just 1 while debug.log shows an error:
      Error opening audio device plughw:1,0 for capture: Invalid argument
      FATAL: "continuous.c", line 245: Failed to open audio device
      

      So it seems like Hello-Lucy cannot grab hold of the mic device, even though I can access the mic just find from CMD.

      Any thoughts anyone?? Perhaps referencing python3 in the Hello-Lucy dependencies.sh script is not advisable?

      Thanks…

      posted in Troubleshooting
      crazylegs
      crazylegs
    • RE: Disney Themed Mirrors

      This is truly fantastic work! It is definitely inspiring me to ‘up’ my Disney MM game. All I have right now is a page that lists all the WDW waittimes (via MMM-DisneyWaitTimes) and a specific ResortTV video loop (via MMM-YouTube). But boy do I ever like what you’ve done!

      posted in Show your Mirror
      crazylegs
      crazylegs
    • RE: Can I round Precipitation Units

      @amarko87 There’s currently no option to round precipitation amount in the default Weather module, although I think this should be possible. I’m just curious:

      • Which weather provider are you using?

      • Are you looking for rounding in the ‘forecast’ and/or ‘hourly’ feature of the Weather module?

      posted in Troubleshooting
      crazylegs
      crazylegs
    • RE: a youtube video streaming on my MM

      @rikko14 While it is not being actively supported at the moment, I am currently using MMM-YouTube for this purpose. You can find it here:

      https://github.com/Anonym-tsk/MMM-YouTube

      posted in Troubleshooting
      crazylegs
      crazylegs
    • RE: Weather not displaying envcanada provider

      @lexcyr

      I notice you have provCode commented out in your config file. The envcanada provider requires that parm, so uncomment and see if your problem is resolved.

      posted in Bug Hunt
      crazylegs
      crazylegs
    • RE: Introduce yourself!

      Hello! My name is Kevin and I am from London, Ontario, Canada. I’m 58 years old and recently retired after 37 years in the IT profession - started as a software developer and then somehow morphed into a Senior Architect designing various things such contact centres and voice applications. I also very occasionally teach IT courses at our local college. I’ve been married for over 30 years and have 2 grown children.

      I enjoy tinkering (without always knowing what I’m doing), hiking, traveling, and playing hockey because Canada 🙂

      My COVID project has been to build a ‘family info screen’ using the MM framework. It is hanging in my kitchen and currently doing things such display family photos from a local NAS, show local weather, show local waste collection calendar, etc. all with voice support. I will say that if not for the patience of this community, I would not have been successful with this build! My current project is to create a new provider for the default weather module to pull data from Environment Canada - seen running here on my MM build:

      MM Showoff 1.jpeg

      I look forward to adding more functionality to my display in the future!

      posted in General Discussion
      crazylegs
      crazylegs