Page 10 of 11

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Sun Jan 18, 2015 12:00 pm
by juusso
okey :)

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Sun Jan 18, 2015 4:56 pm
by PrinzEugen
1.is it working for f series mst version, autostart ?
2. where to put libRCremap.so ? maybe /mnt/opt/privateer/usr/libso ?
$SYSROOT E/F series: /mnt ??
$DISTROOT E/F series: /mnt/opt/privateer ??
3.what lines are necessery to put in libRCremap.config if i wanna to just edit e-manual for KEY_PIP_ONOFF
maybe just to have this in config file

Code: Select all

[
    {
        "KEY_TOPMENU.": "KEY_PIP_ONOFF"
    }
]

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Sun Jan 18, 2015 5:00 pm
by Deus3X
PrinzEugen wrote:1.is it working for f series mst version, autostart ?
2. where to put libRCremap.so ? maybe /mnt/opt/privateer/usr/libso ?
$SYSROOT E/F series: /mnt ??
$DISTROOT E/F series: /mnt/opt/privateer ??
3.what lines are necessery to put in libRCremap.config if i wanna to just edit e-manual for KEY_PIP_ONOFF
maybe just to have this in config file

Code: Select all

[
    {
        "KEY_TOPMENU.": "KEY_PIP_ONOFF"
    }
]
1) i have no mst but i think that it work also in mst.
You have to enable scrip in init.d folder
2) /mnt/opt/privateer/usr/libso
3) i think that is correct

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Sun Jan 18, 2015 5:03 pm
by zoelechat
That's it, don't forget to chmod +x autostart script actually not needed on F
And you can remove the dot (.) between KEY_TOPMENU and double quote, it's not needed and will cause remap not to work :)

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Sun Jan 18, 2015 5:28 pm
by PrinzEugen
tnx guys it working on F5300 MST, interesting but they not put PIP command as default.

WinSamyGOrc_v1.5 will do nice for on fly button testing, no need to restart for one button injecting as RCremap

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Mon Feb 23, 2015 11:42 am
by taviron
Is there still development for rcremap, i.e. has someone found a way to start the Netflix or lovefilm smarthome app without macros? That would be the perfect function for the family story button ...

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Mon Feb 23, 2015 12:08 pm
by zoelechat
taviron wrote:Is there still development for rcremap, i.e. has someone found a way to start the Netflix or lovefilm smarthome app without macros? That would be the perfect function for the family story button ...
No, the perfect function for family story button is switching from air to sat :D
Anyway, that's not RCremap matter but the job of a (for now non-existing) additional patch that could be launched by RCremap to directly access defined widget. It's certainly doable, some developer just has to consider it :)

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Mon Feb 23, 2015 1:28 pm
by taviron
Hehe... since i'm forced to use dvb-c i have a slightly different opinion .

I hope the developers have time (and like to) develop such an module. Just my 2 cents why it is worth doing it: starting smarthub takes quite some time and the starting duration varies a lot - at least for me. Hence scripting is not possible without extremly long delays. Since Netflix and other online VOD services changed (my) TV usage a lot, reducing the startup time and simplifying the start of these apps will be greatly appreciated .

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Wed Oct 05, 2016 6:12 pm
by robert90
For me, the lib is currently functioning not correctly.
I sometimes have problems that the TV does not proceed correctly.
That's why I created the following:

libRCremap.config:

Code: Select all

[
    {
        "KEY_POWEROFF": "CMD:/mnt/opt/privateer/usr/bin/_shutdown.sh"
    },
    {
        "KEY_VOLDOWN": "KEY_VOLDOWN"
    }
]
_shutdown.sh

Code: Select all

#!/bin/sh
[ $(pidof ${0##*/}) ] 2>/dev/null || exit 0
rm /mnt/opt/privateer/usr/bin/_shutdown.log;
touch /mnt/opt/privateer/usr/bin/_shutdown.log;
/mnt/etc/init.d/07_11_ntpclient.init.dis start;
/sbin/micom shutdown | date >> /mnt/opt/privateer/usr/bin/_shutdown.log
As I can now understand the notes _shutdown.log, the script when switching off is not called. Manual can I start the script.

According RCRemap.log but everything should be fine.
RCRemap.log

Code: Select all

[RCremap] SamyGO RCremap v0.2.2 - (c) bugficks 2013
[RCremap] mapping key: 'KEY_POWEROFF' to 'CMD:/mnt/opt/privateer/usr/bin/_shutdown.sh'
[RCremap] mapping key: 'KEY_VOLDOWN' to 'KEY_VOLDOWN'
[RCremap] init done...
Any Idea why the lib not working?

Re: [APP] SamyGO RCremap for D(arm)/E/F

Posted: Wed Oct 05, 2016 6:38 pm
by juusso
Chmod your script to 755 ?