Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2023-05-17 09:32 AM
I'd like to create a Room Controls JSON file that turns on and off a Samsung display. The hex string requires both a Power data field (0 is off, 1 is on) and a checksum; the checksum will obviously depend on the value of the Power data field.
If I wanted to use parameters in my methods definitions, how do I specify both the data and the checksum?
===
From Samsung:
All communications take place in hexadecimals. The checksum is calculated by adding up
all values except the header. If a checksum adds up to be more than 2 digits as shown below
(11+FF+01+01=112), the first digit is removed
Solved! Go to Solution.
2023-05-30 12:05 PM
If you needed a different checksum at the tail of the command, you wouldn't be able to use the modulus sign, but you could just as easily build two separate full strings (one for each power state). I think that's your question, but please feel free to clarify if not
2023-05-25 07:42 AM
Any thoughts at all? Or isn't this possible?
2023-05-30 12:05 PM
If you needed a different checksum at the tail of the command, you wouldn't be able to use the modulus sign, but you could just as easily build two separate full strings (one for each power state). I think that's your question, but please feel free to clarify if not
2023-05-30 12:07 PM
That's exactly what I meant. Thanks for the confirmation.
Henry