Мы перевели нашу службу поддержки на новую систему технической поддержки. С 17.01.2022 мы отключили возможность создавать обращения через личный кабинет userecho. Теперь все запросы обрабатываются по почте на support@iridi.com .


Спасибо вам за ваше понимание и хорошего дня.

0
Отвечен

Reset project i3 Lite

Knut Harboe 7 лет назад в Bugs and problems обновлен Aleksandr Romanov (CTO) 7 лет назад 1

Is it possible to delete a licensed project to start again after if one suspects an unrecoverable error in the project?

0
Отвечен

Main and Sub-Server communication possible?

Martin Lang 7 лет назад в Tips and Tricks обновлен Aleksandr Romanov (CTO) 7 лет назад 1

Hi,


for a touring project we need the ability to remotely control a some devices via a UDP command.

But theres no change to get them all together in a seperate LAN, so the idea came up to use one iRidium Server at the company office working as a "Command"-Server. And using additional iRidium Servers with each device that needs to get an UDP command, and that connected via the Internet.


Here's a schematic picture:

Image 18330


The number on the "Sub Servers" is not constant. So, the plan was to make 1 Sub-Server project that connects to the Main-Server. Is this a possible scenario? And, how to setup the Main iRidium Server to be connected by all of these Sub Servers?


The goal is that a iRidium Client that is connected to the Main iRidium Server (iPad) has a simple Interface and can trigger a Remote-Command to the Main-Server. Then the command should be sent out to all the Sub Servers, and they should send out that command via UDP to a connected MediaPlayer.


Ciao

Martin

0

Onkyo js module

Alessandro Munari 7 лет назад в Bugs and problems обновлен rocfusion 3 года назад 7

Hi, the Onkyo module does not work with my HT-R993 Onkyo amplifier. In order to let this AVR works, you need to change, part of the code in this way:


ORIGINAL Line 673: var len = cmd.length + 3;

MODIFIED Line 673: var len = cmd.length + 1;


ORIGINAL Line 673: that.device.Send(['ISCP', 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, len, 0x01, 0x00, 0x00, 0x00, cmd, 0x0D]);


MODIFIED Line 673: that.device.Send(['ISCP', 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, len, 0x01, 0x00, 0x00, 0x00, cmd, 0x0D, 0x0A, 0x1A]);


Just change the "len" calculation and add two more CR caracters (0x0A, 0x1A) This change allow also to work with latest Onkyo AVR,

Same change should be applied also to the Integra protocol.

0
Завершен

KNX Import from ETS

Ilya Markov (expert) 8 лет назад в Modules обновлен Aleksandr Romanov (CTO) 7 лет назад 1

Image


KNX Import from ETS


Тип: Scanner

Разработчик: iRidium mobile

Производитель: KNX


Сканер позволяет импортировать JSON файл с настройками драйвера в проект. Далее для KNX контроллера можно настроить модули с помощью datapoint из импортированного JSON файла. После настройки модули автоматически добавляются в проект.


Инструкция по импорту проекта из ETS:

  1. Настройка проекта ETS
  2. Сохранение проекта в файл
  3. Импорт ETS файла в редактор
  4. Сохранение полученного драйвера KNX в файл json
  5. Запуск модуля KNX Import
  6. Перейти в браузере по адресу, указанному в запущенном модуле KNX Import
  7. В открывшийся WEB интерфейс необходимо загрузить json файл с конфигурацией драйвера
  8. В интерфейса виджета нажать Next
  9. Указать IP адрес устройства(если до импорта в json он не был указан в iRidium Studio)
  10. Указать количество и типы требуемых модулей
  11. Заполнить настройки выбранных модулей.

Доступные KNX модули:

Поддерживаемые контроллеры: KNX Router, KNX BAOS 770/771/772/777.
0
Завершен

Открыть плейер Sonos по имени

Sergey (expert) 9 лет назад в Tips and Tricks обновлен Aleksandr Romanov (CTO) 7 лет назад 1
Запустить управление плейером Sonos, выбрав его по имени при переходе к управлению, можно с помощью измененного скрипта (замените его в JS модуле Sonos):
Sonos_Control.js

Используйте приведенный метод для обращения к плееру по имени группы в которой он находится:
Public_SelectGroupByName(name);
Если группа не найдена, то другая выбрана не будет
Код метода:
function SelectGroupByName(name) { 
    // если групп нет выходим 
    if(groups.length == 0) { 
        debug('groups.length == 0'); return; 
    } 
    // ищем id группы по имени 
    var index; 
    for (var i = 0; i < groups.length; i++) { 
        if(groups[i].name == name) { 
            index = i;
        break; 
        } 
    } 
    // если группу не найдем - выходим 
    if(index == undefined){ return; } 
    // подсветка 
    HighLightSelectedZone(index); 
    // отображение
    group = groups[index]; 
    // повторная подписка для получения актуального состояния плейера
    UnSubscribe(group.parent); 
    Subscribe(group.parent); 
    ToggleOpenVolumeGroup(group.members.length > 0); 
}
-1
На рассмотрении

Persistant Virtual Server Variables : how to get them working?

Dennis Piet 3 года назад в Bugs and problems обновлен Vladimir Ovchinnikov (expert) 3 года назад 8

For a parkingsystem I use some Virtual Commands / Channels in combination with Feedback / Tags to store the maximum capacity of a parking.

For example, for Parking 1, I have

Server.Channels.P1_Capacity

and

Server.Tags.P1_Capacity


As per the manual I have connected them with the virtual_to_virtual in the script modifier of the channel (and now with newer Iridium Studio version I can also use Forward Value To for this)

I have set the Persist property of Server.Tags.P1_Capacity to true.

Expected behavior : after server reboot (or restart after powerloss), the Capacity variables keep their last know value.

Actual Behavior : after restart, all Capacity variables are 0  , so the parking manager has to fill in the capacities again for all 6 parkings.

How can I fix this???

Just to try and understand what is happening, I removed the virtual_to_virtual relation (or the forward) and then manually set the value of the feedback through the webinterface.  Now, when I restart the server, the value persists.

So, I guess the problem is the persisting feedback is overwritten by a 0 value coming from the command just after startup of the server?

-1
Начат

Вставка иконок в кнопки

Умед 4 года назад в Ideas обновлен Arina Kiselyova 4 года назад 2

Заметил такой баг или не баг, но крайне не удобно. Когда я перетаскиваю иконку на кнопку, то она вставляется в ту кнопку, которая выделена, а не в ту, на которую я ее перетаскивал. Очень неудобно и усложняет процесс, каждый раз надо выбирать нужную кнопку. Раньше было намного удобнее

-1
На рассмотрении

dynalite in i3pro

René Frank 4 года назад в Other обновлен office_iridiummobile ru (manager) 2 года назад 8

hello all,

did anybody had success in using dynalite in i3pro.

The jsModule isn't availabe any more and the sample

Project isn't really professional.

Thanks in Advance.

-3
На рассмотрении

Android serial conrtol *ProDVX Side light bars

Kristjan Kotkas 3 года назад в Bugs and problems обновлен Vladimir Ovchinnikov (expert) 2 года назад 5

Hi

What's the procedure for /dev/ttyS1 access with i3 client on android. I would write a driver for the proDVX 10" for led control but I cant figure out how to communicate with the device's /dev/ttyS1

How to tell i3 to use android device physical serial interface, how to log it.



Сервис поддержки клиентов работает на платформе UserEcho