1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Wayne_Pump_Dart.MessageEntity.Outgoing
- {
- public class StopRequest : MessageBase
- {
- public StopRequest(byte address, byte blockSeqNumber)
- {
- base.Adrs = address;
- base.BlockSeqNumber = blockSeqNumber;
- base.ControlCharacter = ControlCharacter.DATA;
- base.TransactionDatas = new List<TransactionData>()
- {
- new TransactionData()
- {
- TransactionNumber = 0x01,
- RawData = new List<byte>(){0x08}
- }
- };
- }
- }
- }
|