GetArrayTemperature
Returns the current array temperature ( if available ).
Syntax
double GetArrayTemperature();
Parameters
None
Returns
double - The current temperature of the array.
Required Headers
CController.h
Namespace
arc
Throws
std::runtime_error
Remarks
None
Example
        // This code demonstrates how to read the
        // array temperature.

        #include <iostream.h>
        #include "CController.h"
        using namespace std;
        using namespace arc;

        CController cController;

        // .... open driver, initialize, etc ....

        try {
            double gArrTemp = cController.GetArrayTemperature();
            cout << "Array temperature: " << gArrTemp << endl;
        }
        catch ( std::exception &e )
        {
            cerr << "Exception Occurred: " << e.what() << endl;
        }

© Astronomical Research Cameras, Inc.