Exemple #1
0
 public SourceAddressCommand(ShortAddress address) : this()
 {
     Address = address;
 }
Exemple #2
0
 public TxRequest16Frame(ShortAddress destination, byte[] data)
 {
     Destination = destination;
     Data        = data;
 }
Exemple #3
0
 public NodeAddress(ShortAddress shortAddress) : this(LongAddress.Disabled, shortAddress)
 {
 }
Exemple #4
0
 public NodeAddress(LongAddress longAddress, ShortAddress shortAddress)
 {
     LongAddress  = longAddress;
     ShortAddress = shortAddress;
 }
 public TxRequestExtFrame(LongAddress destination, ShortAddress shortDestination, byte[] data)
 {
     Destination      = destination;
     ShortDestination = shortDestination;
     Data             = data;
 }
        public void Usage()
        {
            ShortAddress address = new ShortAddress(1);

            Assert.That(address[0], Is.EqualTo(129));
        }
Exemple #7
0
        public async Task <ShortAddress> GetShortAddressAsync(Network network, string address)
        {
            ShortAddress response = await GetQuery <ShortAddress, CommonError>(string.Format(GetShortAddressUrl, network._network, address));

            return(response);
        }