Instrument Neutral Distributed Interface INDI  2.0.2
deepskydad_fr1.h
Go to the documentation of this file.
1 /*******************************************************************************
2  Copyright(c) 2020 Jasem Mutlaq. All rights reserved.
3 
4  Pegasus Falcon Rotator
5 
6  This program is free software; you can redistribute it and/or modify it
7  under the terms of the GNU General Public License as published by the Free
8  Software Foundation; either version 2 of the License, or (at your option)
9  any later version.
10 
11  This program is distributed in the hope that it will be useful, but WITHOUT
12  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14  more details.
15 
16  You should have received a copy of the GNU Library General Public License
17  along with this library; see the file COPYING.LIB. If not, write to
18  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  Boston, MA 02110-1301, USA.
20 
21  The full GNU General Public License is included in this distribution in the
22  file called LICENSE.
23 *******************************************************************************/
24 
25 #pragma once
26 
27 #include "indirotator.h"
28 #include <stdint.h>
29 
31 {
32  public:
33  DeepSkyDadFR1();
34 
35  typedef enum { Slow, Fast } SpeedMode;
36  typedef enum { One, Two, Four, Eight } StepSize;
37 
38  virtual bool initProperties() override;
39  virtual bool updateProperties() override;
40 
41  virtual bool ISNewSwitch(const char *dev, const char *name, ISState *states, char *names[], int n) override;
42 
43  protected:
44  const char *getDefaultName() override;
45 
46  // Event loop
47  virtual void TimerHit() override;
48 
49  // Rotator Overrides
50  virtual IPState MoveRotator(double angle) override;
51  virtual bool ReverseRotator(bool enabled) override;
52  virtual bool SyncRotator(double angle) override;
53  virtual bool AbortRotator() override;
54 
55  private:
56  bool Handshake() override;
57 
61  bool getInitialStatusData();
62  bool getStatusData();
63 
67 
68  bool sendCommand(const char *cmd, char *res);
69 
73 
74  // Firmware version
75  ITextVectorProperty FirmwareTP;
76  IText FirmwareT[1] {};
77 
78  // Speed mode
79  ISwitch SpeedModeS[2];
80  ISwitchVectorProperty SpeedModeSP;
81  // Step size
82  ISwitch StepSizeS[4];
83  ISwitchVectorProperty StepSizeSP;
84 };
virtual bool AbortRotator() override
AbortRotator Abort all motion.
virtual bool initProperties() override
Initilize properties initial state and value. The child class must implement this function.
virtual bool updateProperties() override
updateProperties is called whenever there is a change in the CONNECTION status of the driver....
virtual bool ISNewSwitch(const char *dev, const char *name, ISState *states, char *names[], int n) override
Process the client newSwitch command.
virtual void TimerHit() override
Callback function to be called once SetTimer duration elapses.
virtual IPState MoveRotator(double angle) override
MoveRotator Go to specific angle.
virtual bool ReverseRotator(bool enabled) override
ReverseRotator Reverse the direction of the rotator. CW is usually the normal direction,...
const char * getDefaultName() override
virtual bool SyncRotator(double angle) override
SyncRotator Set current angle as the supplied angle without moving the rotator.
ISState
Switch state.
Definition: indiapi.h:150
IPState
Property state.
Definition: indiapi.h:160
__u8 cmd[4]
Definition: pwc-ioctl.h:2
One switch descriptor.
One text descriptor.
Switch vector property descriptor.
Definition: indiapi.h:367
Text vector property descriptor.
Definition: indiapi.h:246