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 years ago in Products / KNX updated 9 years ago 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
Answered

How to get feedback when open i2 control in control panel

Vuong Xuan Phuc 9 years ago in Products / Other drivers updated 9 years ago 6
I have Myhome system. I want to get state of all device when launch i2. How do that?
Answer
Oksana (expert) 9 years ago
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 years ago in GUI Editor updated by Oksana (expert) 10 years ago 1
Очень хотелось-бы иметь возможность менять оформление (или скин) GUI editor. Я может быть консервативен, но меня реально ломает работать в программе с черными окнами и меню, белым текстом. Конечно сейчас это оформление модно и современно, но поработав в программе пару часов понял что мне не удобно. Я думаю таких как я найдется не мало. Ну и русификации интерфейса хотелось-бы.  Все-таки для разработчиков это родной язык :-))….
0
Under review

iRidium and CSV files with data

bm1209 9 years ago in General updated by iRidiumNikita 9 years ago 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
Answered

Countdown Timer

Khurram Masud 9 years ago in iRidium Script updated by Ekaterina (head of support) 9 years ago 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
Answer
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
Answered

C-Bus Load Completed Event

Damian Hartin 10 years ago in Products / C-Bus (Clipsal) updated 10 years ago 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
Answer
Olga (expert) 10 years ago
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
Answered

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

sorusbay 9 years ago in Products / Other drivers updated by Jackie Roos 9 years ago 2
I need a script for it. Best Regards
0
Under review

Project Sounds bug - please fix asap

Hans Schiessl 9 years ago in GUI Editor updated by Ekaterina (head of support) 9 years ago 15

Issue with soundfiles in projectfolder

0
Answered

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

Nguyễn Trực 9 years ago in i2 Control V2.2 updated by Oksana (expert) 9 years ago 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
Completed

Menu opened by a gesture

Ekaterina (head of support) 10 years ago in iRidium Script / Interface scripts updated by Эмиль Боев 9 years ago 13
In the project below you can see how to create the navigation menu for the project for smart phone. The menu gradually appears from the left side of the screen by clicking the button in the corner of the screen or with the left-to-right gesture. You can close the menu with a gesture or by clicking on a visible area of the opened page (at that none of the buttons on the page will be clicked)

To use the menu in your interface, drag the example in your project (by the name) and edit the script with respect to the comments.