You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
786 B
C++
31 lines
786 B
C++
// Output_HSL.h: interface for the COutput_HSL class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_)
|
|
#define AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OutputBase.h"
|
|
|
|
class COutput_HSL : public COutputBase
|
|
{
|
|
public:
|
|
COutput_HSL(const COutputSetting &Setting);
|
|
virtual ~COutput_HSL();
|
|
|
|
// method to set analog output voltage
|
|
BOOL SetVoltage(double dVoltage);
|
|
|
|
// method to set output to OFF
|
|
BOOL Off();
|
|
|
|
// method to set output to ON
|
|
BOOL On();
|
|
};
|
|
|
|
#endif // !defined(AFX_OUTPUT_HSL_H__E01C8F2B_CE41_4969_BBBB_F3EB7A86A372__INCLUDED_)
|