Skip to content

Files

Latest commit

 

History

History
51 lines (37 loc) · 890 Bytes

README.md

File metadata and controls

51 lines (37 loc) · 890 Bytes

roku-remote

This script allows users to control a Roku on the network using your computer keyboard.

Usage

  1. Install roku-remote:
npm install roku-remote
  1. Open a command line application (Terminal, iTerm, etc.) and start the script:
node remote
  1. The script will listen for your keypress events to navigate around the Roku as well as open apps, play content, search, and more! A full key mapping can be found below.

  2. Press CONTROL+C to stop the remote

Key Mappings

The following represents the current key mapping:

{
  // Arrow Keys
  left: 'Left',
  right: 'Right',
  up: 'Up',
  down: 'Down',

  // Standard keys
  space: 'Play',
  backspace: 'Back',
  return: 'Select',

  // Sequences (shift key)
  H: 'home',
  R: 'Rev',
  F: 'Fwd',
  S: 'Search',
  E: 'Enter',

  // Other
  r: 'InstantReplay',
  b: 'InfoBackspace'
};