Esempio n. 1
0
File: AT.cs Progetto: gagmax981/XBee
 public ATAttribute(string atCommand, string description, ATValueType type, ulong maxValue)
 {
     ATCommand    = atCommand;
     Description  = description;
     MaximumValue = maxValue;
     ValueType    = type;
 }
Esempio n. 2
0
File: AT.cs Progetto: gagmax981/XBee
 public ATAttribute(string atCommand, string description, ATValueType type)
 {
     ATCommand   = atCommand;
     Description = description;
     ValueType   = type;
 }
Esempio n. 3
0
 public ATAttribute(string atCommand, string description, ATValueType type, ulong maxValue)
 {
     ATCommand = atCommand;
     Description = description;
     MaximumValue = maxValue;
     ValueType = type;
 }
Esempio n. 4
0
 public ATAttribute(string atCommand, string description, ATValueType type)
 {
     ATCommand = atCommand;
     Description = description;
     ValueType = type;
 }