Add your idea or search for answers in existing topics. The most popular ideas will be implemented faster!

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
Answered

Panasonic Bluy-ray

Jan Hein Liebregts 11 years ago in iRidium Script / AV and Driver scripts updated by Oksana (expert) 9 years ago 10
Hello,

I want to control my Panasonic Bluy-ray player.
I found the below info on the internet.
As it is possible to create an standard HTTP driver with POST, it should be possible.
Can somebody help me how to put this in?
Thanks.
Jan Hein


———————————————————————-

    [li]Host: An IP address specific to your device. I went with a static address 192.168.1.201[/li]
    [li]Port: 80[/li]
    [li]HTTP POST as follows:
    POST /WAN/dvdr/dvdr_ctrl.cgi? HTTP/1.1
    User-Agent: MEI-LAN-REMOTE-CALL
    Host: 192.168.1.105
    Content-Length: [length]

    cCMD_RC_[command].x=100&cCMD_RC_[command].y=100
    Where you would replace [command] and [length] with the following depending on the action needed:
    [/li]
0
Answered

Using GPS

evg 9 years ago in iRidium Script updated by Ekaterina (head of support) 9 years ago 3
Добрый вечер!
Я где-то видел, что кто-то использовал GPS, чтобы управлять автоматикой при приближении заказчика к дому. Подскажите кто это был или подскажите, как решить вопрос с работой данного алгоритма, кода клиент свернут или телефон заблокирован.
0
Under review

Сambridge connect. Интеграция функций приложения в iRidium

Игорь Шикин 9 years ago in iRidium Script updated by Ekaterina (head of support) 9 years ago 1
Здравствуйте!

Интересует, известно ли Вам оборудование Сambridge в частности их сетевые плееры? Не побывал ли кто-то из Вашей команды перенять функционал в iRidium? Заказчик просит на одном из объектов интеграцию, но железки пока что на руках нет и , возможно решающим вымоментов о выборе этого бренда к закупке будет являться возможность интеграции с iRidium, потому что у него уже есть управление с iRidium некоторых систем в доме.
0
Not a bug

maximum number of event listeners?

r riksma 9 years ago in iRidium Script / Interface scripts updated by Ekaterina (head of support) 8 years ago 12
while adding a new feature to my project i ran into the following error message:

07-28-2015 12:10:31 Kernel.Info 192.168.253.102 [28-07-2015 12:10:31.000] WARNING Script exception: RangeError: /var/mobile/Containers/Data/Application/52D7C331-9EEE-43AB-9979-20E9A2C44C3D/Library/Caches/iRidiumMobile/project/Isyglt.js:96: error

The line defines an listener like this:
IR.AddListener(IR.EVENT_RECEIVE_TEXT,driver,function(text){});

if i try to create a listener elsewhere in the project some other listener that has worked fine before will give this error.
if i remove a random listener the error disappears.
It seems to me there is a maximum number of event listeners and i have reached this maximum.
Is this true, and is there any way to fix this?
0
Under review

Sonos запуск радио

Артур738 8 years ago in iRidium Script / AV and Driver scripts updated 8 years ago 6

Как можно через скрипт запустить определенный радио стрим на конкретном соносе?

Была попытка вырезать функции из sonos скрипта от иридиум, которые отвечают за запуск стрим ссылки, но почемуто через пару раз плейер виснет и больше не реагирует на команды, хотя радио поначалу запускает

0
Answered

Iridium Sip connection with Mobotix T24 Connection problem

Iskender Aydogan 9 years ago in iRidium Script / AV and Driver scripts updated by Ekaterina (head of support) 9 years ago 1
We tryed to module of sip softphone intercom and mobotix sip projects.
We can't success for client connection of iridium.
Can you help us?
If you need we can send mobotix server client settings screenshots.

Thank You
0
Waiting for user's reply

Database editor | Project device panel features

benno 11 years ago in iRidium Script / AV and Driver scripts updated by Oksana (expert) 9 years ago 2
Hi

I need to create a driver in iRidium for a complete bus structure.
This bus can contain multiple devices of the same type. See attachment.
To create a driver which can be used from the gui editor alone (so the installer doesn't need to edit a part of JavaScript) I need to create a hierarchy in the different driver elements.

For example:

BUS
|——Input module1
|——————Busaddress (property)
|——————….. (Property)
|——————Input 1(feedback)
|——————Input 2 (feedback)
|——————…….
|——Input module 2
|——————Busaddress (property)
|——————….. (Property)
|——————Input 1(feedback)
|——————Input 2 (feedback)
|——————…….
|——Output module1
|——————Busaddress (property)
|——————….. (Property)
|——————Output 1 on (command)
|——————Output 1 off (command)
|——————Output 2 on (command)
|——————Output 2 off (command)
|——————……..
|——Output module2
|——————Busaddress (property)
|——————….. (Property)
|——————Output 1 on (command)
|——————Output 1 off (command)
|——————Output 2 on (command)
|——————Output 2 off (command)
|——————……..

The user sets the Busaddress property in the GUI editor to the right address.
It also has to be possible to add extra modules to the busdriver. For example like we do now with Global Cache's IR database: add existing IR codes (grouped) to a IP2IR from the cloud (this of course needs to be from the database for this driver)

Of course we also need to have a group divided in commands, feedbacks etc per module.

From Javascript I need to do the following things:
Parse incoming data to set feedbacks with respect to Hierarchy:
IR.SetFeedback("BUS.Input module 1.Input 1",1);

Determine which command was pressed with respect to Hierarchy:
IR.AddListener(IR.EVENT_CHANNEL_SET, IR.GetDevice("BUS"), function (name, value) {
  if(name == "Output module1.Output 1 on")
  {
  //do something
  }
}

Determine and eventually edit properties of the module:
myAddress = IR.GetProperty("Bus.Input module 1.Busaddress);

Is this possible, if not, when can you create this functionallity?

Thanks,

Benno
bus iridium.png
bus iridium.png_thumb
0
Answered

Top most item in list

Damian Hartin 9 years ago in iRidium Script updated by Sergey (expert) 9 years ago 2
Hi,
I have a static list with 16 items in it and am looking for a List API property that will tell me what the top most item is. i.e. so I can work out if items 2-8 are showing or items 4-12, etc..

Have looked in the documentation and cant see any property/method, is there one available?

Thanks,
Damian
0
Answered

HTTP GET special characters

josvanstiphout 9 years ago in iRidium Script / AV and Driver scripts updated by Oksana (expert) 9 years ago 4
Hello


I need to send with HTTP GET: "/axis-cgi/io/virtualinput.cgi?action=6:/"


The ":" is not accepted as a character.
So it is sending "/axis-cgi/io/virtualinput.cgi?action=6%3A/" i.s.o. "/axis-cgi/io/virtualinput.cgi?action=6./"


How can I solve this?
please help!


Kind regards,
Jos van Stiphout
0
Answered

Данные загруженного проекта

evg 9 years ago in iRidium Script updated by Dmitry - support (expert) 9 years ago 4

Добрый день!

Возможно ли каким-то образом из скрипта получить дату загрузки проекта на управляющую панель?

Хочу организовать в проекте автоматическое оповещение о выходе новой версии проекта. Откуда загружать и как, а также как определить дату нового проекта я уже решил. Вся загвоздка в дате уже загруженного интерфейса.