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-11-10 11:27 AM
I've got the controls working on the Zoom controller to turn the projector on and off manually, but I'm trying to create rules to turn the projector off after a meeting has concluded and I can't for the life of me get it to work. I tried using the example JSON as a template to edit my room JSON, but it kept throwing syntax errors.
Here's my JSON (Edited out anything identifying):
{
"about": {
"app": "Org",
"version": "V1",
"url": "website",
"created": "Wed, 01 Nov 2023 20:29:36 GMT"
},
"adapters": [
{
"model": "GenericNetworkAdapter",
"ip": "tcp://ipaddress:port",
"ports": [
{
"id": "projector",
"name": "Projector Power Control",
"methods": [
{
"id": "power",
"name": "Power Control",
"command": "op power.%",
"params": [
{
"id": "poweron",
"name": "Power On",
"value": "on"
},
{
"id": "poweroff",
"name": "Power Off",
"value": "off"
}
],
"type": "actions"
}
]
}
]
}
],
"styles": [
"1.icon=icon_projector"
],
"rules": {
"meeting_started": [],
"meeting_ended": [
"projector.power.off"
],
"zr_meeting_ring_started": [],
"zr_meeting_ring_ended": [
"projector.power.off"
],
"microphone_muted": [],
"microphone_unmuted": [],
"video_started": [],
"video_stopped": [],
"operation_time_started": [],
"operation_time_ended": [
"projector.power.off"
]
}
}
Solved! Go to Solution.
2023-11-11 06:56 AM
If you're running into syntax errors (and not functional / communication errors), I'd suggest starting with Control Concepts' [generously] free ZR Room Controls JSON generator - this should give you clean syntax and just allow you to plug in the necessary values and/or modify after the fact:
https://controlconcepts.net/zoom/
If you're still having issues after trying the generator, send me a DM and I can review your JSON file.
2023-11-11 06:56 AM
If you're running into syntax errors (and not functional / communication errors), I'd suggest starting with Control Concepts' [generously] free ZR Room Controls JSON generator - this should give you clean syntax and just allow you to plug in the necessary values and/or modify after the fact:
https://controlconcepts.net/zoom/
If you're still having issues after trying the generator, send me a DM and I can review your JSON file.
2023-11-15 09:51 AM
This was incredible! Thank you so much for this tool. Absolutely solved my issue.