我已经创建了一个蓝牙输入设备(触控笔),并希望将其连接到Mac和Windows(将来最好是Linux)。
是否有理想的软件/语言来创建一个跨平台的应用程序?我已经考虑过为它们编写本地应用程序,但我不认为应用程序会如此复杂,以至于这是绝对必要的。
应用程序将接受BT设备的输入数据,并使用它在屏幕上移动光标,并提供点击和压力功能。
提前感谢。
我不知道你的设备是怎么设置的。
但是,如果您设法将其放在PIC(例如Arduino ATMega328)上,至少有一个串行接口,您可以通过通用串行总线 (USB)将其连接到PC。
之后,您将能够打开一个管道到您的设备在许多语言。
C
对于Linux和OS X都是一个很好的选择,使用POSIX库将使它更容易。
我写的这个片段在网上得到了一些提示,可能会帮助你开始
int init_port (const char * port_name, int baud) {
/* Main vars */
struct termios toptions;
int stream;
/* Port data */
speed_t brate = baud;
if ((stream = apri_porta(port_name)) < 1)
return 0;
if (tcgetattr(stream, &toptions) < 0) {
printf("Error");
return 0;
}
/* INITIALIZING BAUD RATE */
cfsetispeed(&toptions, brate);
cfsetospeed(&toptions, brate);
// IMPORTANT BLOCK OF OPTIONS TO MAKE TX AND RX WORKING
toptions.c_cflag &= ~PARENB;
toptions.c_cflag &= ~CSTOPB;
toptions.c_cflag &= ~CSIZE;
toptions.c_cflag |= CS8;
toptions.c_cflag &= ~CRTSCTS;
toptions.c_cflag |= CREAD | CLOCAL;
toptions.c_iflag &= ~(IXON | IXOFF | IXANY);
toptions.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
toptions.c_oflag &= ~OPOST;
toptions.c_cc[VMIN] = 0;
toptions.c_cc[VTIME] = 0;
tcsetattr(stream, TCSANOW, &toptions);
if (tcsetattr(stream, TCSAFLUSH, &toptions) < 0) {
printf("Error");
return 0;
}
return stream;
}
int open_port (const char * port_name) {
int stream;
stream = open(port_name, O_RDWR | O_NONBLOCK );
if (stream == -1) {
printf("apri_porta: Impossibile aprire stream verso '%s'n", port_name);
return -1;
}
return stream;
}
int close_port (int stream) {
return (close(stream));
}
int write_to_port(int stream, char * str) {
int len = (int)strlen(str);
int n = (int)write(stream, str, len);
if (n != len)
return 0;
return 1;
}
int read_from_port(int fd, char * buf, int buf_max, char until) {
int timeout = 5000;
char b[1];
int i=0;
do {
int n = (int)read(fd, b, 1);
if( n==-1) return -1;
if( n==0 ) {
usleep( 1 * 1000 );
timeout--;
continue;
}
buf[i] = b[0];
i++;
} while( b[0] != until && i < buf_max && timeout > 0 );
buf[i] = 0; // null terminate the string
return 0;
}
Objective-C
(OS X)有一个很好的库,它像一个魅力(ORSSerialPort)
然而,如果你想有一个跨平台的解决方案, Java
是Windows, OS X和Linux的最佳选择。
我希望这能帮助你和其他人开始。
如果你需要进一步的帮助,请随时给我发消息。
问好。