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

Problem SIP video

Ruud 8 years ago in Applications / i3 Pro updated by Oksana (expert) 8 years ago 6

Hello,


I have a problem with SIP video see image

Image 16047


Not a good video call with SIP video.

What's the problem. and can you fix this?
We want to do a lot of projects calling in concern with video


Thanks


Ruud

0

параметр lux (освещенность) на устройствах HDL

Oleg Starikov 8 years ago in Products / HDL-BUS Pro updated 8 years ago 1

добрый день всем!

подскажите пожалуйста, как снять данные с датчиков освещенность (к примеру с датчика 8в1). в документации описана возможность увидеть 0 или 1, хотя не понятно что за 1 (активный на устройстве).

0
Answered

Идентифицировать переменную в iridium server

Oleg Starikov 8 years ago in Products / HDL-BUS Pro updated by Ekaterina (head of support) 8 years ago 6

добрый день всем!

подскажите пожалуйста

запускаю сканер устройств HDL. получаю список. конечно могу добавить все и сразу в проект. но если нет необходимости, а нужно выбрать только одно или выборочно устройства. я не могу идентифицировать их. у нас в сети до 10-15 одинаковых устройств.

конечно можно добавить все в проект. потом по адресу их переименовать и удалить лишние.


на web сервере, если каналы не идентифицированы на этапе проекта в ручную, то так же имею проблемы идентификации.

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


0
Declined

access violation... ver 1.08

Дмитрий Шеблев 8 years ago updated by Aleksandr Romanov (CTO) 7 years ago 6

здравствуйте!

обновился до 1.08. studio открывается, но при попытке открыть файл проекта вываливается ошибка. соответственно, работать не могу.

скриншот ниже.

как бороться?

00DB2875.PNG

0

Remove the custom driver from script

Dmitry Ryzhkov 8 years ago in iRidium Script updated 8 years ago 4

Hi


How I can remove created driver by script?


var dev = IR.CreateDevice(parameters);


//????????

dev.Remove();

dev.Delete();

dev.Clear();

0
Under review

String.fromCharCode(0) problem

Dmitry Ryzhkov 8 years ago in iRidium Script updated by Ekaterina (head of support) 8 years ago 1

Hello


I'm use yours function from dev portal, see below. When 0 appears in array sending string don't have any characters and stop sending.


In my case I use next procedure. I will need transform length string to 4 byte present and send it to device.



var value = "0";
//This not working when coming 0
var elementLength = String.fromCharCode(value.length >> 24 & 0xFF)+
                    String.fromCharCode(value.length >> 16 & 0xFF)+
                    String.fromCharCode(value.length >>  8 & 0xFF)+
                    String.fromCharCode(value.length       & 0xFF);
// This working fine witch concat
var elementLength = [ 
                      value.length >> 24 & 0xFF,
                      value.length >> 16 & 0xFF,
                      value.length >> 08 & 0xFF,
                      value.length >> 00 & 0xFF

                    ];
<em>// process an array of HEX bytes from Data field of Command or Feedback</em>
<strong>function</strong> HexArrayToAsciiString<span class="br0">(</span>in_aArray<span class="br0">)</span> 
<span class="br0">{</span>
   <em>// init string</em>
   <strong>var</strong> l_sStr <span class="sy0">=</span> <span class="st0">''</span><span class="sy0">;</span>
 
   <em>// aray bypass</em>
   <strong>for</strong><span class="br0">(</span><strong>var</strong> i <span class="sy0">=</span> <span class="nu0">0</span><span class="sy0">;</span> i <span class="sy0"><</span> in_aArray.<span class="me1">length</span><span class="sy0">;</span> i<span class="sy0">++</span><span class="br0">)</span>
      l_sStr <span class="sy0">+=</span> <span class="kw4">String</span>.<span class="me1">fromCharCode</span><span class="br0">(</span>parseInt<span class="br0">(</span>in_aArray<span class="br0">[</span>i<span class="br0">]</span><span class="sy0">,</span> <span class="nu0">16</span><span class="br0">)</span><span class="br0">)</span><span class="sy0">;</span>
 
   <em>// return string in ASCII format</em>
   <strong>return</strong> l_sStr<span class="sy0">;</span>
<span class="br0">}</span>
0
Not a bug

[Linux Server] Logs archived all on same direcory

Francesco Zangara 8 years ago in Server Solutions / Linux Server updated by Aleksandr Romanov (CTO) 8 years ago 1

On Linux server, all logs are saved on same directory.

On Windows server, the logs are saved on different direcory (one per day).

0
Under review

Offline Emulation

Mike Slattery 8 years ago in Applications / i3 Pro updated 8 years ago 4

I was at a job site without internet and needed to run the emulator and could not get it to work. Is it possible to test the program using the emulator when there is no internet?

0
Answered

Help! Sip Video Iridium v3 IOS to SIP Video Iridium v3 Windows

Ruud 8 years ago in iRidium Script updated by Dmitry - support (expert) 8 years ago 1

Hello,

I would like to add SIP video to my project.

such as below example project iridium.

SIP_Intercom_Video_iPad.irpz

SIP_Intercom_Video_Win.irpz


The methods I use in my project as Iridium project above

IR.AddListener(IR.EVENT_START,0,function()
{
IR.GetItem("Talking + Video").GetItem("my_camera").GetState(0).Image = "ir_camera://";
IR.GetItem("Outgoing + Video").GetItem("my_camera").GetState(0).Image = "ir_camera://";

IR.GetItem("Outgoing + Video").GetItem("Incoming_stream").GetState(0).Image = "sip_image://";
IR.GetItem("Talking + Video").GetItem("Incoming_stream").GetState(0).Image = "sip_image://";
})
function CameraStart()
{
IR.Camera(IR.CAMERA_RECORD, IR.CAMERA_FRONT, IR.CAMERA_RESOLUTION_MEDIUM);
IR.Camera(IR.CAMERA_FLIP_VERTICAL, 1);
}
I do see both ir_camera: //. but I do not see the sip_image: //. on iOS or Windows, as in the above projects. I guess I do not see a piece of script? or is there still a link underwater in SIP? How can I get this working in my project?

Image 15926

thanks

0
Answered

push-уведомления

Дмитрий Марков 8 years ago in Applications / i3 Pro updated by Oksana (expert) 8 years ago 24

Читаю мануал про push-уведомления http://dev.iridiummobile.net/Push_API#IR.SendPush

В личном кабинете не вижу кнопки "Группы". Или кабинет еще не доработан или я не туда смотрю...?