Beispiel #1
0
        public override bool SaveToDevice(ref FaHDevice faHDevice, out bool moreIndices)
        {
            if (this.resultCode == KNXHelpers.knxPropertyReturnValues.MoreIndices)
            {
                faHDevice.WritePropertyMoreIncides(ObjectID, PropertyID, (ushort)(this.FieldID + 1));
            }

            moreIndices = faHDevice.WritePropertyValue(this.ObjectID, this.PropertyID, this.FieldID, this.FPSRpayload);
            return(true);
        }