コード例 #1
0
ファイル: AT.cs プロジェクト: gagmax981/XBee
 public ATAttribute(string atCommand, string description, ATValueType type, ulong maxValue)
 {
     ATCommand    = atCommand;
     Description  = description;
     MaximumValue = maxValue;
     ValueType    = type;
 }
コード例 #2
0
ファイル: AT.cs プロジェクト: gagmax981/XBee
 public ATAttribute(string atCommand, string description, ATValueType type)
 {
     ATCommand   = atCommand;
     Description = description;
     ValueType   = type;
 }
コード例 #3
0
ファイル: AT.cs プロジェクト: chrisreedio/xbee-api-sharp
 public ATAttribute(string atCommand, string description, ATValueType type, ulong maxValue)
 {
     ATCommand = atCommand;
     Description = description;
     MaximumValue = maxValue;
     ValueType = type;
 }
コード例 #4
0
ファイル: AT.cs プロジェクト: chrisreedio/xbee-api-sharp
 public ATAttribute(string atCommand, string description, ATValueType type)
 {
     ATCommand = atCommand;
     Description = description;
     ValueType = type;
 }