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

IR.GetDevices()

Wouter van der Post 5 years ago updated by Vladimir Ovchinnikov (expert) 5 years ago 6

Is it possible in JS to get all devices in a project, for example with a function like "IR.GetDevices()"?

It could return an array with the device names so I can use "IR.GetDevice(name)" to get properties of each device.

0
Answered

Camera View in IOS and Android

Dhinakaran G 5 years ago updated by Tatiana Kiselyova (expert) 5 years ago 2

couldn't able to get the camera view in IOS and Android app? pls suggest if i required ti install any plugin

0
Answered

Copy of iridium lite project

enw matt 5 years ago in Ideas updated by Aleksandr Romanov (CTO) 5 years ago 1

Hi we have many similar projects and created a templat iridium lite project with licence.

We would like to use this project as a template for new projects to minimise work, the copy would automatically be a trial version which would then require the purchase of a license.

Can this be done?

0
Answered

Play sound on Irdium server

Arjan Gorinsek 6 years ago in Tips and Tricks updated 6 years ago 5

I have connected a speaker to my Raspberry Pi how is running iridium server.

Now I want to send a command that the raspberry plays a sound.

How can I do this?

0
Answered

Import a website to iridium application

Mantas Jasiulis 6 years ago in Ideas updated by Aleksandr Romanov (CTO) 5 years ago 6

Hello,

I want to import a scheduler from my logicmachine to iridium app so that the end user can modify the time intervals. Is it possible to access website from iridium? I have a direct link to the scheduler so I just need to somehow open it from iridium.

0
Completed

specific data stored/saved into in each client application

Christophe MATHEY 6 years ago in Ideas updated by Vladimir Ovchinnikov (expert) 6 years ago 6

for example, specific parameters for each panel/user and saved by each panel/user.



0
Answered

Update iridium server Lite on raspberry PI

Roger Stenvoll 6 years ago in Tips and Tricks updated by Vladimir Ovchinnikov (expert) 6 years ago 1

Hi!

I am currently running version 1.2.8.15060 of iridium server on my Raspberry PI.

What is the best procedure to upgrade my server to the latest version?


Best regards,

Roger

0
Answered

EVENT_TAG_CHANGE

evg 6 years ago updated by Vladimir Ovchinnikov (expert) 5 years ago 33

Добрый день!

Использую сервер для вызова сценария "Выключить все". Пользуюсь обработчиком EVENT_TAG_CHANGE. Данный обработчик реагирует только на изменение тэга. Для данной задачи изменение тэга не происходит, т.к. глобальная сцена всегда вызывается одним значением. В итоге приходится следом, после выполнения скрипта, досылать "некое" значение, чтобы обеспечить изменение переменной.

Подскажите, каким методом возможно обработать не изменение тэга, а получение любого значения.

//===================================================

function Scenes()   //определение функции
{
   IR.AddListener(IR.EVENT_TAG_CHANGE, IR.GetServer(), function(name, value)
   { 
      //IR.Log("Имя переменной = " + name + "; Значение = " + value); //В лог выводим имя тега и новое значение
      switch(name)
      {
         case "BAOS.Сцены пом_1":
            if(value == 0)
            {
               IR.SetVariable("Server.Channels.BAOS.sw 1_1 - люстры",0);
               IR.SetVariable("Server.Channels.BAOS.sw 1_2 - бра",0);
               //===
               IR.SetVariable("Server.Channels.BAOS.Сцены пом_1",30);
            }
           break;
      }
   });
}

0
Answered

Set by JS a Command parameter in HDL device

Joseanio Galdino 6 years ago updated by Vladimir Ovchinnikov (expert) 6 years ago 1 1 duplicate

Hi all,


I want to change programaticaly (by JS)  the UVNumber of a command  of a HDL device  to send a UV Switch command ,  but I do not found docs  about how to do this.


Explain - I have a  HDL device named   HVAC1,   with a command named   IRChannel  and   the  UVNumber = 0

I want  to change by JS   the UVNumber   to  any number from 1 to 240  and   send  the UV Switch comand to fisical device to send a IR command  .


Something like this 


IR.GetDevice("HVAC1").SetParameter(UVNumber = 51) ;


IR.GetDevice("HDL-BUS").Set("HVAC1:IRChannel 51",255);


Someone could help me ?


Thanks  in advance