2
2
// Functions for connecting to BLE device and setting up main service and characteristics //
3
3
// //
4
4
// connect Searches for devices that matches the filter criterias //
5
- // notificationCharacteristicHandler Sets up event listener for the notification characteristic //
5
+ // notificationCharHandler Sets up event listener for the notification characteristic //
6
6
// handleNotification Event handler for changes in the notifications //
7
- // readWriteCharacteristicHandler Sets up the readWriteCharacteristic //
8
- // readFromCharacteristic Function for reading values from the readWriteCharacteristic //
9
- // writeToCharacteristic Function for reading chosen values from the readWriteCharacterstic //
7
+ // readWriteCharHandler Sets up the readWriteCharacteristic //
8
+ // readFromChar Function for reading values from the readWriteCharacteristic //
9
+ // writeToChar Function for reading chosen values from the readWriteCharacterstic //
10
10
11
11
12
12
//* Creatig BLE object
13
13
var ble = {
14
14
/** Declaring the necessary global variables **/
15
15
mainServiceUUID : '00001523-1212-efde-1523-785feabcd123' ,
16
- readWriteCharacteristicUUID : '00001525-1212-efde-1523-785feabcd123' ,
17
- notificationCharacteristicUUID : '00001524-1212-efde-1523-785feabcd123' ,
16
+ readWriteCharUUID : '00001525-1212-efde-1523-785feabcd123' ,
17
+ notificationCharUUID : '00001524-1212-efde-1523-785feabcd123' ,
18
18
bluetoothDevice : '' ,
19
19
mainServer : '' ,
20
20
mainService : '' ,
21
- readWriteCharacteristic : '' ,
22
- notificationCharacteristic : '' ,
21
+ readWriteChar : '' ,
22
+ notificationChar : '' ,
23
23
notificationContent : '' ,
24
24
charVal : new Uint8Array ( 20 ) ,
25
25
prevNotification : '' ,
@@ -31,21 +31,21 @@ var ble = {
31
31
// Searching for Bluetooth devices that match the filter criteria
32
32
console . log ( 'Requesting Bluetooth Device...' ) ;
33
33
navigator . bluetooth . requestDevice (
34
- { filters : [ { services : [ this . mainServiceUUID ] } ] } )
35
- . then ( device => {
36
- this . bluetoothDevice = device ;
37
- // Adding event listener to detect loss of connection (not used for now because of errors on some phones)
38
- //bluetoothDevice.addEventListener('gattserverdisconnected', disconnectHandler);
39
- console . log ( '> Found ' + this . bluetoothDevice . name ) ;
40
- console . log ( 'Connecting to GATT Server...' ) ;
41
- return this . bluetoothDevice . connectGATT ( )
42
- . then ( gattServer => {
43
- this . mainServer = gattServer ;
44
- console . log ( '> Bluetooth Device connected: ' ) ;
45
- this . connectionStatus ( 1 ) ;
34
+ { filters :[ { services : [ this . mainServiceUUID ] } ] } )
35
+ . then ( device => {
36
+ this . bluetoothDevice = device ;
37
+ // Adding event listener to detect loss of connection
38
+ //bluetoothDevice.addEventListener('gattserverdisconnected', disconnectHandler);
39
+ console . log ( '> Found ' + this . bluetoothDevice . name ) ;
40
+ console . log ( 'Connecting to GATT Server...' ) ;
41
+ return this . bluetoothDevice . connectGATT ( )
42
+ . then ( gattServer => {
43
+ this . mainServer = gattServer ;
44
+ console . log ( '> Bluetooth Device connected: ' ) ;
45
+ this . connectionStatus ( 1 ) ;
46
46
47
- } ) ;
48
- } )
47
+ } ) ;
48
+ } )
49
49
50
50
// When matching device is found and selected, get the main service
51
51
. then ( server => {
@@ -58,10 +58,10 @@ var ble = {
58
58
console . log ( '> serviceReturn: ' + service ) ;
59
59
return Promise . all ( [
60
60
// Get all characteristics and call handler functions for both
61
- service . getCharacteristic ( this . readWriteCharacteristicUUID )
62
- . then ( this . readWriteCharacteristicHandler ) ,
63
- service . getCharacteristic ( this . notificationCharacteristicUUID )
64
- . then ( this . notificationCharacteristicHandler )
61
+ service . getCharacteristic ( this . readWriteCharUUID )
62
+ . then ( this . readWriteCharHandler ) ,
63
+ service . getCharacteristic ( this . notificationCharUUID )
64
+ . then ( this . notificationCharHandler )
65
65
] )
66
66
// Print errors to console
67
67
. catch ( error => {
@@ -106,23 +106,23 @@ var ble = {
106
106
} ,
107
107
108
108
/** Function for setting up the notification characteristic **/
109
- notificationCharacteristicHandler : function ( characteristic ) {
109
+ notificationCharHandler : function ( characteristic ) {
110
110
'use strict' ;
111
111
112
112
// Stores the notification characteristic object to ble object for easy access
113
- ble . notificationCharacteristic = characteristic ;
113
+ ble . notificationChar = characteristic ;
114
114
console . log ( 'Notifications started.' ) ;
115
115
116
116
// Initiates event listener for notifications sent from DK
117
- ble . notificationCharacteristic . addEventListener ( 'characteristicvaluechanged' , ble . handleNotification ) ;
117
+ ble . notificationChar . addEventListener ( 'characteristicvaluechanged' , ble . handleNotification ) ;
118
118
return characteristic . startNotifications ( ) ;
119
119
} ,
120
120
121
121
/** Function for handling the read and write characteristic **/
122
- readWriteCharacteristicHandler : function ( characteristic ) {
122
+ readWriteCharHandler : function ( characteristic ) {
123
123
'use strict' ;
124
- // Stores the readWriteCharacteristic to ble object
125
- ble . readWriteCharacteristic = characteristic ;
124
+ // Stores the readWriteChar to ble object
125
+ ble . readWriteChar = characteristic ;
126
126
return 1 ;
127
127
} ,
128
128
@@ -155,14 +155,14 @@ var ble = {
155
155
156
156
/** Function for reading from the read and write characteristic **/
157
157
// Parameter byteOffset int, 0-19 or string, 'all'
158
- readFromCharacteristic : function ( byteOffset ) {
158
+ readFromChar : function ( byteOffset ) {
159
159
'use strict' ;
160
160
161
161
// Data is sent from DK as a 20 byte long Uint8Array, stores in the data variable
162
162
var data = new Uint8Array ( 20 ) ;
163
163
164
- // Calls the redValue method in the readWriteCharacteristic
165
- ble . readWriteCharacteristic . readValue ( )
164
+ // Calls the redValue method in the readWriteChar
165
+ ble . readWriteChar . readValue ( )
166
166
. then ( value => {
167
167
// DataView is received from DK
168
168
value = value . buffer ? value : new DataView ( value ) ;
@@ -191,21 +191,21 @@ var ble = {
191
191
/** Function for writing to the read and write characteristic **/
192
192
// Parameters byteOffset int, 0-19
193
193
// value int, 0-255
194
- writeToCharacteristic : function ( byteOffset , value ) {
194
+ writeToChar : function ( byteOffset , value ) {
195
195
'use strict' ;
196
196
197
197
ble . charVal [ byteOffset ] = value ;
198
198
199
- ble . readWriteCharacteristic . writeValue ( ble . charVal ) ;
199
+ ble . readWriteChar . writeValue ( ble . charVal ) ;
200
200
} ,
201
201
202
202
/** Function for writing array to the read and write characteristic **/
203
203
// Parameters charVal Uint8Array, maximum 20 bytes long
204
- writeArrayToCharacteristic : function ( charVal ) {
204
+ writeArrayToChar : function ( charVal ) {
205
205
'use strict' ;
206
206
207
207
if ( game . writePermission ) {
208
- ble . readWriteCharacteristic . writeValue ( charVal ) ;
208
+ ble . readWriteChar . writeValue ( charVal ) ;
209
209
return 1 ;
210
210
} else {
211
211
return 0 ;
@@ -224,7 +224,7 @@ var ble = {
224
224
return 0 ;
225
225
} else {
226
226
game . writePermission = 0 ;
227
- return ble . readWriteCharacteristic . writeValue ( charVal )
227
+ return ble . readWriteChar . writeValue ( charVal )
228
228
. then ( writeReturn => {
229
229
game . writePermission = true ;
230
230
game . priorityPacket = 0 ;
0 commit comments