Suggest a Feature

Share your Roku suggestions or request a feature from the Roku team! Add a kudo to existing topics to show your support, or create a new topic for new requests.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jjohnston
Reel Rookie

Enable Number buttons on remote

It would be awesome to have the option of # buttons on the remote, even if it’s an add on remote.  Just would make it helpful for profile codes.  Makes the profile codes a bit more private.  Currently anyone within the room can see exactly what numbers you are selecting for the code.

0 Kudos
1 REPLY 1
packetrat
Binge Watcher

Re: Enable Number buttons on remote

It would be nice to have an add-on remote available with buttons, but for now, if you have a phone or tablet handy, the Roku app does allow direct number entry (touch the keyboard icon up top to pop up an on-screen keyboard). This works for channel selection in Live TV (for over-the-air broadcasts you do have to include the subchannel number, e.g. 7.1 rather than just 7), and also for entering a parental control code, so hopefully whatever app is asking for a profile code will also respond to these number inputs.

Another member here,  @Tivoburkee has posted numeric-button IR codes that can be entered into certain third-party universal remotes:

https://community.roku.com/t5/Remotes/Roku-remotes-with-channel-numbers/m-p/836547#M36339

A computer on the same network segment can also send number-key events via http using the External Command Protocol, as documented here: https://developer.roku.com/docs/developer-program/debugging/external-control-api.md

Here's a quick shell script fragment to send a digit string

ROKU_IP=x.x.x.x # set to match yours

D=0; NUM=$1
  while [[ $D -lt ${#NUM} ]]; do
  curl -d "" http://${ROKU_IP}:8060/keypress/lit_${NUM:$D:1}
  D=$[ $D + 1 ]
done

0 Kudos