1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
#if 0
Simple Client Tutorial
Demonstration of libindi v0.7 capabilities.
Copyright (C) 2010 Jasem Mutlaq (mutlaqja@ikarustech.com)
This library is free software;
you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation;
either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY;
without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library;
if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110 - 1301 USA
#endif
/** \file tutorial_client.cpp
\brief Construct a basic INDI client that demonstrates INDI::Client capabilities. This client must be used with tutorial_three device "Simple CCD".
\author Jasem Mutlaq
\example tutorial_client.cpp
Construct a basic INDI client that demonstrates INDI::Client capabilities. This client must be used with tutorial_three device "Simple CCD".
To run the example, you must first run tutorial_three:
\code indiserver tutorial_three \endcode
Then in another terminal, run the client:
\code tutorial_client \endcode
The client will connect to the CCD driver and attempts to change the CCD temperature.
*/
#include "tutorial_client.h"
#include <basedevice.h>
#include <cstring>
#include <fstream>
#include <iostream>
#include <memory>
int main(int, char *[])
{
MyClient myClient;
myClient.setServer("localhost", 7624);
myClient.connectServer();
myClient.setBLOBMode(B_ALSO, "Simple CCD", nullptr);
myClient.enableDirectBlobAccess("Simple CCD", nullptr);
std::cout << "Press Enter key to terminate the client.\n";
std::cin.ignore();
}
/**************************************************************************************
**
***************************************************************************************/
MyClient::MyClient()
{
// wait for the availability of the device
watchDevice("Simple CCD", [this](INDI::BaseDevice device)
{
mSimpleCCD = device; // save device
// wait for the availability of the "CONNECTION" property
device.watchProperty("CONNECTION", [this](INDI::Property)
{
IDLog("Connecting to INDI Driver...\n");
connectDevice("Simple CCD");
});
// wait for the availability of the "CCD_TEMPERATURE" property
device.watchProperty("CCD_TEMPERATURE", [this](INDI::PropertyNumber property)
{
if (mSimpleCCD.isConnected())
{
IDLog("CCD is connected.\n");
setTemperature(-20);
}
// call lambda function if property changed
property.onUpdate([property, this]()
{
IDLog("Receving new CCD Temperature: %g C\n", property[0].getValue());
if (property[0].getValue() == -20)
{
IDLog("CCD temperature reached desired value!\n");
takeExposure(1);
}
});
});
// wait for the availability of the "CCD1" property
device.watchProperty("CCD1", [](INDI::PropertyBlob property)
{
// call lambda function if property changed
property.onUpdate([property]()
{
// Save FITS file to disk
std::ofstream myfile;
myfile.open("ccd_simulator.fits", std::ios::out | std::ios::binary);
myfile.write(static_cast<char *>(property[0].getBlob()), property[0].getBlobLen());
myfile.close();
IDLog("Received image, saved as ccd_simulator.fits\n");
});
});
});
}
/**************************************************************************************
**
***************************************************************************************/
void MyClient::setTemperature(double value)
{
INDI::PropertyNumber ccdTemperature = mSimpleCCD.getProperty("CCD_TEMPERATURE");
if (!ccdTemperature.isValid())
{
IDLog("Error: unable to find Simple CCD, CCD_TEMPERATURE property...\n");
return;
}
IDLog("Setting temperature to %g C.\n", value);
ccdTemperature[0].setValue(value);
sendNewProperty(ccdTemperature);
}
/**************************************************************************************
**
***************************************************************************************/
void MyClient::takeExposure(double seconds)
{
INDI::PropertyNumber ccdExposure = mSimpleCCD.getProperty("CCD_EXPOSURE");
if (!ccdExposure.isValid())
{
IDLog("Error: unable to find CCD Simulator CCD_EXPOSURE property...\n");
return;
}
// Take a 1 second exposure
IDLog("Taking a %g second exposure.\n", seconds);
ccdExposure[0].setValue(seconds);
sendNewProperty(ccdExposure);
}
/**************************************************************************************
**
***************************************************************************************/
void MyClient::newMessage(INDI::BaseDevice baseDevice, int messageID)
{
if (!baseDevice.isDeviceNameMatch("Simple CCD"))
return;
IDLog("Recveing message from Server:\n"
" %s\n\n",
baseDevice.messageQueue(messageID).c_str());
}
|