Dear all,
Is there somebody that has experience with the zoom rooms native controls and an epson projector.
I find already how to power on and power off the projector (see code below), but to power on the first time you need some Hex code (id: start). You need to run this before your can use the power on or power off button.
I also have seen that there is a possibility to use response filter but I don’t find any info about this, this could also work that I could check if there is a response of “:” from the epson projector, this means that the projector is in ESC/VP21 mode, and if so that then the power on buttons are visible, else only the connect button is visible and vice versa.
{
“adapters”: [
{
“model”: “GenericNetworkAdapter”,
“ip”: “tcp://192.168.1.150:3629”,
“ports”: [
{
“id”: “seminar_beamer”,
“name”: “Seminar beamer”,
“methods”: [
{
“id”: “power”,
“name”: “Projector”,
“command”: “%\x0d”,
“params”: [
{
“id”: “start”,
“name”: “Connect”,
“value”: “\x45\x53\x43\x2F\x56\x50\x2E\x6E\x65\x74\x10\x03\x00\x00\x00\x00”
},
{
“id”: “on”,
“name”: “ON”,
“value”: “PWR ON”
},
{
“id”: “off”,
“name”: “OFF”,
“value”: “PWR OFF”
}
],
“type”: “actions”
},
{
“id”: “sources”,
“name”: “Sources”,
“command”: “SOURCE %\x0d”,
“params”: [
{
“id”: “zoom_meeting”,
“name”: “Zoom Meeting”,
“value”: “30”
},
{
“id”: “presenting_only”,
“name”: “Presenting only”,
“value”: “A0”
}
],
“type”: “actions”
}
]
}
]
}
],
“styles”: [
“seminar_beamer.main_method=power”,
“seminar_beamer.icon=icon_projector”
]
}