Home AMX User Forum AMX General Discussion

JVC PTZ Camera

Guys,

Has anybody got any experiencs with JVC CCTC PTZ cameras (TK-C655), i am looking for the basic commands for this unit but AMX uk and JVC never reply to email/calls. I had some code for a previous camera that i tried but all it seems to do is put the camera in autopan and i cannot get it out of this mode. I have detailed the commands i am using below and any help advice would be greater appreciated.

Thanks

BUTTON_EVENT[TP,435] //pan right
{
PUSH:
{
SEND_STRING CAMERA,"$83,$45,$00,$01"
}
RELEASE:
{
SEND_STRING CAMERA,"$82,$45,$02"
}
}
BUTTON_EVENT[TP,433] //tilt up
{
PUSH:
{
SEND_STRING CAMERA,"$83,$45,$03,$01"
}
RELEASE:
{
SEND_STRING CAMERA,"$82,$45,$05"
}
}
BUTTON_EVENT[TP,434] //tilt down
{
PUSH:
{
SEND_STRING CAMERA,"$83,$45,$04,$01"
}
RELEASE:
{
SEND_STRING CAMERA,"$82,$45,$05"
}
}
Sign In or Register to comment.