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

Не работает XOR v3.

Добрый день, пытаюсь просчитать контрольную сумму для HEX.

Заметил что XOR не работает.
Просьба разобраться.
0
Answered

Remote view of panel

Matt Gaughan 8 years ago in Applications / i3 Pro updated by Dmitry - support (expert) 8 years ago 1

Is there remote view functionality similar to the ability to VNC into AMX panels?

0
Waiting for user's reply

DATETIME on database

Francesco Zangara 8 years ago in Server Solutions updated 8 years ago 3

Simple, how to obtain a "human readable" date from DATETIME column? Or how to convert a "human readable" date to DATETIME column format?

0
Answered

Canot start because VComp100.dll is missing

Jackie Roos 8 years ago in Applications / i3 Pro updated by Oksana (expert) 7 years ago 15

Image 14001


What version of Visual C++ Redistributable do I need to resolve this issue?


thanks

Answer
Oksana (expert) 7 years ago

Hello


Setup install this dll from Setup 1.0.9

0
Answered

IR.Execute Запустить приложение с ключом

Vladimir Muravyev 8 years ago in iRidium Script updated by Kenny Stoepel 7 years ago 2

Возможно ли с помощью IR.Execute запустить приложение с ключом, которое передаст приложению доп. настройки (включит режим, и тд)? Например: C:\Progra~1\VideoLAN\VLC\vlc.exe --start-time=600

0
Answered

IR.EVENT_RECEIVE_TEXT receiving hex > 0x80

Mike Slattery 8 years ago in Products / AV & Custom Systems updated by Dmitry - support (expert) 8 years ago 2

Is there a reason why numbers that are > 0x80 are received as 0 when using IR.EVENT_RECEIVE_TEXT? Is there a driver configuration that allows all hex data to be received.I need to setup a telnet session and have to parse through data like "\xFF \xFD\x18". If I use EVENT_RECEIVE_DATA, then I have problems parsing ASCII data.

Answer

Hi Mkie

Probably as you are getting into the extended ascii characters (http://ascii-code.com/), and it depends on what is on your machine if they are the latin ones or not


I suggest using receive_data, and convert from the decimal to hex using something like this:


      IR.Log("Receive Raw Data: " + data);
      // Data received: 
      for (var i=0;  i < data.length; i++){
            data[i] = this.dec2hex(data[i]).toString();                            
      } //for 
      //Converted data:
      IR.Log("Receive Converted Data: " + data);


The following may come in handy:


   //**************************************************\\
// Data Conversion Routines \\
//**************************************************\\
var convertBase = function (num) {
this.from = function (baseFrom) {
this.to = function (baseTo) {
return parseInt(num, baseFrom).toString(baseTo).toUpperCase();
};
return this;
};
return this;
};
// binary to decimal
this.bin2dec = function (num) {
return convertBase(num).from(2).to(10);
};
// binary to hexadecimal
this.bin2hex = function (num) {
return convertBase(num).from(2).to(16);
};
// decimal to binary
this.dec2bin = function (num) {
return convertBase(num).from(10).to(2);
};
// decimal to hexadecimal
this.dec2hex = function (num) {
return convertBase(num).from(10).to(16);
};
// hexadecimal to binary
this.hex2bin = function (num) {
return convertBase(num).from(16).to(2);
};
// hexadecimal to decimal
this.hex2dec = function (num) {
return convertBase(num).from(16).to(10);
};
//**************************************************\\ // converts an array of hex or decimal to the \\ // the ASCII code \\ // eg 75 Decimal = K \\ //**************************************************\\ this.NumToChar = function(tmp) {
var arr = tmp;
var str = '';
var c;
for (var i=0; i<arr.length; i++) {
if (arr[i] != 0) {
c = String.fromCharCode(arr[i]);
str += c;
}
}
return str;
} //**************************************************\\ // Formats eg FF into 0xFF \\ //**************************************************\\ this.FormatToHex = function(hx){
hx = '0x' + String('0' + hx).slice(-2);
return hx;
}
0
Waiting for user's reply

the app found information about previous crashes

Богдан Меленчук 8 years ago in Applications / i3 Pro updated by Dmitry - support (expert) 8 years ago 1

the app found information about previous crashe.

Так на всех андроидах наших клиентов , в чем проблема и каково ее решения ?


0
Answered

MQTT driver не обновляет значения после открытия i3 pro

Александр Бондарь 8 years ago in Products / Other drivers updated by Aleksandr Romanov (CTO) 5 years ago 20

i3 pro на iOS не обновляет данные от mqtt драйвера при запуске.


Например, i3 pro запущен. Включаем свет. MQTT драйвер возвращает значение ON. Выключаем свет. MQTT драйвер возвращает значение OFF. Закрываем или сворачиваем приложение i3 pro. Запускаем снова приложение и видим значение ON, хотя свет все так же выключен.


Возможно ли заставить драйвер принудительно обновлять значения с брокера при открытии i3 pro?

0
Waiting for user's reply

Send to Transfer in JS Windows

Jackie Roos 8 years ago in Applications / Studio (Server editor) updated 8 years ago 2

When working on a server project, we need to transfer regularly to test.


In the JS window there is no 'Send To Transfer'


Can we please get one added


Image 13980


Thanks