コード例 #1
0
        public static void SendImageBlockResponse(ushort address, byte status, IEzspService ezspService,
                                                  ushort mfgCode  = default(ushort), ushort imageType = default(ushort), uint fileVersion = default(uint),
                                                  uint fileOffset = default(uint), byte dataSize      = default(byte), byte[] imageData   = null, ushort blockRequestDelay = default(ushort))
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OtaUpgradeCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlDisableDefaultResponseBit | ZclConstants.ZclFrameControlClusterServerToClientBit | ZclConstants.ZclFrameControlClusterSpecificBit));
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.OtaUpgrade.ImageBlockResponse);
            buffer.Add(status);

            if (status == ZCLStatus.ZclStatusSuccess)
            {
                buffer.Add(mfgCode);
                buffer.Add(imageType);
                buffer.Add(fileVersion);
                buffer.Add(fileOffset);
                buffer.Add(dataSize);
                buffer.AddArray(imageData);
            }
            else if (status == ZCLStatus.ZclStatusWaitForData)
            {
                // Next two commands tell the device to wait 1 second before requesting more data
                buffer.Add((uint)0x00);        // Current Time (Base of wait calculation)
                buffer.Add((uint)0x01);        // Request Time (Offset of wait calculation)

                buffer.Add(blockRequestDelay); // Ensure the BlockRequestDelay is set to 0
            }

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #2
0
        public static void SendActiveEndpointRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZdoConstants.ZdoProfileId, ZdoClusterIds.ActiveEndpointRequest, 0, 0, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00); // Sequence
            buffer.Add(address);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #3
0
        public static void SendDefaultCommand(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.BasicCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlClusterSpecificBit);
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.Global.ReadAttributes);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #4
0
        public static void SendOnOffBroadcast(byte command, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OnOffCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlClusterSpecificBit);
            buffer.Add((byte)0x00);
            buffer.Add(command);

            ezspService.SendBroadcast(ZclConstants.BroadcastRoutersAndCoordinators, frame, 10, 0, buffer.ToArray());
        }
コード例 #5
0
        public EzspMessageSentHandler(int[] inputBuffer) :
            base(inputBuffer)
        {
            _type = deserializer.DeserializeEmberOutgoingMessageType();
            _indexOrDestination = deserializer.DeserializeUInt16();
            _apsFrame           = deserializer.DeserializeEmberApsFrame();
            _messageTag         = deserializer.DeserializeUInt8();
            _status             = deserializer.DeserializeEmberStatus();
            int messageLength = deserializer.DeserializeUInt8();

            _messageContents = deserializer.DeserializeUInt8Array(messageLength);
        }
コード例 #6
0
        public static void SendFirmwareVersionRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OtaUpgradeCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);
            var b     = new CommandBuffer();

            b.Add(ZclConstants.ZclFrameControlClusterServerToClientBit);
            b.Add((byte)0x00); // Sequence Number
            b.Add(CommandIds.Global.ReadAttributes);
            b.Add(AttributeIds.OtaServer.CurrentFileVersion);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, b.ToArray());
        }
コード例 #7
0
        public static void SendModelStringRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.BasicCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);
            var b     = new CommandBuffer();

            b.Add((byte)0x00); // Frame Control
            b.Add((byte)0x00); // Sequence Number
            b.Add(CommandIds.Global.ReadAttributes);
            b.Add(AttributeIds.BasicServer.ModelIdentifier);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, b.ToArray());
        }
コード例 #8
0
        public static void SendPermitJoiningBroadcast(byte duration, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZdoConstants.ZdoProfileId, ZdoClusterIds.PermitJoiningRequest, 0, 0, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00); // Sequence
            buffer.Add(duration);
            buffer.Add((byte)0x00); // Trust Center Significance

            ezspService.SendBroadcast(ZclConstants.BroadcastRoutersAndCoordinators, frame, 10, 0, buffer.ToArray());
        }
コード例 #9
0
        public static void RequestLongPollInvtervalMin(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.PollControl, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00); // Control
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.Global.ReadAttributes);
            buffer.Add(AttributeIds.PollControl.LongPollIntervalMin);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #10
0
        public static void SendIEEEAddressRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZdoConstants.ZdoProfileId, ZdoClusterIds.IEEEAddressRequest, 0, 0, EmberApsOption.EMBER_APS_OPTION_NONE, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00); // Sequence
            buffer.Add(address);    // Network Address
            buffer.Add((byte)0x00); // Request Type 0x00 = Single Device Response 0x01 = Extended Response
            buffer.Add((byte)0x00); // Start Index (Used if Extended Response)

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #11
0
        public static void SendReadOccupancyStatus(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OccupancySensing, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);
            buffer.Add((byte)0x00);
            buffer.Add(CommandIds.Global.ReadAttributes);
            buffer.Add(AttributeIds.OccupancySensingServer.MotionStatus);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #12
0
        public static void SendPowerMeasurementRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.ElectricalMeasurement, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);
            buffer.Add((byte)0x00);
            buffer.Add(CommandIds.Global.ReadAttributes);
            buffer.Add(AttributeIds.ElectricalMeasurement.ActivePower);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #13
0
        public static void SendTemperatureRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.TemperatureMeasurement, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00); // Frame Control
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.Global.ReadAttributes);
            buffer.Add(AttributeIds.TemperatureMeasurementServer.MeasuredValue);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #14
0
        public static void SetLongPollRate(ushort address, uint quarterSeconds, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.PollControl, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlClusterSpecificBit); // Frame Control
            buffer.Add((byte)0x00);                                     // Sequence
            buffer.Add(CommandIds.PollControl.SetLongPollIntervalRate); // Command
            buffer.Add(quarterSeconds);                                 // Attribute Identifier

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #15
0
        public static void SendOnOffCommand(ushort address, byte command, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OnOffCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlClusterSpecificBit);
            buffer.Add((byte)0xb0);
            buffer.Add(command);
            buffer.AddArray(new byte[] { });

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #16
0
        public static void SendProximityCalibrateRequest(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.BasicCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterSpecificBit | ZclConstants.ZclFrameControlManufacturerSpecificBit));
            buffer.Add(ZclConstants.CentraliteManufacturerId);
            buffer.Add((byte)0x00);
            buffer.Add(CommandIds.Keypad.CheckCalibration);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #17
0
        public static void SendSelfTestCommand(ushort address, ushort cluster, ushort manufacturingCode, byte selfTestCommand, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, cluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterSpecificBit | ZclConstants.ZclFrameControlManufacturerSpecificBit | ZclConstants.ZclFrameControlDisableDefaultResponseBit));
            buffer.Add(manufacturingCode);
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(selfTestCommand);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #18
0
        public static void SendIasEnrollResponse(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.IasZone, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlClusterSpecificBit);
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.IasZoneClient.ZoneEnrollResponse);
            buffer.Add(ZCLStatus.ZclStatusSuccess);
            buffer.Add((byte)0x01); // Zone ID

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #19
0
        public static void SendImageNotifyBroadcast(IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OtaUpgradeCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterServerToClientBit | ZclConstants.ZclFrameControlDisableDefaultResponseBit | ZclConstants.ZclFrameControlClusterSpecificBit));
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.OtaUpgrade.ImageNotify);
            buffer.Add(ImageNotifyPayloadType.QueryJitter);
            buffer.Add((byte)100); // Query Jitter (0 - 100) Max Value should insure device responds

            ezspService.SendBroadcast(ZclConstants.BroadcastAllDevices, frame, 10, 0, buffer.ToArray());
        }
コード例 #20
0
        public static void SendHumidityRequest(ushort address, uint manufacturingCode, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.CentraliteHumidity, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlManufacturerSpecificBit); // Header
            buffer.Add(manufacturingCode);                                   // MFG Code
            buffer.Add((byte)0x00);                                          // Sequence
            buffer.Add(CommandIds.Global.ReadAttributes);                    // Command
            buffer.Add(AttributeIds.RelativeHumidityServer.MeasuredValue);   // Attribute ID

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #21
0
        public EzspIncomingMessageHandler(int[] inputBuffer) :
            base(inputBuffer)
        {
            _type         = deserializer.DeserializeEmberIncomingMessageType();
            _apsFrame     = deserializer.DeserializeEmberApsFrame();
            _lastHopLqi   = deserializer.DeserializeUInt8();
            _lastHopRssi  = deserializer.DeserializeInt8S();
            _sender       = deserializer.DeserializeUInt16();
            _bindingIndex = deserializer.DeserializeUInt8();
            _addressIndex = deserializer.DeserializeUInt8();
            int messageLength = deserializer.DeserializeUInt8();

            _messageContents = deserializer.DeserializeUInt8Array(messageLength);
        }
コード例 #22
0
        public static void SendImageNotify(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OtaUpgradeCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterServerToClientBit | ZclConstants.ZclFrameControlClusterSpecificBit));
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.OtaUpgrade.ImageNotify);
            buffer.Add(ImageNotifyPayloadType.QueryJitter);
            buffer.Add((byte)100); // Query Jitter (0 - 100) Max Value should insure device responds

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #23
0
        public static void SendDimmerCommand(ushort address, ushort attribute, ushort transitionTime, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.LevelControl, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);
            buffer.Add((byte)0x00);
            buffer.Add(CommandIds.LevelControl.Step);
            buffer.Add(attribute);
            buffer.Add(ZclDataTypes.Int16u);
            buffer.Add(transitionTime);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #24
0
        public static void WriteCieAddress(ushort address, EmberEui64 hostEui, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.IasZone, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);                            // Frame control
            buffer.Add((byte)0x00);                            // Sequence
            buffer.Add(CommandIds.Global.WriteAttributes);     // Command
            buffer.Add(AttributeIds.IasZoneServer.CieAddress); // Attribute Identifier
            buffer.Add(ZclDataTypes.IeeeAddress);              // Data Type
            buffer.Add(hostEui);                               // EUI to write

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #25
0
        public static void SendDimmerBroadcast(ushort attribute, ushort transitionTime, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.LevelControl, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);
            buffer.Add((byte)0x00);
            buffer.Add(CommandIds.LevelControl.Step);
            buffer.Add(attribute);
            buffer.Add(ZclDataTypes.Int16u);
            buffer.Add(transitionTime);

            ezspService.SendBroadcast(ZclConstants.BroadcastRoutersAndCoordinators, frame, 10, 0, buffer.ToArray());
        }
コード例 #26
0
        public static void SendRelayOnCommand(ushort address, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.PearlThermostat, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterSpecificBit | ZclConstants.ZclFrameControlManufacturerSpecificBit | ZclConstants.ZclFrameControlDisableDefaultResponseBit));
            buffer.Add(ZclConstants.CentraliteManufacturerProfileId);
            buffer.Add((byte)0x00);                           // Sequence
            buffer.Add(CommandIds.RelayOnOff.RelayCommand);   // ZCL Command
            buffer.Add(CommandIds.RelayOnOff.RelayOn);        // Relay-Command Command
            buffer.Add(CommandIds.RelayOnOff.AllRelaysIndex); // Relay Index

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #27
0
        public static void SetIasZoneMotionTimeout(ushort address, ushort timeout, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.IasZone, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add(ZclConstants.ZclFrameControlManufacturerSpecificBit); // Frame Control
            buffer.Add(ZclConstants.CentraliteManufacturerId);               // Manufacturer Specific Code
            buffer.Add((byte)0x00);                                          // Sequence
            buffer.Add(CommandIds.Global.WriteAttributes);                   // Command
            buffer.Add(AttributeIds.IasZoneServer.IasZoneMotionTimeout);     // Attribute Identifier
            buffer.Add(ZclDataTypes.Int16u);                                 // Data Type
            buffer.Add(timeout);                                             // Timeout

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #28
0
        public static void SendUpgradeEndResponse(ushort address, ushort mfgCode, ushort imageType, uint fileVersion, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZclConstants.HomeAutomationProfileId, ClusterIds.OtaUpgradeCluster, 1, 1, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)(ZclConstants.ZclFrameControlClusterServerToClientBit | ZclConstants.ZclFrameControlClusterSpecificBit));
            buffer.Add((byte)0x00); // Sequence
            buffer.Add(CommandIds.OtaUpgrade.UpgradeEndResponse);
            buffer.Add(mfgCode);
            buffer.Add(imageType);
            buffer.Add(fileVersion);
            buffer.Add((uint)0x00);
            buffer.Add((uint)0x05);

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
        }
コード例 #29
0
        public static void SendOnOffClusterBindRequest(ushort address, EmberEui64 eui, byte endpointCount, IEzspService ezspService)
        {
            for (byte i = 1; i <= endpointCount; i++)
            {
                var frame = new EmberApsFrame(ZdoConstants.ZdoProfileId, ZdoClusterIds.BindRequest, i, 0, EmberApsOption.EMBER_APS_OPTION_STANDARD, 0, 0);

                var buffer = new CommandBuffer();
                buffer.Add((byte)0x00);          // Sequence
                buffer.Add(eui);                 // Device EUI
                buffer.Add(i);                   // Endpoint for device
                buffer.Add(ZCL.ClusterIds.OnOffCluster);
                buffer.Add((byte)0x03);          // Mode
                buffer.Add(ezspService.HostEui); // Host EUI
                buffer.Add((byte)0x01);          // Endpoint for host

                ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, 0, buffer.ToArray());
            }
        }
コード例 #30
0
        public static void SendLeaveRequest(ushort address, bool sleepy, byte tag, IEzspService ezspService)
        {
            var frame = new EmberApsFrame(ZdoConstants.ZdoProfileId, ZdoClusterIds.ManagementLeaveRequest, 0, 0, EmberApsOption.EMBER_APS_OPTION_NONE, 0, 0);

            var buffer = new CommandBuffer();

            buffer.Add((byte)0x00);
            buffer.Add(0);
            buffer.Add(0);
            buffer.Add((byte)0x00);

            var emptySourceRoute = new ushort[0];

            if (!sleepy)
            {
                ezspService.SetSourceRoute(address, emptySourceRoute);
            }

            ezspService.SendUnicast(EmberOutgoingMessageType.EMBER_OUTGOING_DIRECT, address, frame, tag, buffer.ToArray());
        }