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
794 B
C++
31 lines
794 B
C++
// Output_7856.h: interface for the COutput_7856 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OUTPUT_7856_H__C047F760_46EB_44CC_A05A_78B815955096__INCLUDED_)
|
|
#define AFX_OUTPUT_7856_H__C047F760_46EB_44CC_A05A_78B815955096__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OutputBase.h"
|
|
|
|
class COutput_7856 : public COutputBase
|
|
{
|
|
public:
|
|
COutput_7856(const COutputSetting &Setting);
|
|
virtual ~COutput_7856();
|
|
|
|
// 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_7856_H__C047F760_46EB_44CC_A05A_78B815955096__INCLUDED_)
|