Hi, anybody had any luck getting a fireTV Alexa remote control working with the Vero4k/4K+?
I can get the remote connected fine using the MyOSMC addon or direct from the command line using bluetoothctl, but none of the buttons respond inside Kodi.
I have a generic S905 box running LibreElec and the Amazon remote works fine on that, I just can’t get it working on my Vero4K+
Yep, but the problem is none of the button presses register. I can get keymap editor to the point where you are asked to press the new button however none of the buttons on the Amazon remote respond.
Under LibreElec the navigation/select and back buttons worked out of the box as soon as the remote was paired I just had to use Keymap editor for the rest and they all registered fine, but OSMC just doesn’t seem to see any of the button events.
Well I guess starting point is to compare logs between the two. Or if you have LibreElec running on a Pi maybe try OSMC on the Pi to see if it is a generic OSMC issue or just a Vero issue
wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.50.tar.xz
tar xvf bluez-5.50.tar.xz
cd bluez-5.50
sudo apt-get install -y libusb-dev libdbus-1-dev libglib2.0-dev libudev-dev libical-dev libreadline-dev
sudo apt install build-essential
./configure
make
sudo make install
Then reboot your Vero. Pairing the remote is a bit strange, you need to use run bluetoothctl. Then put the Amazon remote into pairing mode then in bluetoothctl do the following:-
scan on
Put the Amazon remote into pairing mode by holding Home and Select until the orange light flashes in the top right corner of the remote. Look for the address of your Amazon remote it will be labeled as AR, if it’s not there type devices and press return and it should pop up.
Then do the following command replacing with your remotes address from above (bluetoothctl supports tab completion so you can type the first few characters of the address and then press tab to auto complete). After issuing each command wait for a response, don’t just go mad and type everything as fast as you can
pair <address>
trust <address>
connect <address>
Now check if the remote works in kodi, if it doesn’t then do the following:-
disconnect <address>
Put the remote back in to pairing mode by holding Home and Select, then:-
connect <address>
Now it should work, then do:
scan off
exit
Here’s my complete bluetoothctl session for reference:-