Working 2-way communication with Cotija Node server for Essentials Huddle Room Type

This commit is contained in:
Neil Dorin
2017-06-26 10:11:12 -06:00
parent e6281b7048
commit 615880a3d8
12 changed files with 572 additions and 265 deletions

View File

@@ -338,15 +338,15 @@ namespace PepperDash.Essentials.Devices.Displays
public void VolumeDown(bool pressRelease)
{
throw new NotImplementedException();
#warning need incrementer for these
//Send(VolumeDownCmd);
//throw new NotImplementedException();
//#warning need incrementer for these
SetVolume(_VolumeLevel++);
}
public void VolumeUp(bool pressRelease)
{
throw new NotImplementedException();
//Send(VolumeUpCmd);
//throw new NotImplementedException();
SetVolume(_VolumeLevel--);
}
#endregion