Поделитесь своими идеями, пожеланиями и примерами в этом разделе. Идеи, за которые голосуют чаще всего, будут реализованы быстрее!

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

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

0
На рассмотрении

iRidium + Fibaro

Geovani Costa 9 лет назад в Готовые скриптовые модули обновлен iRidiumNikita 9 лет назад 1
Hi

I'm doing the integration of Iridium + Fibaro. Even buying a license on the site described in the manual (http://rus.z-wave.me/shop/programnoe-obespechenie/) only conguimos control modules in the HC2 in hand design with the Driver Fibaro.

When I make a new project can not control any Fibaro module. We realize that has some scripts on the blocked license password, someone could guide me on how to properly using and enjoying the license on a project with Iridium + Fibaro?

Thank you
0
Завершен

Panasonic Blu-Ray player DMP-BDT110/210/310 IP control

Jan Hein Liebregts 10 лет назад в Готовые скриптовые модули обновлен Ekaterina (head of support) 9 лет назад 0
To control your Panasonic Blu-ray player DMP-BDT110/210/310 over IP we have an new program available on our website.
 
 
Also visit our facebook page: https://www.facebook.com/jahelimedia?ref=hl
 
JaHeli media
Jan Hein

Panasonic__1_.jpg
0
Отвечен

Frustrated....!! Should I be looking at a different control solution..??

Shaun Moloney 8 лет назад в Готовые скриптовые модули обновлен Ekaterina (head of support) 8 лет назад 6

I am not sure why but maybe someone could please provide some feedback as to why there is still no MiOS/Vera support in iRidium?? The Vera 3 and the Vera Edge on of the most popular Z-Wave gateways available why is there such an issues with getting a native Script/Driver from iRidium and or the community?


I am also equal as frustrated that here in Australia were we don't speak Russian the only please that it seems you can by the Fibaro / Z-Wave Script/Driver Licence is from a site ALL in Russian and that NEVER respond to enquires.


Please iRidium I love you software and want to support and sell it here in Australia but its hard when you don't offer support for MiOS/Vera.


Someone.....Anyone.....Please HELP!!


Happy to pay a fee for the drive also


Shaun

0
Отвечен

Sonos Update

Yeliz Tarhan 8 лет назад в Готовые скриптовые модули обновлен greefon 8 лет назад 7

Hello,


We have updated our sonos a project. Your Sonos module did not work. Screen "Loading"




0
Завершен

Denon control thru iTach Serial

rocfusion 10 лет назад в Готовые скриптовые модули обновлен Ekaterina (head of support) 9 лет назад 0
Take a Denon receiver and connect it to an iTach IP2SL with an serial cable.
First setup the iTach IP2SL with the serial parameters (note: most denons use this baud rate)
  • Multiple Ports: Enabled
  • Baud Rate: 9600
  • Flow Control: None
  • Stop Bits: 1
  • Parity: None
  • Data Bits: 8
Create a project and add the Denon driver to the project
Now in the connection setting of the Denon driver add the IP address of the Global Cache device (iTach IP2SL);
Change the port to 4999
Create your interface with buttons and assign them to the commands of the denon driver.
Test it with the emulator or an control panel. This should work,  in my environment this worked.

This driver is not officially supported by iRidium Mobile

Denon_v2.zip
0
Отвечен

Itunes Module Reconnecting

hidal78b 9 лет назад в Готовые скриптовые модули обновлен Dmitry - support (expert) 9 лет назад 10
We are testing the iridium module in Android tablet and it connects to itunes ok but suddenly the pop up "itunes/disconnected" page appears and after pushing "try again" doesn't connect again, is always loading.

Using the emulator from the Gui Editor in a local PC goes fine.

Maybe firewall is disconnecting the link between tablet and pc with itunes???
Ответ
Olga (expert) 9 лет назад
Dear Hidal78b,

We tested iTunes installed on Win + ipad air 2 (iOS 8.1.3), Samsung Galaxy S5 mini (Android 4.2.2) in turns using i2 control V2.2 (2.2.2). We didn't notice any connection loss.

So it is possible that the problem you experience is an issue of your Android device. To check that, you need to try controlling the module from any other Android or iOS device at the same conditions (but not from the PC with the installed iTunes!).

To eliminate the effect of the network settings, it is required to turn off firewall on the PC with the installed iTunes.

If you try both of these variants, but still have problems, then please send us the log of i2 Control work on Android (use Debugging log).

If is necessary to activate loggin, then restart i2 control V2.2 and after that work as usual, keeping track of reconnections to iTunes. Then send us the log by e-mail.

Sincerely yours,

Olga Ermakova
iRidium mobile Team
0
Отвечен

Write text or excel file to a network location (i.e. to a NAS)

Alessandro Munari 9 лет назад в Готовые скриптовые модули обновлен Ekaterina (head of support) 9 лет назад 1
Hi to all, I'm locking for a solution that use JS to write some variable (for example a temperature read from KNX sensors) to an excel sheet or to a text file. Is there any possibility to write such files ?
And finally to save the file to a network location such a NAS or an FTP folder.
Thanks in advance for the support.
0
Отвечен

rgbw under dmx controller

geekhouse srls 8 лет назад в Готовые скриптовые модули обновлен 8 лет назад 2

Hello guys, i am trying out the new strip led rgbw working with the HDL DMX Controller.
I am trying to add the white channel to the color picker JS script.

Do you have any clue about the lines i should add in this piece of script where i had the line
VAR WHITE = ???


and also under DEVICE.SET ?


Thank you


function work_pick_color(in_color_picker, in_color_resipient, in_sRed, in_sGreen, in_sBlue, in_swhite)
{
   var device = IR.GetDevice("HDL-BUS Pro Network (UDP)");                        // HDL Gateway in Project Device Tree
   var color = in_color_picker.PickColor;
   var red = (color  >> 24) & 0xFF;
   var green = (color >> 16) & 0xFF;
   var blue = (color >> 8) & 0xFF;
    var white = 

   in_color_resipient.GetState(1).FillColor = color;

   device.Set(in_sRed, red*(100/255)); 
   device.Set(in_sGreen, green*(100/255));
   device.Set(in_sBlue, blue*(100/255));
   device.Set(in_sWhite, white*(100/255));





0
Отвечен

Slow transfer

oggi katic 8 лет назад в Готовые скриптовые модули обновлен Dmitry - support (expert) 8 лет назад 4

Hey everybody.


I have some issues when i transfer / save. After i added XBMS JS module its takes 8-10 min to save / transfer.


Is there a other way to make it more faster?


Thanks

0
На рассмотрении

Z wave driver for Vera

Barry Jones 9 лет назад в Готовые скриптовые модули обновлен Ekaterina (head of support) 9 лет назад 1
Hi dose anyone have a Vera Zwave driver with slider support and feedback they wish to share, free or paid, happy to look at it


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