Add your idea or search for answers in existing topics. The most popular ideas will be implemented faster!

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
Not a bug

KNX initial feedback request

P Etzler 9 jaar geleden in Products / KNX bijgewerkt 9 jaar geleden 4

Hi,


I was testing the App in KNX Environment (KNX UDP driver). Therefore, i was adding all necessary feedbacks from KNX, including lot of 2byte floating point values. After initialization of the app, i missed lots of them (and also others like 1bit). After investigation, it turned out that the app or the gateway does not send the requests on bus. After initial requests, i can update those values with a read request in knx, those will be updated in the app too.

Looks like that the app or gateway is running into some timeout/ or buffer overflow (if im just requesting a few feedbacks, everything works well)


MDT Gateway SCN.IP000.01 / Weinzierl BAOS 771

Ipad Air 2 / iridium v2.2

latest GUI Editor


Any suggestions?


Best,

Philipp

0
Beantwoord

How to get feedback when open i2 control in control panel

Vuong Xuan Phuc 9 jaar geleden in Products / Other drivers bijgewerkt 9 jaar geleden 6
I have Myhome system. I want to get state of all device when launch i2. How do that?
Antwoord
Oksana (expert) 9 jaar geleden
May be you have a problem with a network? You restart i2 control? Or minimize app?
0
Waiting for user's reply

Очень хотелось-бы иметь возможность менять оформление (или скин) GUI editor.

Vladimir 12 jaar geleden in GUI Editor bijgewerkt door Oksana (expert) 10 jaar geleden 1
Очень хотелось-бы иметь возможность менять оформление (или скин) GUI editor. Я может быть консервативен, но меня реально ломает работать в программе с черными окнами и меню, белым текстом. Конечно сейчас это оформление модно и современно, но поработав в программе пару часов понял что мне не удобно. Я думаю таких как я найдется не мало. Ну и русификации интерфейса хотелось-бы.  Все-таки для разработчиков это родной язык :-))….
0
Under review

iRidium and CSV files with data

bm1209 9 jaar geleden in General bijgewerkt door iRidiumNikita 9 jaar geleden 1
Hello,
I have a question regarding the possibility of cooperating iRidium system with CSV files with data. I want to implement the following functionality: I have a PLC connected with energy meter, PLC gathers data from energy meter and saves it into CSV files. I can write a function in the PLC program which could send this CSV file into the specified localization, for example on the PC. Is it possible to send such CSV file into iRidium system and use historical logs from energy meter which are inside this file?

Best regards
0
Beantwoord

Countdown Timer

Khurram Masud 9 jaar geleden in iRidium Script bijgewerkt door Ekaterina (head of support) 9 jaar geleden 1
Timer.irpz
Hello,
I am trying to insert a countdown timer in the application. When i press the button, the countdown starts from 60 Secs to 0 Secs.
i have tried it using the string 'GetState.Text = 60' then 'GetState.Text = 59' and so on... but i need to put delay of 1 sec in between, how is it possible?
Also, Is there any other way of doing this?
Please reply

Thanks,


Khurram
Antwoord
var counter;
function count () 
{
   // stop interval if it has been started before
   IR.ClearInterval(counter);
   //start value
   var time = IR.GetItem("Page 1").GetItem("Item 1").GetState(0).Text = 60;
   function count () {
      //if time > 0 then subtract 1 and send to text field
      if (time > 0) {
         IR.GetItem("Page 1").GetItem("Item 1").GetState(0).Text = --time; 
      } else {
         // stop subtracting if time <=0
         IR.ClearInterval(counter);
      }; 
   }
   // start function count every 1000 ms (1 s)
   counter = IR.SetInterval(1000, count);
}
you can start the timer with Script Call command:
0
Beantwoord

C-Bus Load Completed Event

Damian Hartin 10 jaar geleden in Products / C-Bus (Clipsal) bijgewerkt 10 jaar geleden 3
HI,
Could someone please let me know what the event I should be listening for once C-Bus has finished loading?

I want to run some script post the connection to CBus so I can display a "percentage of lights on" label.

Thanks,
Damian
Antwoord
Olga (expert) 10 jaar geleden
Dear Damian,

If you need the event which will be activated when after the application start all feedback from C-Bus is received, then we don't have such event.
If you need the event of when the driver connected to the equipment (EVENT_ONLINE), then it doesn't work for the C-Bus driver.
We can recommend you to set up delay after the application start and then monitor the Online token (see the project in the attachment). The delay has to be selected individually for your installation after checking in the log when the last feedback from the equipment comes.
C-Bus SetInterval Status.irpz

Sincerely yours,

Olga Ermakova
iRidium mobile Team
0
Beantwoord

Have you heard or work with an alarm system controlled by iridiummobile?

sorusbay 9 jaar geleden in Products / Other drivers bijgewerkt door Jackie Roos 9 jaar geleden 2
I need a script for it. Best Regards
0
Under review

Project Sounds bug - please fix asap

Hans Schiessl 9 jaar geleden in GUI Editor bijgewerkt door Ekaterina (head of support) 9 jaar geleden 15

Issue with soundfiles in projectfolder

0
Beantwoord

How can we observe open level of shutter and sliding gate?

Nguyễn Trực 9 jaar geleden in i2 Control V2.2 bijgewerkt door Oksana (expert) 9 jaar geleden 5
I want to observe state of shutter and sliding gate during I open it like how much level it was open ?

I used iridium to control MyHome system . Please help me !
0
Voltooid

Меню, открываемое жестом

Ekaterina (head of support) 10 jaar geleden in iRidium Script / Interface scripts bijgewerkt door Эмиль Боев 9 jaar geleden 13
В проекте показано, как сделать меню навигации по проекту для смартфона, которое плавно появляется из-за левого края экрана по нажатию кнопки в углу экрана или жестом слева-направо. Закрыть меню можно также жестом или нажатием на видимую область ранее открытой страницы (при этом какие-либо кнопки страницы не будут нажаты).

Чтобы использовать меню в своем интерфейсе, перетащите этот пример в свой проект (тащим проект за имя), и редактируйте скрипт в соответствии с комментариями.