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 171 172 173
|
/*******************************************************************************
Copyright(c) 2011 Gerry Rozema. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*******************************************************************************/
#include "indifocuser.h"
#include <string.h>
INDI::Focuser::Focuser()
{
FocusSpeedNP = new INumberVectorProperty;
FocusTimerNP = new INumberVectorProperty;
FocusMotionSP = new ISwitchVectorProperty;
}
INDI::Focuser::~Focuser()
{
delete FocusSpeedNP;
delete FocusTimerNP;
delete FocusMotionSP;
}
bool INDI::Focuser::initProperties()
{
DefaultDriver::initProperties(); // let the base class flesh in what it wants
IUFillNumber(&FocusSpeedN[0],"FOCUS_SPEED_VALUE","Focus Speed","%3.0f",0.0,255.0,1.0,255.0);
IUFillNumberVector(FocusSpeedNP,FocusSpeedN,1,deviceName(),"FOCUS_SPEED","Speed",MAIN_CONTROL_TAB,IP_RW,60,IPS_OK);
IUFillNumber(&FocusTimerN[0],"FOCUS_TIMER_VALUE","Focus Timer","%4.0f",0.0,1000.0,10.0,1000.0);
IUFillNumberVector(FocusTimerNP,FocusTimerN,1,deviceName(),"FOCUS_TIMER","Timer",MAIN_CONTROL_TAB,IP_RW,60,IPS_OK);
IUFillSwitch(&FocusMotionS[0],"FOCUS_INWARD","Focus In",ISS_ON);
IUFillSwitch(&FocusMotionS[1],"FOCUS_OUTWARD","Focus Out",ISS_OFF);
IUFillSwitchVector(FocusMotionSP,FocusMotionS,2,deviceName(),"FOCUS_MOTION","Direction",MAIN_CONTROL_TAB,IP_RW,ISR_1OFMANY,60,IPS_OK);
return 0;
}
void INDI::Focuser::ISGetProperties (const char *dev)
{
// First we let our parent populate
DefaultDriver::ISGetProperties(dev);
return;
}
bool INDI::Focuser::updateProperties()
{
if(isConnected())
{
// Now we add our focusser specific stuff
defineSwitch(FocusMotionSP);
defineNumber(FocusSpeedNP);
defineNumber(FocusTimerNP);
} else
{
deleteProperty(FocusMotionSP->name);
deleteProperty(FocusSpeedNP->name);
deleteProperty(FocusTimerNP->name);
}
return true;
}
bool INDI::Focuser::ISNewNumber (const char *dev, const char *name, double values[], char *names[], int n)
{
// first check if it's for our device
if(strcmp(dev,deviceName())==0)
{
// This is for our device
// Now lets see if it's something we process here
if(strcmp(name,"FOCUS_TIMER")==0)
{
// Ok, gotta move the focusser now
FocusDirection dir;
int speed;
int t;
//IDLog(")
// first we get all the numbers just sent to us
FocusTimerNP->s=IPS_OK;
IUUpdateNumber(FocusTimerNP,values,names,n);
// Now lets find what we need for this move
speed=FocusSpeedN[0].value;
if(FocusMotionS[0].s==ISS_ON) dir=FOCUS_INWARD;
else dir=FOCUS_OUTWARD;
t=FocusTimerN[0].value;
if (Move(dir,speed,t) == false)
FocusTimerNP->s = IPS_ALERT;
IDSetNumber(FocusTimerNP,NULL);
return true;
}
if(strcmp(name,"FOCUS_SPEED")==0)
{
FocusSpeedNP->s=IPS_OK;
IUUpdateNumber(FocusSpeedNP,values,names,n);
// Update client display
IDSetNumber(FocusSpeedNP,NULL);
return true;
}
}
return DefaultDriver::ISNewNumber(dev,name,values,names,n);
}
bool INDI::Focuser::ISNewSwitch (const char *dev, const char *name, ISState *states, char *names[], int n)
{
if(strcmp(dev,deviceName())==0)
{
// This one is for us
if(strcmp(name,"FOCUS_MOTION")==0)
{
// client is telling us what to do with focus direction
FocusMotionSP->s=IPS_OK;
IUUpdateSwitch(FocusMotionSP,states,names,n);
// Update client display
IDSetSwitch(FocusMotionSP,NULL);
return true;
}
}
// Nobody has claimed this, so, ignore it
return DefaultDriver::ISNewSwitch(dev,name,states,names,n);
}
bool INDI::Focuser::ISNewText (const char *dev, const char *name, char *texts[], char *names[], int n)
{
return DefaultDriver::ISNewText(dev, name, texts, names, n);
}
void INDI::Focuser::ISSnoopDevice (XMLEle *root)
{
return;
}
bool INDI::Focuser::Move(FocusDirection dir, int speed, int duration)
{
// This should be a virtual function, because the low level hardware class
// must override this
// but it's much easier early development if the method actually
// exists for now
return false;
}
|