MADRIX Forum • ON/OFF Timing synced across multiple Aura's
Page 1 of 1

ON/OFF Timing synced across multiple Aura's

Posted: Wed Mar 15, 2023 10:06 am
by Quinton
Hi Team,

I have an installation with multiple Aura’s.

These are in different areas of the same complex and have different scenes. General control by the user is via HTTP on touchpanels.

The manager would like them all to start and stop at exactly the same time (all areas are publicly visible).

If I setup a master AURA with the rest as slaves is it possible to control JUST intensity and NOT Cues via the master i.e. intensity255 will turn all lights on at 9am and intensity0 will turn all lights off at 6pm but the user will still have the facility to control the different scenes on the different Aura’s independently?

Re: ON/OFF Timing synced across multiple Aura's

Posted: Thu Mar 16, 2023 4:32 pm
by Guertler
Hello Quinton,

If you setup a Master/Slave configuration at the AURA, the Master will always syncs the playback of the scenes.

But you can create an HTTP application which will send the Intensity value respectively Play and Stop commands to muliple AURAs at the same time.

Re: ON/OFF Timing synced across multiple Aura's

Posted: Fri Mar 17, 2023 2:26 pm
by Quinton
Thanks Guertler

Re: ON/OFF Timing synced across multiple Aura's

Posted: Sat Mar 18, 2023 12:30 am
by Quinton
Hi Guertler,

Do you have a http commands for synchronization (i.e. master/slave/on-off etc) ?

Re: ON/OFF Timing synced across multiple Aura's

Posted: Fri Mar 24, 2023 2:47 pm
by Guertler
Hello Quinton,

To enable or disable the Master/Slave mode at the AURA remotely via HTTP you can use the following command:

http://[IP]/config.shtml?synctype=[value]

* Value 1 = Sync. Type: Off
* Value 2 = Sync. Type: Master
* Value 3 = Sync. Type: Slave

That means if a AURA should be set to Master the command must be:
http://[IP]/config.shtml?synctype=2

Please note: This command is valid for AURA firmware 1.16. We can't guarantee that it will be always the same command in further AURA firmware releases.

Re: ON/OFF Timing synced across multiple Aura's

Posted: Mon Mar 27, 2023 12:58 pm
by Quinton
Great thanks Guertler

Re: ON/OFF Timing synced across multiple Aura's

Posted: Tue Mar 28, 2023 9:51 am
by Quinton
Hi Guertler,

One other question, i could find in the documentation the http command to make a timer event ACTIVE and INACTIVE, would you mind sharing, i understand that this may be for just latest firmware.

Re: ON/OFF Timing synced across multiple Aura's

Posted: Wed Mar 29, 2023 1:19 pm
by Schulze
Hi Quinton,

Yes, this is also possible using the following command:

http://[IP]/timerdetails.cgi?index=[timer_index]&enable=[value]&submit=Ok

* [timer_index] is the list index, thus "1" is the first timer
* [value] can be either "n" (timer disabled) or "y" (timer enabled)
* The "submit" value should be always set to "Ok" in order to transmit the values.

Example:

Code: Select all

http://10.84.0.7/timerdetails.cgi?index=1&enable=y&submit=Ok
--> In this example the first timer is enabled.

Please note (same as for the other command): This command is valid for AURA firmware 1.16. We can't guarantee that it will be always the same command in further AURA firmware releases. Furthermore you are responsible for the consistency of the sent values.

Re: ON/OFF Timing synced across multiple Aura's

Posted: Thu Mar 30, 2023 11:55 am
by Quinton
Many thanks Schulze