Home AMX User Forum AMX General Discussion
Options

ELMO Doc Cam

I am trying to control a HV-5000XG. I am sending it the following command and getting no response. Can someone with elmo experience tell me if I am doing this right?

SEND_STRING DOCCAM,"$02,$50,$4C,$30,$20,$20,$30"}

This command should turn the light on the elmo off.

Comments

  • Options
    FrankieFrankie Posts: 71
    Here is what I have for the Elmo Doc Cam

    DOC_CAM_AUTO_FOCUS[] = {$02,'A','F','0',' ',' ',$03}
    DOC_CAM_INPUT_MAIN[] = {$02,'A','V','0',' ',' ',$03}
    DOC_CAM_INPUT_RGB1[] = {$02,'A','V','1',' ',' ',$03}
    DOC_CAM_INPUT_RGB2[] = {$02,'A','V','2',' ',' ',$03}
    DOC_CAM_UPPER_LIGHT[] = {$02,'P','L','2',' ',' ',$03}
    DOC_CAM_LOWER_LIGHT[] = {$02,'P','L','1',' ',' ',$03}
    DOC_CAM_LIGHT_OFF[] = {$02,'P','L','0',' ',' ',$03}
    DOC_CAM_FOCUS_NEAR[] = {$02,'F','O','+',' ',' ',$03}
    DOC_CAM_FOCUS_FAR[] = {$02,'F','O','-',' ',' ',$03}
    DOC_CAM_FOCUS_STOP[] = {$02,'F','O','0',' ',' ',$03}
    DOC_CAM_FOCUS_AUTO[] = {$02,'A','F','0',' ',' ',$03}
    DOC_CAM_ZOOM_TELE[] = {$02,'Z','O','+',' ',' ',$03}
    DOC_CAM_ZOOM_WIDE[] = {$02,'Z','O','-',' ',' ',$03}
    DOC_CAM_ZOOM_STOP[] = {$02,'Z','O','0',' ',' ',$03}
    DOC_CAM_IRIS_OPEN[] = {$02,'I','R','+',' ',' ',$03}
    DOC_CAM_IRIS_CLOSE[] = {$02,'I','R','-',' ',' ',$03}
    DOC_CAM_IRIS_STOP[] = {$02,'I','R','0',' ',' ',$03}
    DOC_CAM_IRIS_AUTO[] = {$02,'I','R','1',' ',' ',$03}
  • Options
    alanhalanh Posts: 30
    Elmo

    Your command is correct apart from the final charactor that should be $03 not $30 or you could use ascii "$02,'PL0 ',$03" to turn the light off, but both commands are indentical so use what you are happier with.

    Alan
  • Options
    alanhalanh Posts: 30
    ELMO

    In the ascii command i posted there was 2 spaces after the PL0 and then the etx $03 command but for some reason that appeared to have disappeared, probably my spell checker or something like that.
Sign In or Register to comment.