[App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Here are software that related with Samsung F series TVs.
Please don't create any new topic here unless you have software to post/release.
Post Reply

zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [APP] SamyGO RCremap for C/D(arm)/E/F with CMD support

Post by zoelechat »

fluffi444 wrote:Main question was how a script must look like to "push" some specific keys virtually :-)
I've added a working script to my previous post ;)
I do NOT receive any PM. Please use forum.
User avatar
fluffi444
SamyGO Project Donor
Posts: 568
Joined: Fri Apr 05, 2013 9:55 pm
Location: Germany

Re: [APP] SamyGO RCremap for C/D(arm)/E/F with CMD support

Post by fluffi444 »

zoelechat wrote:I've added a working script to my previous post ;)
Yeb saw it - thx for that - only wanted to mention it again...

Works already here with my favorite key combination...
TV: UE40ES7000 @ UE40ES8090 - T-ECPDEUC-2022.0 // SamyGO
CI+: Unicam EVO 4 with HD+ (HD02) @ Pacific 4.60
NET: Samba: PC
mihd
SamyGO Project Donor
Posts: 378
Joined: Wed Jan 29, 2014 12:38 pm

Re: [App] SamyGO RCremap for C/D(arm)/E/F with CMD support

Post by mihd »

What is the "lib_test.so" in samyGOso.zip?
Surprise is the CMD and the ability of macros?
TV: Samsung UE40F6330AK (FW: T-MST12DEUC-1119.0 2014-02-22 / SamyGO) + HDD 1Tb 2,5" (TOSHIBA MQ01ABD1);
TV: Philips 26PF4311 + Cable TV Receiver LATEL LC-808HD (with NFS client, DLNA - n/a, Samba - n/a);
Router: Netgear WNDR3800 (FW: OpenWrt Attitude Adjustment 12.09-beta2) + HDD 1Tb 2,5" (SEAGATE Expansion STBX1000201) (with NFS,DLNA and Samba servers).
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] SamyGO RCremap for C/D(arm)/E/F with CMD support

Post by zoelechat »

mihd wrote:What is the "lib_test.so" in samyGOso.zip?
A test lib :) , no need to take care of.
mihd wrote:Surprise is the CMD and the ability of macros?
Yep.
I do NOT receive any PM. Please use forum.
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by zoelechat »

For those who never understood patch usage, first post updated! :P
I do NOT receive any PM. Please use forum.
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by zoelechat »

Moved out of donor's area, enjoy! :)

Can be useful with e.g.:
I do NOT receive any PM. Please use forum.
tempinbox
Posts: 317
Joined: Wed May 11, 2011 7:00 pm

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by tempinbox »

Tried it on my C series.
Injection is done but the key aren't remap.

Code: Select all

[RCremap] SamyGO RCremap v0.3.5 log - (c) bugficks 2013, small fixes by sectroyer 2014
[RCremap] mapping key: 'KEY_MTS' to 'KEY_RSS'
[RCremap] skipping invalid new key: 'KEY_FACTORY'
[RCremap] mapping key: 'KEY_YELLOW' to 'KEY_3SPEED'
[RCremap] mapping key: 'KEY_CYAN' to 'KEY_SERVICE'
[RCremap] mapping key: 'KEY_1' to command: 'touch /tmp/test.txt'
[RCremap] mapping key: 'KEY_2' to command: 'rm /tmp/test.txt'
[RCremap] Trying to get _ZN9KeyCommon17SendKeyPressInputEiis on C.
[RCremap] Found _ZN9TDBuilder8GetTDiCPE16TDSourceObject_k location at: 0x002dd098
[RCremap] Found _fini location at: 0x01aa45e8
[RCremap] text range: @0x0025d098 -> @0x0020d098
[RCremap] rodata range: @0x01aa45e8 -> @0x0a2a45e8
[RCremap] Found SendKeyPressInput at @0x002450a4
[RCremap] SendKeyPressInput address: 0x002450a4
[RCremap] _ZN9KeyCommon17SendKeyPressInputEiis address: 0x00244f68
[RCremap] 1 _ZN9KeyCommon17SendKeyPressInputEiis [0x244f68].
[RCremap] init done...
>>> lib_deinit
If you see this message you forget to specify -r when invoking samyGOso :)
<<< lib_deinit
my rcconifg

Code: Select all

    {
        "KEY_MTS": "KEY_RSS"
    },
    {
        "KEY_GREEN": "KEY_FACTORY"
    },
    {
        "KEY_YELLOW": "KEY_3SPEED"
    },
    {
        "KEY_CYAN": "KEY_SERVICE"
    },
    {
        "KEY_1": "CMD:touch /tmp/test.txt"
    },
    {
        "KEY_2": "CMD:rm /tmp/test.txt"
    }
]
why KEY_FACTORY is an invalid key?
and why it doesn't work? it say is supported on c series. am i missing somethings?
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by zoelechat »

tempinbox wrote:

Code: Select all

If you see this message you forget to specify -r when invoking samyGOso :)
Typo in first post, -r switch was missing in commandline. Fixed.
tempinbox wrote:why KEY_FACTORY is an invalid key?
To protect the innocent :)
I do NOT receive any PM. Please use forum.
tempinbox
Posts: 317
Joined: Wed May 11, 2011 7:00 pm

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by tempinbox »

zoelechat wrote:
tempinbox wrote:

Code: Select all

If you see this message you forget to specify -r when invoking samyGOso :)
Typo in first post, -r switch was missing in commandline. Fixed.
tempinbox wrote:why KEY_FACTORY is an invalid key?
To protect the innocent :)
But what if i'm guilty? ;)
I want to remap key-yellow to key_factory
but key factory is need.
sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] SamyGO RCremap for C/D(arm)/E/F/H with CMD support

Post by sectroyer »

tempinbox wrote: But what if i'm guilty? ;)
I want to remap key-yellow to key_factory
but key factory is need.
You think you need this key on your remote and this means that you didn't click the link in my description and/or didn't read the instructions carefully enough. In other words you are "guilty" of thinking you actually need it :P
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!

Post Reply

Return to “[F] Software”