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

    Posts

    Recent Best Controversial
    • RE: Where to find Pi 3B+ or Pi4

      @NSpr this is true I’m running mine on the Linux operating system

      posted in Hardware
      R
      Ray
    • RE: MMM-GoogleAssistant 4 how to change the wake word?

      @sdetweil sorry, I should’ve been more Pacific, the lights

      posted in Development
      R
      Ray
    • RE: MMM-GoogleAssistant 4 how to change the wake word?

      @sdetweil I actually pulled it off using a Sonoff switch it works really cool. It’s only good for 10A
      I actually made an extension cord with it installed. I am an electrician so I was able to do it safely and I set up Jarvis to activate the extension core and whatever is plugged into it, turns it on this really cool

      posted in Development
      R
      Ray
    • RE: MMM-GmailFeed Trouble

      @plainbroke well the 2-step verification has to be used everywhere. Now
      my router went down. That’s why I haven’t replied back
      in my router I have a place to put my Gmail account so we can upload the logs. Lo and behold I had to use a two-step verification in order to get it to work good old Google

      posted in Troubleshooting
      R
      Ray
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      MMM-OpenWeatherForecast

      Hey guys in the alert status. I show the following 3 items

      Excessive heat watch

      heat advisory

      small craft advisory

      Is there a way I can eliminate small craft advisory
      or just use heat advisory

      posted in Utilities
      R
      Ray
    • RE: MMM-GooglePhoto not loading

      @sdetweil while I try to stay on top when people message me. I mean that’s what it’s for

      posted in Troubleshooting
      R
      Ray
    • RE: MMM-GooglePhoto not loading

      @sdetweil sorry I didn’t see your post until just now

      posted in Troubleshooting
      R
      Ray
    • RE: MMM-GooglePhoto not loading

      @sdetweil in your Google settings and click security
      you will see in their

      • Go to your “Manage your Google Account” screen.
      • Select the “Security” link on the left side.
      • Scroll down to find “App Passwords” and select it.
      • In the “select app” pull down, pick Mail.
      • In the “select device” pull down, pick Other. Name it what ever you want. I called mine “MagicMirror”
      • Click “Generate”. That sequence of characters is the “Password” value you should use.
      posted in Troubleshooting
      R
      Ray
    • RE: MMM-GooglePhoto not loading

      Hey I just want to say I had the same problem with Gmail feed
      when I activated the two-step authorization. My problem went away.
      Just wanted to throw that in there

      posted in Troubleshooting
      R
      Ray
    • MMM-GmailFeed Trouble

      Is anyone having trouble with MMM-GmailFeed

      I went to log onto my mirror and under email feed. It says error (null)
      so I checked my secondary mirror to see if there was an issue there and I get the same response

      but I can retrieve my email through my android phone and Windows 10 with no problem
      so I’m trying to figure out what’s going on here

      Is anyone else having this problem

      I got it to work. I had to set up 2 step verification
      once I did everything work fine

      posted in Troubleshooting
      R
      Ray
    • RE: MMM-Fuel

      This is a great app. Good job well done
      is there a way to add a favorite gas station
      or make it a future project
      I’m in the United States so I’m using that configuration

      posted in Transport
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @sdetweil sorry it took so long to reply back. I’ve been kinda busy.
      So yes, if you want to listen to the radio station 103 you would say

      Jarvis Turn the radio on to 103

      posted in Entertainment
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @negrito sorry to hear that you do have version 3 of Google assistant
      is that right

      posted in Entertainment
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @negrito hope it works out for you. Happy to assist

      posted in Entertainment
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @negrito Here is my radio set up
      with my personal choices of radio stations.
      I only have a couple right now

      
      var recipe = {
        transcriptionHooks: {
          "80+103.7 iHeartRadio From:tuneIn.com": {
            pattern: "Turn the radio on to 103",
            command: "103"
          },
          "Radio.net 106.9 KFRC": {
            pattern: "Turn the radio on to 106",
            command: "106"
          },
          "Radio.net 107.7 FM KSAN": {
            pattern: "Turn the radio on to 107",
            command: "107"
          },
          "radio1": {
            pattern: "metti radio 1",
            command: ""                   // command line.
          },
          "radioanni90": {
            pattern: "metti radio anni 90",
            command: ""
          },
          "radio105": {
            pattern: "metti radio 105",
            command: ""
          },
          "rds": {
            pattern: "metti rds",
            command: ""
          },
          "rtl1025": {
            pattern: "metti rtl",
            command: ""
          },
          "radiodj": {
            pattern: "metti radio dj",
            command: ""
          },
        },
      
        commands: {
          "103": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://cdn-profiles.tunein.com/s33596/images/logod.jpg?t=162569",
                  link: "https://n24a-e2.revma.ihrhls.com/zc4342?TGT=TuneIn&maxServers"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
         "106": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.radio.net/images/broadcasts/01/97/29350/c300.png",
                  link: "https://19803.live.streamtheworld.com/KFRCHD2.mp3"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
         "107": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.radio.net/images/broadcasts/12/ce/29264/c300.png",
                  link: "https://15363.live.streamtheworld.com/KSANFM.mp3"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {                    // This must match what's in the command line.
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.di-ma.info/radio/radio1.png",
                  link: "http://icestreaming.rai.it/1.mp3"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {
            functionExec: {
              exec: () => {
                module.radioCommand({
                  img: "https://www.di-ma.info/radio/r90.jpg",
                  link: "http://mp3.hitradiort1.c.nmdn.net/rt190swl/livestream.mp3"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.di-ma.info/radio/r105.jpg",
                  link: "http://icecast.unitedradio.it/Radio105.mp3"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.di-ma.info/radio/rds.png",
                  link: "https://icstream.rds.radio/rds"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.di-ma.info/radio/rtl1025.png",
                  link: "https://streamingv2.shoutcast.com/rtl-1025"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
          "": {
            functionExec: {
              exec: () => {
                this.radioCommand({
                  img: "https://www.di-ma.info/radio/radiodj.png",
                  link: "http://radiodeejay-lh.akamaihd.net/i/RadioDeejay_Live_1@189857/master.m3u8"
                })
              }
            },
            soundExec: {
              chime: "open"
            }
          },
        }
      }
      exports.recipe = recipe
      
      

      Let me know if you want the other one that will play your personal music

      posted in Entertainment
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @negrito so are you looking to play your own music or actually radio stations.
      I have actually both. That worked pretty well

      posted in Entertainment
      R
      Ray
    • RE: Help I need the MMM-MplayerRadio recipe for GA

      @negrito I can give you a copy of mine if you like.
      I’m using Google assistant version 3

      posted in Entertainment
      R
      Ray
    • RE: Default calendar

      @sdetweil well I don’t know what I did wrong the 1st time, but I duplicated what was there and just change the names and now it’s working. I don’t know what I did wrong but it’s working
      thank you for your help. Your awesome as always

      posted in Troubleshooting
      R
      Ray
    • RE: Default calendar

      @sdetweil okay will thank you. I thought I already did that and it didn’t work. I’ll try again

      posted in Troubleshooting
      R
      Ray
    • Default calendar

      I am currently using the following option.
      In my config file
      customEvents: [{keyword: ‘Appointment’ ,symbol: ‘heartbeat’ ,color: ‘Red’}],

      I would like to add another one completely different different symbol different color. Is that possible
      or can this option only handle one input

      posted in Troubleshooting
      R
      Ray
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 4 / 8