mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
feat(essentials): Format update for command
This commit is contained in:
parent
1e65c961c6
commit
b8442e7048
1 changed files with 3 additions and 1 deletions
|
|
@ -3461,7 +3461,9 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
|
||||
public void RecordingPromptAcknowledgement(bool agree)
|
||||
{
|
||||
SendText(string.Format("zCommand Agree Recording: {0}", agree ? "on" : "off"));
|
||||
var command = string.Format("zCommand Agree Recording: {0}", agree ? "on" : "off");
|
||||
//Debug.Console(2, this, "Sending agree: {0} {1}", agree, command);
|
||||
SendText(command);
|
||||
}
|
||||
|
||||
public void StartRecording()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue