VISCA Camera Control Instructions
DOC-USR-0115-01 DRAFT
___________________________________________________________________________________________
Z3 Technology, LLC
♦
100 N 8
th
ST, STE 250
♦
Lincoln, NE 68508-1369 USA
♦
+1.402.323.0702
9
2.5
Example Controller Software
If you do not have camera control software it is quite straight-forward to write your own. Below is a
simple example application on how to send VISCA commands from a Windows PC to the Z3 unit.
The following example code connects to the TCP socket of the Z3 unit and is capable of sending several
VISCA commands to the Z3 unit. The interface looks like the following:
The application code is as follows:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <fcntl.h>
#include <time.h>
#include <sys/types.h>
#include<winsock2.h>
#include <conio.h>
#define FALSE 0
#define TRUE 1
Figure 5 Running the Example Application