示例#1
0
YamahaAVRPlatform.Muting = function() {
  Characteristic.call(this, 'Muting', '00001002-0000-1000-8000-135D67EC4377');
  this.format = 'bool';
  this.readable = true;
  this.writable = true;
  this.supportsEventNotification = true;
  this.value = this.getDefaultValue();
};
示例#2
0
YamahaAVRPlatform.AudioVolume = function() {
  Characteristic.call(this, 'Audio Volume', '00001001-0000-1000-8000-135D67EC4377');
  this.format = 'uint8';
  this.unit = 'percentage';
  this.maximumValue = 100;
  this.minimumValue = 0;
  this.stepValue = 1;
  this.readable = true;
  this.writable = true;
  this.supportsEventNotification = true;
  this.value = this.getDefaultValue();
};