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.

0

Мультирум

Мишаня Кручинин 8 jaar geleden in Products / Other drivers bijgewerkt door Andrey S 7 jaar geleden 1

Добрый день,есть ли у кого нибудь опыт интеграции с Nuvo или Fusion research?

0

SIP вызов с панели на домофон

настройки SIP сервера - разговор 1 минута. набираю с панели на другого СИП клиента (дело происходит на mobotix домофоне у которого и сип сервер и сип клиент в одном) появляется попап outgoing в котором SIP.Status показывает ON Hook -> Trying->Talking. Проходит минута -по логам сервера видно, что разговор закончился:




19:47:40VOIPvoipAccepted incoming call from 202@172.30.34.11.
19:48:40VOIPvoipCall disconnected.
статус при этом остается Talking и скрипт который смотрит на изменение на OnHook не срабатывает, - остается попап Talking. Подскажите к чему бы можно было бы прицепиться, чтобы убрать попап разговора?
0

Using jscript to change timer setting

Andrew Glossop 8 jaar geleden in Products / Other drivers 0

When using feedback for a driver (specifically Helvar), is it now possible to use jscript to change the timer setting ?


I'd like to reduce the timer when a page is shown, so that values update quickly. then increase the timer setting when the page isnt loaded. I need to do this as I cant have 300 channels being updated every few seconds.


Is this now possible in v3 pro ? I seem to remember that it was going to be done, but havent seen anything in the release docs about it being included

0
Not a bug

Auto reconnect duotecno driver

Dennis Dekker 8 jaar geleden in Products / Other drivers bijgewerkt 7 jaar geleden 6

Image 15262

Browsing a duotecno installation (by duotecno tcp/ip config tool)disconnects the i3 application and the duotecno homemanager says: server busy. After browsing i have to close the i3 application and re-open it to connect it. The homemanager reconnects automatically

Antwoord
Oksana (expert) 7 jaar geleden

Hello Dennis,


We check it and we can't repeat.

1. What version duotecno tcp/ip config tool do you use?

2. Can you write step-by-step info, how we can repeat?


0
Beantwoord

Как отправить IR команду через driver send ?

cyberdyne 8 jaar geleden in Products / Other drivers bijgewerkt door Aleksandr Romanov (CTO) 8 jaar geleden 3

Заказчик купил несколько ip2ir от global cache для управлением телевизорами самсунг.

В ай3про можно загрузить команды из GC Cloud и подвесить их на кнопки.

Однако заказчик хочет создать динамичное приложение и ему требуется отправлять команды через driver send.

Получить драйвер из скрипта и выполнить send([,,,]) команды легко.

Однако как получить этот ir код который надо отправить в send ?

Например если посмотреть правой кнопкой на меню в команде ir POWER OFF то там есть такая штука как SHOW SEQUENCE - но она почему то пустая ...

Но последовательность же сохраняется в проекте и она работает - мы проверили - по кнопке все команды отлично управляют телевизором.

Как сделать управление из скрипта по команде драйвера send ?

Или как получить эту управляющую последовательность для отправки в send ?


Antwoord
Aleksandr Romanov (CTO) 8 jaar geleden

По соглашению с GC Cloud мы шифруем хранимые команды. Поэтому получение управляющей последовательности для send не поддерживается. Не совсем понятно, что подразумевается под "динамичным приложением" и откуда появилось требование про driver send. Вы же можете из скрипта обращаться к РАЗНЫМ драйверам с разным набором команд?

0
Beantwoord

Support for Domintell DINTMB01

Theo Derks - NL (distributor) 8 jaar geleden in Products / Other drivers bijgewerkt door Oksana (expert) 7 jaar geleden 5

Hello,

Our Domintell-installers need support for the module DINTMB01.


This is a Modbus-device to control arico's (e.g. Daikin).


This module is not listed on the dev.iRidiumMobile.net as 'supported' device...


1) Why not?

2) Can you add support for this device?

3) What is the ETA for the added support?


Thanks


Theo


Antwoord
Oksana (expert) 7 jaar geleden

It's added in Setup 1.0.9.431

0

Philips Hue in big installation

Hi,

Installer has to offer project with a big number of Philips Hue bridges and a very big number of Hue-lights.


My question is:

Does anybody know the limitations for the current Philips Hue-driver? What is the maximum number of bridges and/or lights?


Please let me know.


Thanks


Theo


0
Under review

$ Need help with Global Cache RS232 two way communication $

ofer 8 jaar geleden in Products / Other drivers bijgewerkt door Dmitry - support (expert) 8 jaar geleden 2

Hi,

I'm looking for someone that can help with RS232 2 way communication with Vantage home automation system,


The commands that need to be sent and the response are known,


Willing to pay for it,


Ofer.

0
Beantwoord

Receiving/Feedback of RS232 using Global Cache

Qorin 8 jaar geleden in Products / Other drivers bijgewerkt door Jackie Roos 8 jaar geleden 8

Hi,


I would like to receive data by using the GlobalCache Wifi to Serial.


I used H-Term to periodically send data to globalcache along with USB to RS232 as my test setup (I am able to receive data from Iridium in H-Term)


Below is the code that I have implemented in java script.


var timer = 0;
var onTime = 50; // in ms
var pageNumber = 1;
var funcOp = 0xFF;

this.DriverName = "Global Cache";
this.device;
this.Online = false;
this.device = IR.GetDevice(this.DriverName);

var init = 0;
IR.AddListener(IR.EVENT_START,0,function(){
IR.Log("Hellooo!!!");
});
IR.AddListener(IR.EVENT_EXIT,0,function(){
});
IR.AddListener(IR.EVENT_RECEIVE_TEXT, this.device, function(text,id){
IR.Log("receive 1 = "+ text);
IR.GetPage("Gowing").GetItem("txtT").Text = "AAAAA";
});
IR.AddListener(IR.EVENT_WORK, 0, function(time){
var that = this;
var packXPC;
timer += time;
if(init == 0){
IR.AddListener(IR.EVENT_DEVICE_FOUND, that.device, function(name){
IR.Log("Name :"+name);
}, that);
IR.AddListener(IR.EVENT_ONLINE, that.device, function(text){
IR.Log(that.DriverName+" DEVICE is Online");
that.Online = true;
init = 1;
}, that);
IR.AddListener(IR.EVENT_OFFLINE, that.device, function(text){
IR.Log(that.DriverName+" DEVICE is Offline");
that.Online = false;
}, that);
}
if(timer > onTime){
timer = 0;
switch(pageNumber){
case 1:
packXPC = [pageNumber, funcOp];
break;
default:
packXPC = [0xFF, 0xFF];
}
sendPackage(packXPC);
/*IR.AddListener(IR.EVENT_RECEIVE_TEXT, that.device, function(text, id){
IR.Log("receive = "+ text); // Output the received data in the log
}, that);
/*IR.AddListener(IR.EVENT_RECEIVE_DATA, that.device, function(text, id){
IR.Log("receive 1 = "+ text);
})*/

}
});


So far, I did not receive anything in the log nor in the text box in the GUI when I test it.

Has anyone ever encountered this problem or has solved it?
Any feedback would be appreciated.


Thank you!

Q





Antwoord
Dmitry - support (expert) 8 jaar geleden

Hi :)


4998 is the IR port. 4999 and above are the serial ports.


In the GUI editor did you set up a new AV & Custom Systems Driver TCP/IP driver?


We use this routinely to send and receive commands to serial devices via a Global Cache IP2SL. For serial devices via GC, I don't use the the GC driver at all, as it is not necessary and the AV & Custom Systems driver gives more flexibility.


Have you setup the GC IP2SL to have multiple connections in iHelp?



0

Vantage Home Automation

ofer 8 jaar geleden in Products / Other drivers 0

Hi,



Any one had integrate Vantage home automation system with iRidium ?