HomeGenie Forum
Automation Program Plugins and Wizard Scripting => Help => Topic started by: [email protected] on October 20, 2016, 12:14:34 AM
-
It appears in an interface when adding a module I can add customData..
var moduleToAdd = new InterfaceModule
{
Domain = this.GetDomain(),
Address = alarm.Zones[i].ZoneNumber.ToString(),
Description = $"Texecom Zone {alarm.Zones[i].ZoneNumber}",
ModuleType = ModuleTypes.Sensor,
CustomData = new { ZoneText = alarm.Zones[i].ZoneName }
};
X10 does similar too:
module = new InterfaceModule();
module.Domain = this.GetDomain();
module.Address = address;
module.Description = "X10 Security";
module.ModuleType = moduleType;
module.CustomData = 0.0D;
securityModules.Add(module);
Is there an example how I can access these from a program, or even a widget?
Thanks
-
Thanks for the headsup, I hadn't noticed that, I'll have a play around with it later. If I find anything I'll let you know.
-
Thanks
-
I can only find references to CustomData (string) in Statistics.cs and StatisticsLogger.cs
As far as I can see it's not exposed to Programs or Widgets, but I could be wrong.
-
GetModule might return it.. this is my annoyance with not being able to dev in visual studio, as I could set a breakpoint in the debugger and see what is available..
Really need to look and see what is going on behind the scenes and see if I can attach a remote debugger.. - not idea... being able to dev externally would really help me :)