double temp |
The target temperature ( in Celcius ). |
// This code demonstrates how use SetArrayTemperature()
// to set the array target temperature to -60 C.
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
// Set the array temperature to -60 C
cController.SetArrayTemperature( -60 );
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.