Execute built in buttons from macro like Activities, Home

General JP1 chit-chat. Developing special protocols, decoding IR signals, etc. Also a place to discuss Tips, Tricks, and How-To's.

Moderator: Moderators

Post Reply
michaeljc70
Posts: 34
Joined: Fri Feb 05, 2016 5:10 pm

Execute built in buttons from macro like Activities, Home

Post by michaeljc70 »

I have a Nevo C2. I am wondering if there is a way in a macro to go to "execute" the fixed buttons on the remote to go to Devices, Activities or Home from a macro.
mathdon
Expert
Posts: 4725
Joined: Tue Jul 22, 2008 8:53 am
Location: Cambridge, UK

Post by mathdon »

If you use RMIR to create a macro, you will find that the Devices, Activities and Home buttons are included in the list of available buttons to include in the macro sequence. However, only the Home button works and it needs to be the last button in the sequence. This limitation isn't a bug in RMIR, it is just the way the remote seems to work.
Graham
mdavej
Expert
Posts: 4631
Joined: Wed Oct 08, 2003 7:08 am

Post by mdavej »

Graham,

Is there any way to use the RDF to prohibit those buttons from being selected in a macro? This seems to come up a lot.
mathdon
Expert
Posts: 4725
Joined: Tue Jul 22, 2008 8:53 am
Location: Cambridge, UK

Post by mathdon »

mdavej wrote:Is there any way to use the RDF to prohibit those buttons from being selected in a macro? This seems to come up a lot.
This should do it: change the second line in the [Buttons] section from

Code: Select all

Home=$02:AllBind+groupLCD, Favorites, Activities, Devices,
to

Code: Select all

Home=$02:AllBind+groupLCD, Favorites=$03:All+groupLCD, Activities, Devices,
It won't stop someone asking if there is any way to include them in a macro, but it will stop a macro being created that looks as if it should work when in fact it won't work.
Graham
mdavej
Expert
Posts: 4631
Joined: Wed Oct 08, 2003 7:08 am

Post by mdavej »

Perfect. Thanks
rickety
Posts: 101
Joined: Sun Aug 03, 2003 5:09 pm

Post by rickety »

I appreciate the effort but when I changed the RDF it did not seem to make any difference for me. I could still select the Activities button and Add it in a macro.

It is not a major issue for me as I learned on this board what cannot be done in Nevo macros, but thought I should let you know that it did not seem to make any difference for me

I tried adding Activities to an existing macro and it let me
I tried creating a new macro and start with Activities and it let me

I am using RemoteMaster v2.03 build 14

I can do some more tests or trials if it helps

Rick
michaeljc70
Posts: 34
Joined: Fri Feb 05, 2016 5:10 pm

Post by michaeljc70 »

mathdon wrote:If you use RMIR to create a macro, you will find that the Devices, Activities and Home buttons are included in the list of available buttons to include in the macro sequence. However, only the Home button works and it needs to be the last button in the sequence. This limitation isn't a bug in RMIR, it is just the way the remote seems to work.
Thanks. Did what I wanted it to. When I power down an activity it brings me back to the Home screen.
mathdon
Expert
Posts: 4725
Joined: Tue Jul 22, 2008 8:53 am
Location: Cambridge, UK

Post by mathdon »

rickety wrote:I appreciate the effort but when I changed the RDF it did not seem to make any difference for me. I could still select the Activities button and Add it in a macro.
Sorry about that. You are right. It needs to be:

Code: Select all

Home=$02:AllBind+groupLCD, Favorites=$03:All, Activities, Devices,
I've tested that and it works.
Graham
rickety
Posts: 101
Joined: Sun Aug 03, 2003 5:09 pm

Post by rickety »

Many thanks again - confirmed - it works for me too!
:D
Post Reply