Yep everything is fine now. Thanks again.
I just have some problems with mapping the home button, the equivalent to pressing "esc" on a keyboard. In your KODI map it resembles pressing "z" I think.
How do I change the "z" to "esc"? Because I can't find a home screen command in the keymap editor addon.
IIRC that key was originally mapped to KEY_HOME / 102, which wasn't recognised as a command in libreelec. I mapped it to z to use as a utility key, then decided to use that to jump to the home screen. So in my keymaps I have:
Code
<keymap>
<global>
<keyboard>
<z>ActivateWindow(Home)</z>
</keyboard>
</global>
<FullscreenVideo>
<keyboard>
<z>ActivateWindow(Home)</z>
</keyboard>
</FullscreenVideo>
<VideoMenu>
<keyboard>
<z>ActivateWindow(Home)</z>
</keyboard>
</VideoMenu>
</keymap>
Display More
If you want it to point to escape just edit the relevant line in remote.conf - the replacement would be:
But you'll still face the same issue - that key maps to back / fullscreen rather than ActivateWindow(Home).