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

    Posts

    Recent Best Controversial
    • RE: MMM-Spotify

      @Cr4z33 said in MMM-Spotify:

      @ejay-ibm @Sean I noticed only now that if using allowDevices: with the Raspotify device name I can then hear the music, but somehow the module doesn’t ‘wake up’ and keeps showing the Spotify logo only.

      Guys any idea why? :grimacing_face:

      Also @ejay-ibm maybe it’s because I translated them into Italian, but the commands used with MMM-AssistantMk2 that you posted earlier this week don’t get applied.
      Ie. I say the hotword and then ‘next song’ and nothing happens…

      Usually GA either executes the command or replies saying he didn’t understand, but not this time… :thinking_face:

      alt text

      posted in Entertainment
      Cr4z33C
      Cr4z33
    • RE: MMM-Assistantmk2 - SET default Question & Answers with voice response

      @icripps said in MMM-Assistantmk2 - SET default Question & Answers with voice response:

      I personally have gassitpi installed on my raspberry pi because of home automation; I wanna be able to control my relays and gpio’s locally without IFTTT

      Then you would not need GassistPi in addition for that.

      I can manage ALL of my existing home domotics with MMM-AssistantMk2 if I want.
      Maybe the only mandatory thing is to have a Google Assistant device around as I have also two Google Home Mini?

      posted in Utilities
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @ejay-ibm @Sean I noticed only now that if using allowDevices: with the Raspotify device name I can then hear the music, but somehow the module doesn’t ‘wake up’ and keeps showing the Spotify logo only.

      posted in Entertainment
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @ejay-ibm nice thanks! :thumbs_up_medium_skin_tone:

      Also I didn’t notice in your last reply the many Spotify’ MMM-AssistantMk2 commands you were sharing.
      Thanks for that too (although GA doesn’t understand properly yet when calling a specific Playlist, but hey we can’t have everything lol). :D

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

      @mohace Oh yes you are correct I forgot that we can have custom entries indeed.

      Well in my case Newsfeed is showing up by default without having to enable manually something. :man_shrugging_light_skin_tone:

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

      @bolish in addition to what I wrote in my last post I forgot that I actually have entered the custom commands in the module config section so it is twice weird as it should execute those commands.

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

      @bolish OK something weird happened.

      After let’s say 1 minute the TV turned ON by itself (can’t say really…) and there’s now no signal on the (proper) HDMI port.

      I have the feeling the module is still sending monitor commands and NOT cec-utils package ones! :thinking_face:

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

      @bolish OK thanks now the TV can be turned off succesfully, but still can’t be turned on ( although I keep getting the Done! confirmation message ) . :thinking_face:

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

      @bolish sorry, but it is quite hard to get the difference for me lol. :smiling_face_with_open_mouth_cold_sweat:

      Do you mind doing please a pastebin of your edited node_helper.js so that I can try it out?

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

      @bolish what about the previous lines?

      I thought that was the part to edit by replacing monitor commands with HDMI CEC ones like mines?

              monitorControl: function(action, opts, res) {
                  let status = "unknown";
                  let monitorOnCommand = (this.initialized && "monitorOnCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOnCommand :
                      "echo on 0 | cec-client -s -d 1";
                  let monitorOffCommand = (this.initialized && "monitorOffCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOffCommand :
                      "echo standby 0 | cec-client -s -d 1";
                  let monitorStatusCommand = (this.initialized && "monitorStatusCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorStatusCommand :
                      "echo pow 0 | cec-client -s -d 1";
      
      posted in Development
      Cr4z33C
      Cr4z33
    • RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates

      @bolish wait cannot remember if I am using perhaps the developer version, but line numbers are different.

      Mine are 601 (on), 604 (off) and 607 (status).

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

      @bolish depending wheter the TV is on or off it says power status: on or power status: standby.

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

      @bolish yep 100% that’s why I tried reporting that to @shbatm , but he didn’t reply about that yet. :grimacing_face:

      posted in Development
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @Sean @ejay-ibm can you please add the option to hide module commands?
      If someone like me is using MMM-AssistantMk2 to control it then buttons aren’t needed anymore. ;)

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

      @bolish as I wrote before that’s EXACTLY what I already did. ;)

      Terminal commands work straight away while the same commands in MMM-Remote-Control have no effect when used by tapping the buttons in the menu.

      posted in Development
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @ejay-ibm thanks, but it came out that the module was already fine only I didn’t know I had to setup Raspotify if I want a stand-alone solution.

      Tbh you guys should state that as I guess many here would love to run Spotify completely from the mirror, but it is not so obvious. ;)

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

      @bolish OK, but you have to tell me how to do it. :smiling_face_with_open_mouth_cold_sweat:

      By the way I have problems turning on and off my TV too.
      Even if I edited files to enter the needed CEC commands somehow it doesn’t work (same commands in terminal work fine).

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

      posted in Development
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @Sean I want them both. ;)
      Voice commands to play Spotify songs STRAIGHT in MM.

      Thanks for confirming I am going to have some Raspotify reading now.

      posted in Entertainment
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @Sean OK maybe it is my fault, but it was my understanding that this Spotify module can be also a stand-alone player?

      For some reason a second try at Michael Jackson on Spotify made start the web player I was previously running on my computer…

      Does this mean that if I have Raspotify (how to set it up then?) I can actually run everything from the Pi?

      posted in Entertainment
      Cr4z33C
      Cr4z33
    • RE: MMM-Spotify

      @Sean well I followed your instructions so… :grimacing_face:

      gAction you say?
      Ouch that’s all new to me and I guess it will take a while then… OK… :confounded_face:

      posted in Entertainment
      Cr4z33C
      Cr4z33
    • 1
    • 2
    • 8
    • 9
    • 10
    • 11
    • 12
    • 23
    • 24
    • 10 / 24