Volume rocker working

This commit is contained in:
watsonb8
2019-06-16 21:36:12 -04:00
parent e49af64a18
commit 8c3a02fa85
2 changed files with 21 additions and 3 deletions

View File

@@ -198,9 +198,15 @@ export class ControlUnit implements IAccessory {
.on("set", callbackify(this.onSetVolumeSelector));
}
//TODO
/**
* Event handler for SET volume characteristic
*/
private onSetVolumeSelector = async (value: any) => {
this.log(`set volume + ${value}`);
switch (value) {
case 0: this.dataProvider.volumeUp(this.name); break;
case 1: this.dataProvider.volumeDown(this.name); break;
}
}
/*********************