• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-KeyBindings: Control your mirror with Amazon Fire Stick Remote and Generic Keyboard Inputs

Scheduled Pinned Locked Moved Utilities
keyboardremote controlfire stick remotebluetooth
34 Posts 13 Posters 16.1k Views 12 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    shbatm Module Developer @Aries1984
    last edited by Jan 3, 2019, 10:31 PM

    @aries1984 said in MMM-KeyBindings: Control your mirror with Amazon Fire Stick Remote and Generic Keyboard Inputs:

    you talk about “KeyCode” being a part of the payload

    Thanks for catching this. There must have been some remnants from the first version when that’s what I used. It’s been fixed now.

    1 Reply Last reply Reply Quote 0
    • J Offline
      jdfraser
      last edited by jdfraser Jan 26, 2019, 5:03 AM Jan 24, 2019, 4:53 PM

      thanks @shbatm for all your work on this module.

      I am having some problems getting it working with my MM. I have the module installed and loading, my Amazon Fire TV Remote is recognized and recognizing key presses. I am however, having issues with getting modules to respond to any keypresses.

      I started with the basic config as suggested in your doc, hoping that I could succeed in getting the monitor to turn on and off with the home key. I could not get this to work.

      {
          module: 'MMM-KeyBindings',
          config: {
              enableMousetrap: true
          }
      

      I installed the “MM-ViewNotifications” module to see what was happening and it seems that the MMM-KeyBindings module is sending a “MONITORTOGGLE” command with the homekey press and my Monitor does not turn off. From reading your previous message I don’t think that this will work anymore, as it sounds like you have removed that functionality from this module and rely on other modules like MMM-Remote-Control for this.

      So I added this (below) to my config file, but even though I have specifically changed the Home button action to ‘MONITOROFF’, MMM-ViewNotifications still reports that it is sending a ‘MONITORTOGGLE’ command. My next attempt was to try and control somthing else (hiding the clock) with the ‘Enter’ button. I think that the problem I am having with that may be syntax, I’m not really sure how I should configure MMM-KeyBindings include the corrrect payload.

      I am able to successfully use the following URL to turn off my monitor with MMM-Remote-Control “http://192.168.1.104:8080/remote?action=MONITOROFF” as well “http://192.168.1.104:8080/remote?action=HIDE&module=module_5_clock” is able to hide my clock.

      If you could look and my configuration and offer some guidance I would appreciate it.

      { 
          module: 'MMM-KeyBindings',
          config: {
              enableMousetrap: true,
      		keyMap: {  
          Home: "KEY_HOMEPAGE", 
          Enter: "KEY_KPENTER", 
          ArrowLeft: "KEY_LEFT", 
          ArrowRight: "KEY_RIGHT", 
          ArrowUp: "KEY_UP", 
          ArrowDown: "KEY_DOWN",
          Menu: "KEY_MENU", 
          MediaPlayPause: "KEY_PLAYPAUSE", 
          MediaNextTrack: "KEY_FASTFORWARD", 
          MediaPreviousTrack: "KEY_REWIND",
          Return: "KEY_BACK"
      },
      	},
      	actions: [{
      		key: "Enter",
      		state: "KEY_LONGPRESSED",
      		instance: "SERVER",
      	//	mode: "DEFAULT",
      		notification: "REMOTE_ACTION",
      		payload: { action: "HIDE&module=module_5_clock" }
      		},
      		{
      		key: "Home",
      		state: "KEY_PRESSED",
      		instance: "SERVER",
      	//	mode: "DEFAULT",
      		notification: "REMOTE_ACTION",
      		payload: { action: "MONITOROFF" }
      		}
      		]
      
      },
      
      1 Reply Last reply Reply Quote 0
      • G Offline
        gregp
        last edited by gregp Feb 5, 2019, 6:35 PM Feb 5, 2019, 6:30 PM

        Hello,
        This module looks like exactly what I need, but unfortunately I’m having a hard time getting it to work with a standard USB keyboard directly connected. Reading through I believe I’ve got MMM-KeyBindings and MMM-Carousel set up appropriately, but no matter what I try it doesn’t appear to have any effect.

        I can use the mouse to click on the Carousel navigation to change pages. I’ve also ensured I’ve clicked within the window to make sure the browser has focus, but the keyboard events don’t do anything. Clicking CTRL-SHIFT-I, I can see in the debugger that MouseTrap is actually seeing the keyboard events, but I must have something wrong in the config preventing them from being handled appropriately.

        At first I was trying to get the right and left arrow keys on the keyboard to work, but it looks like the names of those are a bit more complicated (having similar-but-different names to the ArrowRight and ArrowLeft buttons on the remote), so I just switched to “r” and “l”. I’ve also tried the “keyBindings” both inside the MMM-Carousel “config” section and up at the module top level as shown below.

        I’m running the latest versions of both KeyBindings and Carousel as of today. Here’s the relevant sections of my config.js, any help is greatly appreciated:

        	{
                    module: 'MMM-KeyBindings',
        			config: {
                        enabledKeyStates: ["KEY_PRESSED"],
                        evdev: { enabled: false },
                        handleKeys: [ 'r', 'l' ],
                        enableMousetrap: true,
        			}
        		},
        
                {
                    module: 'MMM-Carousel',
                    position: 'top_bar', // Required only for navigation controls
                    config: {
                        transitionInterval: 0, //20000,
                        showPageIndicators: false,
                        showPageControls: true,
                        ignoreModules: ['MMM-ViewNotifications','alert','updatenotification','MMM-KeyBindings'],
                        mode: 'slides',
                        slides: {
                            main: [{name:'clock', classes:'zoom200'},'MMM-CalendarExt2', {name:'MMM-DarkSkyForecast', classes:'zoom200'}],
        					"Slide 2": ['MMM-BackgroundSlideshow',],
                            "Slide 3": [{name:'MMM-aviationwx', classes:'zoom200'},{name:'MMM-DarkSkyForecast', classes:'zoom200'},],
        				},
                    },
                    keyBindings: { 
                        //NextSlide: "ArrowRight", // Remote Key Name
                        NextSlide: "r",          // Keyboard Key Name
                        //PrevSlide: "ArrowLeft",  // Remote Key Name
                        PrevSlide: "l"           // Keyboard Key Name
                    },
                },
        
        1 Reply Last reply Reply Quote 0
        • G Offline
          gregp
          last edited by Feb 6, 2019, 8:38 PM

          @shbatm and @jdfraser , I believe I figured it out after much debugging and banging my head on the desk.

          There’s a config property that’s not documented that needs to be configured to accept keyboard presses. You’ll need to add

          enableKeyboard: true,
          

          in your MMM-KeyBindings module config. Here’s my working config, there may or may not be some unneeded commands in there, but it was needed to get the “r” and “l” keys to move the MMM-Carousel page next and previous. Note you also need to add the “handleKeys” for any of the non-standard keys.

              {
                      module: 'MMM-KeyBindings',
          	    config: {
                          enabledKeyStates: ["KEY_PRESSED"],
                          evdev: { enabled: false },
                          handleKeys: [ 'r', 'l' ],
                          enableMousetrap: true,
                          enableKeyboard: true,
          			}
          		},
          
                  {
                      module: 'MMM-Carousel',
                      position: 'top_bar', // Required only for navigation controls
                      config: {
                          transitionInterval: 0, //20000,
                          showPageIndicators: false,
                          showPageControls: true,
                          ignoreModules: ['MMM-ViewNotifications','alert','updatenotification','MMM-KeyBindings'],
                          mode: 'slides',
                          slides: {
                              main: [{name:'clock', classes:'zoom200'},'MMM-CalendarExt2', {name:'MMM-DarkSkyForecast', classes:'zoom200'}],
          					"Slide 2": ['MMM-BackgroundSlideshow',],
                              "Slide 3": [{name:'MMM-aviationwx', classes:'zoom200'},{name:'MMM-DarkSkyForecast', classes:'zoom200'},],
                          },
                          keyBindings: { 
                              enabled: true,
                              map: {
                                  NextSlide: "r", 
                                  PrevSlide: "l", 
                              },
                              mode: "DEFAULT"
                          }
                      },
                  },
          
          S 1 Reply Last reply Feb 7, 2019, 2:58 AM Reply Quote 0
          • S Offline
            shbatm Module Developer @gregp
            last edited by Feb 7, 2019, 2:58 AM

            @gregp Glad you got it working. I’m not sure what happened with the README and where the details went around “enableKeyboard” and “enableKeyBindings”, looks like it got lost during an update. I will get it corrected on Github.

            Also, enableMousetrap was replaced by enableKeyboard as a breaking change during one of the recent updates. You no longer need enableMousetrap in your config, just enableKeyboard.

            Just a note, if you want to use ArrowLeft and ArrowRight you can (depending on your keyboard). This will not interfere with the “KeyBindings” (Bluetooth Remote) unless you want the ArrowLeft on the remote to do something different than the keyboard.

            Finally, it looks like you found it between your first and second post, but just for anyone else, the keyBindings section needs to be inside the config section for MMM-Carousel.

            Just to close the loop with @jdfraser, this was discussed further and closed in Issue #6 and Issue #7 on GitHub.

            1 Reply Last reply Reply Quote 1
            • G Offline
              gregp
              last edited by Feb 7, 2019, 5:48 AM

              @shbatm Fantastic! Thanks again!

              1 Reply Last reply Reply Quote 0
              • M Offline
                mrdenmark
                last edited by Oct 31, 2019, 7:00 AM

                on my miirror i have set up 3 pages with mmm-pages,i’ve installed mmm-keybindings as i want to use the arrow keys to cycle through the pages but so far i’m having no luck,could anyone suggest a config sample to set this up?

                L 1 Reply Last reply Mar 12, 2020, 11:52 AM Reply Quote 0
                • Cr4z33C Offline
                  Cr4z33
                  last edited by Feb 16, 2020, 5:42 PM

                  @shbatm how comes I never noticed this topic before? 😅

                  Can this module be adapted virtually for anything available in MagicMirror?

                  What about your other module MMM-RTSPStream?
                  Can I switch ie. streams by using the Fire Stick remote?

                  1 Reply Last reply Reply Quote 0
                  • L Offline
                    l0b5ter @mrdenmark
                    last edited by Mar 12, 2020, 11:52 AM

                    @mrdenmark Did you get a response regarding this matter?
                    im having a hard time doing the same as you :(

                    1 Reply Last reply Reply Quote 0
                    • L Offline
                      l0b5ter
                      last edited by Mar 17, 2020, 1:45 PM

                      Didnt get this really to work, tried the same but it wont change between the pages. Mind take a look? (https://forum.magicmirror.builders/topic/12332/mmm-keybindings-mmm-pages-mmm-page-indicator), Me really stuck :(

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 3 / 4
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy