Your comments

The screen time out works once and then does not work again.

It is just on that PC.

This is on a client site so I cannot put an empty project sorry.


Found it by accident :)


Did you see it is now on the right mouse button click of popups in 1.0.6?

Hi Theo

I like the new way and find it very useful

What is it that installers don't like?

Jackie

We have a scheduling driver. It stores the schedules in the server database, but does not send if eg there was a power cut and schedule was missed


The coming iRidium Scheduling will be much better so probably worth waiting for :)


In this example, AM schedule is enabled for Saturday and Sunday, and the PM schedule is disabled.


I have put it in drop box, with the instructions:

https://www.dropbox.com/sh/q38m4sw5b8n2sel/AADh36PcxpoLqM9xjXtRklZLa?dl=0

Yes. If I want to merge drivers, I will do it myself.


But, as this is existing, some others may be relying on this or using this feature unknowingly.


So it should probably be an optional setting

Hi Aleksandr

Yes :) Most often when using my scheduling driver, but other times also. The drivers are separate as this much easier to manage and re-use in projects. The drivers will have the same connection settings, but different commands/feedback.


Eg I have a scheduling driver, and a clipsal cgate driver. The scheduling might be sending to the clipsal cgate driver, and needs to connect separately to use the scheduling driver commands and feedback. (Clipsal Cgate accepts multiple connections)


In another project the scheduling might be sending dynalite commands and so both drivers connect to dynalite.

Use iRidium script to set the state


One way to do this is to create a feedback in Studio to store the colour state in, in this case it is Temp Colour
Then put a multi-state button over the text showing degrees, with colour blue for state 1, colour orange state 2 and colour red state 3


Add something like this script

//put in your driver name where it says "DriverName"
IR.AddListener(IR.EVENT_TAG_CHANGE,IR.GetDevice("DriverName"),function(name, value)
{
//the name of the temperature feedback in this example is "Temp"
if (name == "Temp") {
//value is the current value of the Temp feedback
if (parseInt(value) < 20) {
IR.SetVariable("DriverName.Temp Colour", 0);
} else if ((parseInt(value) >= 20) & (parseInt(value) < 25)){
IR.SetVariable("DriverName.Temp Colour", 1);
} else {
IR.SetVariable("DriverName.Temp Colour", 2);
}
}
});



Hi Oksana

Please see this issue, these can be merged:

http://support.iridiummobile.net/topics/8999-the-way-commands-are-added-affects-if-value-is-truncated-or-not/


Quoting you


iRidium Server driver isn't AV & Custom System Driver and other users want to set "Send number" always.
Mmm, we can update "Send Command" for iRidium Server driver and save a last choice of users (in current session of Studio).If you choice "Send Text", in second time you see "Send Text", not "Send Number"."


My response

Please make it a setting in Tools/Options.Changing a crucial default behaviour like this because someone requested it is not good.




Please do these

1. make this a setting in Tools/Options

Set the default to Send Number, but have it so we can change it


2. When a command is dragged on, have it remember the last used action, the same as it remembers the event for action (Press, Release, Hold etc)


Please do something about this ASAP. Very very frustrating and slow going if you want to send anything other than a number.


Thanks

No issues at all. If the router is not connected to the internet it is acting as a switch - make sure the GC has the router IP address as it's gateway, check that the GC IP address it static, and perhaps set up address reservation in the router for the GC.

cheers