Welcome!

On this forum you can discuss iRidium with other users.

iRidium consist of 2 main components - i3 pro app and iRidium Server. Please post here your questions, ideas or errors you find.

Please send your questions to support team as a private messages.


Please subscribe to the Change Log to know our news

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.

+1
Answered

Virtual tag do'nt show in script

Vuong Xuan Phuc 8 years ago in General updated by Dmitry - support (expert) 7 years ago 3

Hello!
I want use script to manage many Virtual tag. But I do'nt know how to set or get Virtual tag in Script mode. Thanks

+1

User registration

Maurits Roos 8 years ago in General 0

Hi


Can we have a button link on the Users and panels page on the email line the same continue registration on the email that is sent to users so me can do a manual registration on the web site if we need to due to having problems with the email being received


This would enable us to be able to set everything up for the customer with out having bother them with the email and registration and provide a better service


All they need to do is tell us what what they want there password to be and we do the rest a lot simpler and easier for both party's

+1
Answered

Multi design

Maurits Roos 8 years ago in General updated by Aleksandr Romanov (CTO) 5 years ago 5

In iridium two using the multi design feature you could change between multiple projects with a button with a script call


How do we do this in i3 with a button in the project to switch between projects

+1
Completed

Make a module to send messages toTelegram

Dmitry Shulgin 8 years ago in General updated by Vyacheslav Shorin 4 years ago 4
Answer

Telegram message.irpz

first button sends a message from simple HTTP driver

second button uses SendEx method, it makes you able to process response from server.

Just need to know the group ID and message you want to send

0
Answered

Драйвер Modbus RTU

Владимир Нестеров 5 years ago in General updated by Vladimir Ovchinnikov (expert) 4 years ago 23

Добрый день.

При работе с драйвером Modbus RTU возник вопрос, каким образом можно получить данные из Holding Register в формате "беззнаковых 2 байта"?

Value*                        Word Size               значение
0 .. 65535                  Word(16 bit)            без знаковых 2 байта

-32768 .. 32767         Word(16 bit)            знаковых 2 байта


В контроллерах, использующих протокол Modbus RTU есть настройка, какой тип использовать для каждой переменной знаковый или беззнаковый.

0
Answered

Generic import

Kenny Stoepel 7 years ago in General updated 6 years ago 10

Dear, I would like to know when the generic import will be included? I've noticed the import buttons are back in the release. Could you please inform us about how this function will work so we can start work on our side for generating the import-file. The process of manually creating x tags a week is a very timeconsuming work. this has also been asked by Theo. 

0
Answered

Значение из токена

S1210 7 years ago in General updated by Ilya Markov (expert) 7 years ago 9

Добрый день. Вопрос у меня такой. В проекте есть шкала (цифра 1 на картинке), при движении которой значение записывается в токен и транслируется в формате In value на поле со значением 2. Я хочу, чтобы в поле под номером 3 записывался текст из поле 2. Но когда я пишу следующий код, то ничего не происходит, в чем может быть проблема?


IR.AddListener(IR.EVENT_ITEM_RELEASE, IR.GetItem("Шкала"),function()
{
IR.GetItem("Поле 3").Text = IR.GetItem("Поле 2").Text;
})



Image 21281

0
Answered

[JS] How to check if system menu or project menu are open?

Francesco Zangara 7 years ago in General updated by Aleksandr Romanov (CTO) 7 years ago 5

On a script, can i check if system menu or project menu are open?

0
Answered

Changing project in I3pro

Maurits Roos 7 years ago in General updated by Dmitry - support (expert) 6 years ago 6

Is there a way of changing project in I3pro with a script call the same way we did it in iRidium 2 with the multi design feature 


I want to use a button on the screen as I am upgrading a site from iRidium 2 to i3pro and want  the operation to be  the same rather than have to  bring up the menu to change projects.

0
Answered

Переменная в листенере

S1210 7 years ago in General updated by Andrey S 7 years ago 5

Добрый день. У меня вопрос такой, можно ли использовать переменную в листенере? Например так:


var Name1;
var Name2;
IR.AddListener(IR.EVENT_ITEM_PRESS, IR.GetPopup("Страница 1").GetItem("Item 1"), function ( )
{
Name2 = IR.GetPopup("Страница 1");
});
IR.AddListener(IR.EVENT_ITEM_PRESS, Name2.GetItem("Item 2"), function ( )
{
Name1 = "Свет";
IR.GetPopup("Страница 1").GetItem("Item 3").Text = Name1;
});