orginal xbmc buttons over json-rpc
#1
Hi

I am programming a kodi remote on a atmega over wifi. (preliminary results
After working with IR remote i am used to the 9 xbmc keys
Image

but with the jsonrpc i am missing the commands Title (LIRC KEY_TITLE) and Menu (LIRC KEY_MENU)
The menu button is now
Code:
{"id": 1, "jsonrpc": "2.0", "method": "Input.Home"}
and
Code:
{"id": 1, "jsonrpc": "2.0", "method": "Input.ShowOSD"}
depending on full screen

Title is now
Code:
{"id": 1, "jsonrpc": "2.0", "method": "Input.ContextMenu"}
{"id": 1, "jsonrpc": "2.0", "method": "Input.ShowCodec"}

is there a way to use the old KEY_TITLE and KEY_MENU

I am working on low level programming with 2kB ram, so shorter jsonrpc commands are also welcome.
Reply

Logout Mark Read Team Forum Stats Members Help
orginal xbmc buttons over json-rpc0