1 Star 0 Fork 1

upczap/vrpn

forked from ianaxe/vrpn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vrpn_UNC_Joystick.h 974 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef VRPN_JOYSTICK
#define VRPN_JOYSTICK
#include "vrpn_Analog.h" // for vrpn_CHANNEL_MAX, etc
#include "vrpn_Button.h" // for vrpn_Button_Filter
#include "vrpn_Configure.h" // for VRPN_API
class VRPN_API vrpn_Connection;
// This class runs the UNC custom serial joystick. It includes two
// buttons, a slider, and two 3-axis joysticks. It is based on a
// single-board computer. This driver is based on the px_sjoy.c
// code.
class VRPN_API vrpn_Joystick :public vrpn_Serial_Analog, public vrpn_Button_Filter {
public:
vrpn_Joystick(char * name, vrpn_Connection * c, char * portname,int
baud, double);
void mainloop(void);
protected:
int get_report();
void report(struct timeval current_time);
void reset();
void parse(int, int reset_rest_pos = 0);
private:
unsigned char serialbuf[32];
double restval[vrpn_CHANNEL_MAX]; // Initial value of each channel
unsigned long MAX_TIME_INTERVAL;
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jari/vrpn.git
[email protected]:jari/vrpn.git
jari
vrpn
vrpn
master

搜索帮助