mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
add QR checksum back
This commit is contained in:
parent
f3ddce99d5
commit
c452ef90bb
1 changed files with 8 additions and 4 deletions
|
|
@ -598,12 +598,16 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
SendText("xconfiguration userinterface custommessage: \"Scan the QR code with a mobile phone to get started\"");
|
SendText("xconfiguration userinterface custommessage: \"Scan the QR code with a mobile phone to get started\"");
|
||||||
SendText("xconfiguration userinterface osd halfwakemessage: \"Tap the touch panel or scan the QR code with a mobile phone to get started\"");
|
SendText("xconfiguration userinterface osd halfwakemessage: \"Tap the touch panel or scan the QR code with a mobile phone to get started\"");
|
||||||
|
|
||||||
|
var checksum = !String.IsNullOrEmpty(mcBridge.QrCodeChecksum)
|
||||||
|
? String.Format("checksum: {0} ", mcBridge.QrCodeChecksum)
|
||||||
|
: String.Empty;
|
||||||
|
|
||||||
SendText(String.Format(
|
SendText(String.Format(
|
||||||
"xcommand userinterface branding fetch type: branding url: {0}",
|
"xcommand userinterface branding fetch {1}type: branding url: {0}",
|
||||||
mcBridge.QrCodeUrl));
|
mcBridge.QrCodeUrl, checksum));
|
||||||
SendText(String.Format(
|
SendText(String.Format(
|
||||||
"xcommand userinterface branding fetch type: halfwakebranding url: {0}",
|
"xcommand userinterface branding fetch {1}type: halfwakebranding url: {0}",
|
||||||
mcBridge.QrCodeUrl));
|
mcBridge.QrCodeUrl, checksum));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SendBrandingUrl()
|
private void SendBrandingUrl()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue