Exemple #1
0
 public Device(string name_, StorageFile input_file, List<string> IR_info)
 {
     name = name_;
     buttonScanner = new RemoteButtonScanner();
     device_info_file = input_file;
     IR_protocol = IR_info[0];
     IR_bits = IR_info[1];
 }
Exemple #2
0
 public void setVolumeIncrement(int value)
 {
     volume_increments = value;
     buttonScanner = new RemoteButtonScanner();
     createButtons();
     saveDevice();
 }
Exemple #3
0
 public Device(string name_, StorageFile input_file)
 {
     name = name_;
     buttonScanner = new RemoteButtonScanner();
     device_info_file = input_file;
 }
Exemple #4
0
 public Device()
 {
     buttonScanner = new RemoteButtonScanner();
     //device_info_file = new StorageFile();
 }