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.
22 lines
335 B
C++
22 lines
335 B
C++
#include "Serial.h"
|
|
#include "Global.h"
|
|
#include "GlobalMember.h"
|
|
#include "GlobalMessage.h"
|
|
#pragma once
|
|
class CJoyKeybordControl
|
|
{
|
|
public:
|
|
CJoyKeybordControl(void);
|
|
~CJoyKeybordControl(void);
|
|
private:
|
|
CSerial m_Serial;
|
|
public:
|
|
// 串口初始化并开始接受数据
|
|
void OnInitJoyKeybord();
|
|
// 串口关闭
|
|
void OnDestoryJoyKeybord();
|
|
|
|
|
|
};
|
|
|