We have moved our support service to a new technical support system. Since 17.01.2022, we have disabled the ability to create appeals through the userecho personal account. Now all requests are processed via mail to support@iridi.com .

Thank you for your understanding and have a nice day.

0
Answered

logarithmic level curves

Paul van Boven 7 years ago in Tips and Tricks updated 7 years ago 12

Hello,


Something I really miss are logarithmic curves for levels.

When I use a fader to control the lights, often you want more precision in the lower values.


So when you got a logarithmic curve, it's work so much beter.


Is this something whats planned for the future, or is there a way to make a level work logarithmic?


My regards,


Paul van Boven

0
Answered

Сomments under the modules in store

Vladimir Bykov 7 years ago in Tips and Tricks updated by Ilya Markov (expert) 7 years ago 1

In the store users can leave comments under the modules. Are they mailing to developers?

0
Answered

Without Internet

Paolo Scarpetta 7 years ago in Tips and Tricks updated by Aleksandr Romanov (CTO) 6 years ago 5

I don´t have Internet in the building where I must use the IRIDIUM, Can I download and license the server and I3 pro client with any other way?

0
Answered

Main and Sub-Server communication possible?

Martin Lang 7 years ago in Tips and Tricks updated by Aleksandr Romanov (CTO) 7 years ago 1

Hi,


for a touring project we need the ability to remotely control a some devices via a UDP command.

But theres no change to get them all together in a seperate LAN, so the idea came up to use one iRidium Server at the company office working as a "Command"-Server. And using additional iRidium Servers with each device that needs to get an UDP command, and that connected via the Internet.


Here's a schematic picture:

Image 18330


The number on the "Sub Servers" is not constant. So, the plan was to make 1 Sub-Server project that connects to the Main-Server. Is this a possible scenario? And, how to setup the Main iRidium Server to be connected by all of these Sub Servers?


The goal is that a iRidium Client that is connected to the Main iRidium Server (iPad) has a simple Interface and can trigger a Remote-Command to the Main-Server. Then the command should be sent out to all the Sub Servers, and they should send out that command via UDP to a connected MediaPlayer.


Ciao

Martin

0
Completed

To open the player Sonos via the name

Sergey (expert) 9 years ago in Tips and Tricks updated by Aleksandr Romanov (CTO) 7 years ago 1
You can launch the control of Sonos player, selecting it via the name when you pass to control, with the help of the changed script file (change it in JS module Sonos): Sonos_Control.js


Use the described method to call the player via the name of the group where it's located

Public_SelectGroupByName(name);
If the group isn't found? the other one won't be chosen.
The code of the method:
function SelectGroupByName(name) {     // если групп нет выходим 
    if(groups.length == 0) { 
        debug('groups.length == 0'); return; 
    } 
    // ищем id группы по имени 
    var index; 
    for (var i = 0; i < groups.length; i++) { 
        if(groups[i].name == name) { 
            index = i;
        break; 
        } 
    } 
    // если группу не найдем - выходим 
    if(index == undefined){ return; } 
    // подсветка 
    HighLightSelectedZone(index); 
    // отображение
    group = groups[index]; 
    // повторная подписка для получения актуального состояния плейера
    UnSubscribe(group.parent); 
    Subscribe(group.parent); 
    ToggleOpenVolumeGroup(group.members.length > 0); 
}