SetArrayTemperature
Sets the target temperature of the array. Once set, the controller will maintain the array the the specified temperature.
Syntax
void SetArrayTemperature( temp );
Parameters
double temp
The target temperature ( in Celcius ).
Returns
None
Required Headers
CController.h
Namespace
arc
Throws
std::runtime_error
Remarks
Exceptions can be caught using a try/catch block.
Example
        // 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.