Uw opmerkingen

Hello!
You can stream the video on iPad only if you generate it like a video in MJPG/H.264 format as you can stream a normal IP camera or DVR . Please see the instruction:
http://wiki2.iridiummobile.net/Creating_the_Graphic_Part_of_iRidium_Projects#Receiving_Video_from_IP_Cameras
It can be made using some external app, able to stream your desctop
Hello Feri

We don'n have a specified datashit about HDL commands used by SB-IR-EM, but hope it will work with Sensor Input commands. Please take a look at the attached project: change a Subnet/DeviceID to the HDL Emitter address and try to turn it on and off.

HDL_Sensor_Input_4Z.irpz
Yes, the problem occures with the Dynamic Images.
The problem added into a bug-tracking system and will be solved in the next versions
One for commercial license, two for Trial license. You can get more deactivations by the special request to support team.
Hi Hichem!
iRidium Mobile does not support G4 equipment. It supports HDL-BUS Pro equipment only.
Deae Nipple.
Yes, in general, it should work using "wine", but we test it only at Windows, you do so at your own risk, we do not give any guarantees
If your command includes a ASCII string and you should send a Value in SACII format (for example: 'SET LEVEL XX',$0A), use this script:
```
// -------- to send a Volume Value from the Level
var Msg = "SET LEVEL "; //This is the string with our command without volume value
var Packet;
IR.AddListener(IR.EVENT_ITEM_RELEASE,IR.GetItem("Page 1").GetItem("Item 1"),function() //This event will be active when you release the level-button
{
Packet = Msg+IR.GetVariable("Drivers.GC-100-12:Serial 1.Volume").toString()+'\n'; //Here we add the volume value to our commang
//IR.Log("Sended message = "+Packet)
IR.GetDevice("GC-100-12:Serial 1").Send([Packet]); //here we send the result string to device

});
```