Instrument Neutral Distributed Interface INDI  2.0.2
qhycfw3.h
Go to the documentation of this file.
1 /*******************************************************************************
2  Copyright(c) 2017 Jasem Mutlaq. All rights reserved.
3 
4  Tru Technology Filter Wheel
5 
6  This library is free software; you can redistribute it and/or
7  modify it under the terms of the GNU Library General Public
8  License version 2 as published by the Free Software Foundation.
9 
10  This library is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Library General Public License for more details.
14 
15  You should have received a copy of the GNU Library General Public License
16  along with this library; see the file COPYING.LIB. If not, write to
17  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  Boston, MA 02110-1301, USA.
19 *******************************************************************************/
20 
21 #pragma once
22 
23 #include "indifilterwheel.h"
24 
25 class QHYCFW3 : public INDI::FilterWheel
26 {
27  public:
28  QHYCFW3();
29 
30  protected:
31  const char *getDefaultName() override;
32  bool initProperties() override;
33 
34  bool Handshake() override;
35  bool SelectFilter(int) override;
36 };
bool initProperties() override
Initilize properties initial state and value. The child class must implement this function.
Definition: qhycfw3.cpp:42
bool Handshake() override
perform handshake with device to check communication
Definition: qhycfw3.cpp:55
QHYCFW3()
Definition: qhycfw3.cpp:31
const char * getDefaultName() override
Definition: qhycfw3.cpp:37
bool SelectFilter(int) override
Select a new filter position.
Definition: qhycfw3.cpp:161