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

Zigbee and z-wave

Kent-G 4 years ago in Modules updated by Anna Isaeva (expert) 3 years ago 14

Hi. Is there a easy way to add and controll both zigbee and z-wave gear true i3 lite?

0
Answered

JWT sign with private key

Kris 4 years ago updated by Vladimir Ovchinnikov (expert) 3 years ago 10

Hi

I need to create a JWT token signed with private key and encoded with SHA256withRSA algorithm.

This would be used for connection with third party API.

Is there any function in iRidium library I could use to do this? Method IR.CalculateHash(algorithm,string) does not seem to have 'private key' input parameter and I could not find anything else in the documentation.

Any ideas how I could accomplish this?

Thanks!

0
Answered

Which function can restart server?

Sinan Chen 4 years ago updated by Aleksandr Romanov (CTO) 4 years ago 1

Hi,

I want to restart server when server meets some errors.

Which function can do that?

Thank you for your help.

0
Searching answer

Need help with dahua sip integrated server

Smart Life 4 years ago updated by Aleksandr Romanov (CTO) 4 years ago 1

Can someone recommend me from your experience any Dahua model which has sip function and built-in SIP server, so I don't have to create an sip server separately. 
Thanks

0
Answered

How to make Akuvox SIP intercom work remotely, while not on local network?

Luka Krcmar 4 years ago updated by Aleksandr Romanov (CTO) 4 years ago 9

Basically I've followed your instructions on how to set up Akuvox intercom and it works fine when user is connected to the same local network as the intercom units, but what about when user is away from home and someone rings the bell?

0

Database Backup and Restore

Kris 4 years ago in Ideas updated by Vladimir Ovchinnikov (expert) 4 years ago 1

Hi.

It would be very useful to have a mechanism/API allowing backup and restore of the system database to/from the cloud. It could be private cloud storage or iRidium cloud. It would allow to keep the historical data in case server failure or other accidental data wipe. I understand that at the moment it is only possible by manual copying database file between devices/folders, which might be problematic in some cases.

0
Answered

License trasfer

Maciej Walentowski 4 years ago updated by Tatiana Kiselyova (expert) 4 years ago 1

How can I transfer an unused license to another account?

0
Answered

Change "set value when disconnected" for several commands

AlejandroG 4 years ago updated by Aleksandr Romanov (CTO) 3 years ago 2

Is there a way to change the setting "set value when disconnected" to true to several commands at a time, without having to change it one by one?

Furthernore, every time the knx driver is synchronized with the server, the parameters are changed again to false, very frustrating.

0
Answered

IR.GetDevice(name).Send([data]) How to use in "Panel+Server" mode?

Sinan Chen 4 years ago updated by Tatiana Kiselyova (expert) 4 years ago 1

Target:

Sending a array of Hex data to device via UDP in iRIdi Script.


I have achieve goal in "only-Panel" mode by the code below:

var cmd = [0x11,0x22, 0x33];

IR.GetDevice("AV & Custom TCP/UDP Network").Send(cmd);

But I have problem in "Panel+Server" mode:

Panel:

var cmd = [0x11,0x22, 0x33];

for(var i=0;i<3;i++){

  IR.GetDevice("iRidium Server").Set("AV & Custom TCP/UDP Network.AV & Custom Systems:AV Control Command", cmd[i]);

}

Server:

IR.SubscribeTagChange("Server.Channels.AV & Custom TCP/UDP Network.AV & Custom Systems:AV Control Command");

IR.SetGlobalListener(IR.EVENT_GLOBAL_TAG_CHANGE, function(in_sName, in_sValue){

    IR.Log("Active Global Listener: " + in_sName + "\tValue: " + in_sValue);

    IR.GetDevice("AV & Custom TCP/UDP Network").Send(in_sValue);

}

The problem is the Server sending nothing to device. And I found the "in_sValue" only getting the last byte(0x33) according to the log.

What is wrong with me, please?


0
Answered

Put iPad into sleep

Sorbodoekje 4 years ago updated by Tatiana Kiselyova (expert) 4 years ago 1

My client is requesting a button, which puts the iPad into sleep mode in the same way as when the physical power button is pressed.

Is this possible?


Regards,


Jan Oost