Exemple #1
0
 public AVRZoneStatus()
 {
     _power         = AVRZonePowerStatus.OFF;
     _muteStatus    = AVRMuteStatus.MUTE_OFF;
     _masterVolume  = new AVRVolume();
     _volumeDisplay = AVRVolumeDisplay.Absolute;
 }
Exemple #2
0
 public AVRCommandMainZonePower(AVRZonePowerStatus powerStatus)
 {
     _powerStatus = powerStatus;
 }
Exemple #3
0
 public void SendZonePowerCommand(AVRZonePowerStatus status)
 {
     PostCommand(new AVRCommandMainZonePower(status));
 }