0 Star 0 Fork 1

ianaxe/vrpn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vrpn_Wanda.h 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef VRPN_WANDA
#define VRPN_WANDA
#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 is a driver for the Wanda device, which is an analog and
// button device. You can find out more at http://home.att.net/~glenmurray/
// This driver was written at Brown University.
class VRPN_API vrpn_Wanda :public vrpn_Serial_Analog, public vrpn_Button_Filter {
public:
vrpn_Wanda(char * name, vrpn_Connection * c, char * portname,int
baud, double);
void mainloop(void);
protected:
void report_new_button_info();
void report_new_valuator_info();
private:
double last_val_timestamp;
double resetval[vrpn_CHANNEL_MAX];
long MAX_TIME_INTERVAL;
int bytesread;
int first;
int index;
static int dbug_wanda;
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ianaxe/vrpn.git
git@gitee.com:ianaxe/vrpn.git
ianaxe
vrpn
vrpn
master

搜索帮助