None |
// This code demonstrates how to test if a
// controller is set for binning.
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
if ( cController.IsBinningSet() )
cout << "Binning mode: SET!" << endl;
else
cout << "Binning mode: NOT SET!" << endl;
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.