/// <summary>
        /// Invoke the action synchronously
        /// </summary>
        /// <remarks>Blocks until the action has been processed
        /// on the device and sets any output arguments</remarks>
        /// <param name="aIndex"></param>
        /// <param name="aColor"></param>
        public void SyncGetColor(uint aIndex, out uint aColor)
        {
            SyncGetColorOpenhomeOrgTestLights1 sync = new SyncGetColorOpenhomeOrgTestLights1(this);

            BeginGetColor(aIndex, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aColor = sync.Color();
        }
 /// <summary>
 /// Invoke the action synchronously
 /// </summary>
 /// <remarks>Blocks until the action has been processed
 /// on the device and sets any output arguments</remarks>
 /// <param name="aIndex"></param>
 /// <param name="aColor"></param>
 public void SyncGetColor(uint aIndex, out uint aColor)
 {
     SyncGetColorOpenhomeOrgTestLights1 sync = new SyncGetColorOpenhomeOrgTestLights1(this);
     BeginGetColor(aIndex, sync.AsyncComplete());
     sync.Wait();
     sync.ReportError();
     aColor = sync.Color();
 }