HomeGenie Forum

Automation Program Plugins and Wizard Scripting => Help => Topic started by: [email protected] on October 20, 2016, 12:14:34 AM

Title: CustomData
Post by: [email protected] on October 20, 2016, 12:14:34 AM
It appears in an interface when adding a module I can add customData..

Code: [Select]
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:

Code: [Select]
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
Title: Re: CustomData
Post by: mvdarend on October 20, 2016, 11:59:31 AM
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.
Title: Re: CustomData
Post by: [email protected] on October 20, 2016, 01:54:34 PM
Thanks
Title: Re: CustomData
Post by: mvdarend on October 20, 2016, 02:11:15 PM
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.
Title: Re: CustomData
Post by: [email protected] on October 21, 2016, 07:11:11 PM
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 :)