Remote.conf mapping buttons RED/GRE/YEL/BLU (TELETEXT)

Trying to use buttons on my remote to use “TeleText” in KODI, based on information I’ve found here:

Actual snippet of my remote.conf:

key_begin
0x44 47 # => KEY_V

0x43 0x18e # => KEY_RED
0x0f 0x18f # => KEY_GREEN
0x10 0x190 # => KEY_YELLOW
0x18 0x191 # => KEY_BLUE
key_end

Pressing “BTN_0x44” will start and quit TeleText as expected.
But pressing BTN_0x43/BTN_0x0f/BTN_0x10/BTN_0x18 on my remote actually has no effect.

Tried to convert mapping values from HEX to DEC with no luck either:

key_begin
0x44 47 # => KEY_V

0x43 398 # => KEY_RED
0x0f 399 # => KEY_GREEN
0x10 400 # => KEY_YELLOW
0x18 401 # => KEY_BLUE
key_end

What I’m doing wrong?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.