2022-01-26, 03:05 PM
@Martin,
Loaded rc2. It fixes the issue with exiting to Kodi while watching a program. I already had knewc in my Favorites, so what you are doing now in regards to popping that up works for me.
Did you say that I should have the buttons at the top of the remote, TV, Guide, Videos, Music, Pictures and Radio, mapped to noop in my remote.xml? I have done that and while TV (F8 - Recordings), Videos (F3 - Videos) and Radio (F10 - What's New) all work, Guide (F1 - Guide), Music (F4 - Music) and Pictures (F9 - Scheduler) do nothing.
@anyone else that cares and me in the future,
to get the Go button to correspond to Ctrl-G to bring up the list of channel groups in TV Guide, I added the following two lines in emulate.py:
From:
To:
Loaded rc2. It fixes the issue with exiting to Kodi while watching a program. I already had knewc in my Favorites, so what you are doing now in regards to popping that up works for me.
Did you say that I should have the buttons at the top of the remote, TV, Guide, Videos, Music, Pictures and Radio, mapped to noop in my remote.xml? I have done that and while TV (F8 - Recordings), Videos (F3 - Videos) and Radio (F10 - What's New) all work, Guide (F1 - Guide), Music (F4 - Music) and Pictures (F9 - Scheduler) do nothing.
@anyone else that cares and me in the future,
to get the Go button to correspond to Ctrl-G to bring up the list of channel groups in TV Guide, I added the following two lines in emulate.py:
From:
Code:
elif actionID == KEYBOARD_BACK or buttonID == 61575:
url = keyBase + ENUM_KEY_BACKSPACE
elif actionID in EXIT_SCRIPT:
url = keyBase + ENUM_KEY_BACK
Code:
elif actionID == KEYBOARD_BACK or buttonID == 61575:
url = keyBase + ENUM_KEY_BACKSPACE
elif actionID == ACTION_BACK:
url = keyBase + str(ENUM_KEY_G | ENUM_KEY_CONTROL)
elif actionID in EXIT_SCRIPT:
url = keyBase + ENUM_KEY_BACK
Tuners: SD HDHR Prime (HDHR3-CC). SD HDHR Connect Quatro Tuner (HDHR5-4US) - only QAM. EXVIST H.265 Encoder - capturing cable box.
Client: Odroid-N2 running knewc on KODI - connected via MoCA.
EPG: SchedulesDirect
Provider: Verizon Fios
Server: Dell XPS 8700 with Windows 10
Client: Odroid-N2 running knewc on KODI - connected via MoCA.
EPG: SchedulesDirect
Provider: Verizon Fios
Server: Dell XPS 8700 with Windows 10