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.

+1
Voting

Управление списком (List) через каналы драйвера (Commands and Feedback)

Dmitry Ryzhkov 9 jaar geleden in iRidium Script bijgewerkt 8 jaar geleden 5
// RUS
Прошу рассмотреть новую возможность работы со списками типа List при разработке новых драйверов.

На данный момент список объявляется в скрипте,

var myList = Module.GetPopup("myPopup").GetItem("myList");
Это имеет право на жизнь при разработке драйверов для i3 Lite.
При переходе к разработке драйверов для i3 Pro это станет проблемой, т.к. драйвер закрыт и в него не внести изменения.
Следовательно, необходимо управлять списком через каналы драйвера (Commands and Feedback)
Таким образом для подключения списка к драйверу будет необходимо и достаточно накинуть каналы драйвеhа на список в интерфейсе.
В самом драйвере нажатия на список будут обрабатываться через IR.EVENT_CHANNEL_SET, а вывод информации через Module.SetFeedback('myList', [data]);

Я больше чем уверен, что есть нюансы, но смысл примерно понятен.

+1
Voting

Stretch and Filtration options not visible by default

Theo Derks - NL (distributor) 9 jaar geleden in Applications / Studio (Server editor) bijgewerkt door Oksana (expert) 9 jaar geleden 3

Hi,

When creating beautiful buttons, the options in "Stretch and Filtration" are used many times.

But, when clicking on a button, the options in "Stretch and Filtration" are closed Always.

Please open these options by default.

It will save much time for installers, to prevent every time to open these options...

Image 10321


When this option is used one time, Studio will keep this option open; but when Studio is closed, and restarted, the option is closed...


Thanks


Theo


+1
Voltooid

Control of Timers in native drivers

Ekaterina (head of support) 9 jaar geleden in Applications / i3 Pro bijgewerkt door Aleksandr Romanov (CTO) 6 jaar geleden 5

Add ability to set up Timer in Channel properties (that supports "request by Timer").


For example HDL reads the Sensor status by Timer:

// Timer: 0 - works once, when the app Starts. 
// If the Timer has been turned on, it stops
IR.GetDevice("HDL-BUS Pro Network").SetTimer("Lux Air:Read", 0)

// Timer: 1 or more - works in interval (sec), all the time
IR.GetDevice("HDL-BUS Pro Network").SetTimer("Lux Air:Read", 5)

// If you want to turn timer off at all, there is 2 variants:
// 1. send -1 in .SetTimer() method
// 2. add the method .StopTimer()
// but with "-1" you can read it as .Timer property, so v1 is preferred

Image 10859

+1
Voting

Drivers in Project Device panel not opened when opening project

Theo Derks - NL (distributor) 9 jaar geleden in Applications / Studio (Server editor) bijgewerkt door Oksana (expert) 9 jaar geleden 2

Hi,

When opening an existing project, the drivers in the Project device panel are not displayed by default.


You Always have to double-click on the Drivers to see the used Drivers.


Please, make it in this way: When opening a project, display the used drivers. See the attachment.


I think this is more comfortable for all programmers.


Thanks drivers.png


Theo


+1
Voting

No logical descriptions

Theo Derks - NL (distributor) 9 jaar geleden in Applications / Studio (Server editor) bijgewerkt door Oksana (expert) 9 jaar geleden 2

Hi

When you add a driver from the Device Base to the project Device panel, the name of a Command is "Datapoint 1", and the name of a Feedback is "Datapoint 1".


Then, when you add a command with the +-sign (the green one), the name of the command is "Command 1", and when adding a feedback the name of the feedback is "Feedback".


This is not logical in our opinion.


Please use the same descriptions for commands and feedbacks, not 4 different ones.


Thanks


Theo

Image 10701

+1
Beantwoord

disable sidebar

Benno Evers 9 jaar geleden in Applications / i3 Pro bijgewerkt door Ekaterina (head of support) 9 jaar geleden 4

Is it possible to disable the sidebar? (which is shown with a gesture from left side of the screen to the right)

I'm not sure why this would be useful to an end user. The end user has the installer for managing projects etc. Now he can accidentally open the menu and 'break' stuff. And he is able to see all projects in the cloud of an installer who logged in, or does the user have to create an own account at iridium?

+1
Voltooid

Iridium server scheduler and data logger

Alessandro Munari 9 jaar geleden in Server Solutions / Windows Server bijgewerkt door Oksana (expert) 8 jaar geleden 3

Hi team,

something is missing now is a scheduler and a data logger. I'm coming from industrial controllers and the very first thing that a noticed is the lack of the scheduler and the datalogger. That are very useful when you do automation projects that use timers, and in project where you whant to store some variabiles for example for energy consumption metering. I know that you are planning to do that, but put on top of your priorities in your first version of the official release.

Thanks and regards

+1
Started

Support for SwiftKey

Theo Derks - NL (distributor) 9 jaar geleden in Applications / i3 Pro bijgewerkt door Oksana (expert) 9 jaar geleden 2

Hi,


We discovered the Apple iOS keyboard "Swiftkey" (https://swiftkey.com/en/keyboard/ios/) is not working in i3 Pro, i3 Config and i3 Lite.


This keyboard is supported in all apps in iOS, so why it is not working in iRidium???


Please add support for SwiftKey, or support for all external keyboards for iOS.


thanks


Theo


+1
Waiting for user's reply

Cloud/local in i3 Pro

Theo Derks - NL (distributor) 9 jaar geleden in Applications / i3 Pro bijgewerkt door Oksana (expert) 9 jaar geleden 1

Hi,

When opening the side-bar (swipe from left) in i3 Pro, the default environment is always Cloud.

But if you use only 'Local' files, you have to choose every time the button 'Local'.


Please remember the latest choice, so the installer/end-user don't have to choose every time his favorite choice.


Thanks


Theo


+1
Voltooid

IR.EVENT_ORIENTATION firing twice

Jackie Roos 9 jaar geleden in Applications / i3 Pro bijgewerkt door Vladimir Chernov 9 jaar geleden 2

Hi

I am running into issues as the listener for IR.EVENT_ORIENTATION fires twice very time the device is turned.


Can this please be stopped so the event fires once per turn.


IR.AddListener(IR.EVENT_ORIENTATION,0,function(){  IR.Log("EVENT_ORIENTATION System.Orientation: " + IR.GetVariable("System.Orientation"))});

Eg, in Windows, F5 Rotates the app and this is the logging from the above listener


[11-11-2015 11:45:43.518] INFO EVENT_ORIENTATION System.Orientation: 0
[11-11-2015 11:45:43.534] DEBUG Loading is complete

[11-11-2015 11:45:51.081] INFO EVENT_ORIENTATION System.Orientation: 1
[11-11-2015 11:45:51.097] DEBUG CIridiumCore::ChangeOrientation(1)
[11-11-2015 11:45:51.112] INFO EVENT_ORIENTATION System.Orientation: 1


[11-11-2015 11:45:52.144] INFO EVENT_ORIENTATION System.Orientation: 4
[11-11-2015 11:45:52.159] DEBUG CIridiumCore::ChangeOrientation(4)
[11-11-2015 11:45:52.175] INFO EVENT_ORIENTATION System.Orientation: 4

[11-11-2015 11:45:52.909] INFO EVENT_ORIENTATION System.Orientation: 2
[11-11-2015 11:45:52.925] DEBUG CIridiumCore::ChangeOrientation(2)
[11-11-2015 11:45:52.941] INFO EVENT_ORIENTATION System.Orientation: 2

[11-11-2015 11:45:53.613] INFO EVENT_ORIENTATION System.Orientation: 3
[11-11-2015 11:45:53.628] DEBUG CIridiumCore::ChangeOrientation(3)
[11-11-2015 11:45:53.644] INFO EVENT_ORIENTATION System.Orientation: 3


[11-11-2015 11:45:54.238] INFO EVENT_ORIENTATION System.Orientation: 1
[11-11-2015 11:45:54.253] DEBUG CIridiumCore::ChangeOrientation(1)
[11-11-2015 11:45:54.269] INFO EVENT_ORIENTATION System.Orientation: 1


[11-11-2015 11:45:54.675] INFO EVENT_ORIENTATION System.Orientation: 4
[11-11-2015 11:45:54.691] DEBUG CIridiumCore::ChangeOrientation(4)
[11-11-2015 11:45:54.706] INFO EVENT_ORIENTATION System.Orientation: 4


thanks very much