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.
Не работает XOR v3.
Добрый день, пытаюсь просчитать контрольную сумму для HEX.
Remote view of panel
Is there remote view functionality similar to the ability to VNC into AMX panels?
DATETIME on database
Simple, how to obtain a "human readable" date from DATETIME column? Or how to convert a "human readable" date to DATETIME column format?
HI Who can make a driver for CYP Matrix hdmi "CYP PU-8H8HBTPL-4K22" , here is information in sit web http://www.cypeurope.com/store/store/app/product/PU-8H8HBTE-4K22/8-x-8-HDMI-HDBaseT%E2%84%A2-Matrix-5-Play%E2%84%A2-including-LAN-serving-4K-resolution-s
Who can make a driver for CYP Matrix hdmi "CYP PU-8H8HBTPL-4K22" , here is information in sit web http://www.cypeurope.com/store/store/app/product/PU-8H8HBTE-4K22/8-x-8-HDMI-HDBaseT%E2%84%A2-Matrix-5-Play%E2%84%A2-including-LAN-serving-4K-resolution-s
Canot start because VComp100.dll is missing
What version of Visual C++ Redistributable do I need to resolve this issue?
IR.Execute Запустить приложение с ключом
Возможно ли с помощью IR.Execute запустить приложение с ключом, которое передаст приложению доп. настройки (включит режим, и тд)? Например: C:\Progra~1\VideoLAN\VLC\vlc.exe --start-time=600
IR.EVENT_RECEIVE_TEXT receiving hex > 0x80
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.
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;
}
the app found information about previous crashes
the app found information about previous crashe.
Так на всех андроидах наших клиентов , в чем проблема и каково ее решения ?
MQTT driver не обновляет значения после открытия i3 pro
i3 pro на iOS не обновляет данные от mqtt драйвера при запуске.
Например, i3 pro запущен. Включаем свет. MQTT драйвер возвращает значение ON. Выключаем свет. MQTT драйвер возвращает значение OFF. Закрываем или сворачиваем приложение i3 pro. Запускаем снова приложение и видим значение ON, хотя свет все так же выключен.
Возможно ли заставить драйвер принудительно обновлять значения с брокера при открытии i3 pro?
Send to Transfer in JS Windows
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
Thanks
Customer support service by UserEcho