-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathBPLib.h
153 lines (139 loc) · 4.72 KB
/
BPLib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
BPLib.h - Library for communication with RN-42 HID Bluetooth module
Created by Basel Al-Rudainy, 6 april 2013.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
*/
#ifndef BPLib_h
#define BPLib_h
#include "Arduino.h"
//Bluetooth Modes
#define BP_MODE_COMMAND "$$$"
#define BP_MODE_EXITCOMMAND "---\r\n"
#define BP_MODE_SPP "S~,0\r\n"
#define BP_MODE_HID "S~,6\r\n"
#define BP_MODE_AUTOCONNECT "SM,6\r\n"
#define BP_MODE_MANUCONNECT "SM,4\r\n"
#define BP_MODE_STATUS "SO,/#\r\n"
//Bluetooth status messages
#define BP_STAT_CMD "CMD\r\n"
#define BP_STAT_END "END\r\n"
#define BP_STAT_ACK "AOK\r\n"
#define BP_STAT_REBOOT "Reboot!\r\n"
//Bluetooth GET commands
#define BP_GET_HID "GH\n"
//Bluetooth system commands
#define BP_REBOOT "R,1\r\n"
#define BP_RECONNECT "C\r\n"
#define BP_CHANGE_NAME "SN,"
//Bluetooth protocol types
#define BP_SPP_SPP "AW\r\n"
#define BP_HID_KEYBOARD "SH,0200\r\n"
#define BP_HID_MOUSE "SH,0220\r\n"
#define BP_HID_GAMEPAD "SH,0210\r\n"
#define BP_HID_JOYSTICK "SH,0240\r\n"
#define BP_HID_COMBO "SH,0230\r\n"
// KEYBOARD Scan Codes
#define BP_KEY_ENTER 0x28 //Enter
#define BP_KEY_LEFT_ARROW 0x50 //Left arrow
#define BP_KEY_DOWN_ARROW 0x51 //Down arrow
#define BP_KEY_ENTER 0x28 //Enter
#define BP_KEY_UP_ARROW 0x52 //Up arrow
#define BP_KEY_ESCAPE 0x29 //Escape
#define BP_KEY_CAPSLOCK 0x39 //CapsLock
#define BP_KEY_SCROLLLOCK 0x47 //ScrollLock
#define BP_KEY_BREAK_PAUSE 0x48 //Break-pause
#define BP_KEY_NUMLOCK 0x53 //NumLock
#define BP_KEY_TOGGLE_IPHONE_VIRTUAL_KEYBOARD 0x65 //Toggle iPhone Virtual Keyboard
#define BP_KEY_LEFT_CONTROL 0xE0 //Left Control
#define BP_KEY_LEFT_SHIFT 0xE1 //Left Shift
#define BP_KEY_LEFT_ALT 0xE2 //Left Alt
#define BP_KEY_LEFT_GUI 0xE3 //Left GUI
#define BP_KEY_RIGHT_CONTROL 0xE4 //Right Control
#define BP_KEY_RIGHT_SHIFT 0xE5 //Right Shift
#define BP_KEY_RIGHT_ALT 0xE6 //Right Alt
#define BP_KEY_RIGHT_GUI 0xE7 //Right GUI
#define BP_KEY_F1 0x3A //F1
#define BP_KEY_F2 0x3B //F2
#define BP_KEY_F3 0x3C //F3
#define BP_KEY_F4 0x3D //F4
#define BP_KEY_F5 0x3E //F5
#define BP_KEY_F6 0x3F //F6
#define BP_KEY_F7 0x40 //F7
#define BP_KEY_F8 0x41 //F8
#define BP_KEY_F9 0x42 //F9
#define BP_KEY_F10 0x43 //F10
#define BP_KEY_F11 0x44 //F11
#define BP_KEY_F12 0x45 //F12
//KEYBOARD MODEFIER CODES
#define BP_MOD_RIGHT_GUI (1<<7)
#define BP_MOD_RIGHT_ALT (1<<6)
#define BP_MOD_RIGHT_SHIFT (1<<5)
#define BP_MOD_RIGHT_CTRL (1<<4)
#define BP_MOD_LEFT_GUI (1<<3)
#define BP_MOD_LEFT_ALT (1<<2)
#define BP_MOD_LEFT_SHIFT (1<<1)
#define BP_MOD_LEFT_CTRL (1<<0)
#define BP_MOD_NOMOD 0x00
//Mouse Codes
#define BP_MOUSE_BTN_LEFT (1<<0)
#define BP_MOUSE_BTN_RIGHT (1<<1)
#define BP_MOUSE_BTN_MIDDLE (1<<2)
//GAMEPAD/JOYSTICK BUTTON CODES
//ST == First button combination (BTN0 to BTN7)
#define BP_GAMEJOY_ST_BTN0 (1<<0)
#define BP_GAMEJOY_ST_BTN1 (1<<1)
#define BP_GAMEJOY_ST_BTN2 (1<<2)
#define BP_GAMEJOY_ST_BTN3 (1<<3)
#define BP_GAMEJOY_ST_BTN4 (1<<4)
#define BP_GAMEJOY_ST_BTN5 (1<<5)
#define BP_GAMEJOY_ST_BTN6 (1<<6)
#define BP_GAMEJOY_ST_BTN7 (1<<7)
#define BP_GAMEJOY_ST_NOBTN 0x00
//ND = Second button combination (BTN0 to BTN7)
#define BP_GAMEJOY_ND_BTN0 (1<<0)
#define BP_GAMEJOY_ND_BTN1 (1<<1)
#define BP_GAMEJOY_ND_BTN2 (1<<2)
#define BP_GAMEJOY_ND_BTN3 (1<<3)
#define BP_GAMEJOY_ND_BTN4 (1<<4)
#define BP_GAMEJOY_ND_BTN5 (1<<5)
#define BP_GAMEJOY_ND_BTN6 (1<<6)
#define BP_GAMEJOY_ND_BTN7 (1<<7)
#define BP_GAMEJOY_ND_NOBTN 0x00
class BPLib
{
public:
BPLib();
byte begin(char BP_Mode[], char BP_Type[]);
byte sendCmd(char BP_CMD[]);
void sendByte(byte rawData);
void sendChar(char rawData);
void sendInt(int rawData);
void sendFloat(float rawData);
void sendLong(long rawData);
void sendString(char rawData[]);
byte readRaw();
int available();
void keyboardPrint(char BP_MSG[]);
void keyboardPress(byte BP_KEY,byte BP_MOD);
void keyboardReleaseAll();
void mouseClick(byte BP_BUTTON);
void mouseMove(signed int BP_X,signed int BP_Y);
void mouseWheel(signed int BP_WHEEL);
void mousePress(byte BP_BUTTON);
void mouseReleaseAll();
void gameJoyPress(byte BP_ST_BTN, byte BP_ND_BTN);
void gameJoyMove(signed int BP_X1,signed int BP_Y1,signed int BP_X2,signed int BP_Y2);
void gameJoyReleaseAll();
byte connected();
byte changeName(char BP_NAME[]);
private:
byte get(char BP_STAT[], byte strlen);
};
#endif