You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.0 KiB

/*
* Copyright (C) 2009 by Jonathan Naylor, G4KLX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program 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 General Public License for more details.
*/
#ifndef K8055Controller_H
#define K8055Controller_H
#include "HardwareController.h"
#if !defined(_WIN32)
#include <libusb-1.0/libusb.h>
class CK8055Controller : public IHardwareController {
public:
CK8055Controller(unsigned int address);
virtual ~CK8055Controller();
virtual bool open();
virtual void getDigitalInputs(bool& inp1, bool& inp2, bool& inp3, bool& inp4, bool& inp5);
virtual void setDigitalOutputs(bool outp1, bool outp2, bool outp3, bool outp4, bool outp5, bool outp6, bool outp7, bool outp8);
virtual void close();
private:
unsigned int m_address;
bool m_outp1;
bool m_outp2;
bool m_outp3;
bool m_outp4;
bool m_outp5;
bool m_outp6;
bool m_outp7;
bool m_outp8;
libusb_context* m_context;
libusb_device_handle* m_handle;
};
#else
// Windows stub — K8055 requires the Velleman K8055D.dll which is not bundled.
// Instantiating this class on Windows will log an error and open() will return false.
class CK8055Controller : public IHardwareController {
public:
CK8055Controller(unsigned int address);
virtual ~CK8055Controller();
virtual bool open();
virtual void getDigitalInputs(bool& inp1, bool& inp2, bool& inp3, bool& inp4, bool& inp5);
virtual void setDigitalOutputs(bool outp1, bool outp2, bool outp3, bool outp4, bool outp5, bool outp6, bool outp7, bool outp8);
virtual void close();
private:
unsigned int m_address;
};
#endif
#endif

Powered by TurnKey Linux.