-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
237 lines (203 loc) · 6.38 KB
/
App.tsx
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import React, {useState} from 'react';
import {
TouchableOpacity,
Button,
PermissionsAndroid,
View,
Text,
Switch
} from 'react-native';
import base64 from 'react-native-base64';
import {BleManager, Device} from 'react-native-ble-plx';
import {styles} from './Styles/styles';
import {LogBox} from 'react-native';
import {Buffer} from 'buffer';
LogBox.ignoreLogs(['new NativeEventEmitter']); // Ignore log notification by message
LogBox.ignoreAllLogs(); //Ignore all log notifications
const BLTManager = new BleManager();
const SERVICE_UUID ='1b0bf442-2a40-48ea-9b75-e5237f207420';
const MESSAGE_UUID = 'ccbdc5b7-8699-4335-9a1f-47f20480d3ed';
const MESSAGE_SEND = 'test yz mobile app';
function StringToBool(input: String) {
if (input == '1') {
return true;
} else {
return false;
}
}
function BoolToString(input: boolean) {
if (input == true) {
return '1';
} else {
return '0';
}
}
export default function App() {
const [isEnabled, setIsEnabled] = useState(false);
const [isEnabled2, setIsEnabled2] = useState(false);
//const toggleSwitch = () => setIsEnabled(previousState => !previousState);
const toggleSwitch2 = () => setIsEnabled2(previousState => !previousState);
//Is a device connected?
const [isConnected, setIsConnected] = useState(false);
//What device is connected?
const [connectedDevice, setConnectedDevice] = useState<Device>();
const [message, setMessage] = useState('Nothing Yet');
// Scans availbale BLT Devices and then call connectDevice
async function scanDevices() {
PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title: 'Permission Localisation Bluetooth',
message: 'Requirement for Bluetooth',
buttonNeutral: 'Later',
buttonNegative: 'Cancel',
buttonPositive: 'OK',
},
).then(answere => {
console.log('scanning');
// display the Activityindicator
BLTManager.startDeviceScan(null, null, (error, scannedDevice) => {
if (error) {
console.error(error);
}
if (scannedDevice && scannedDevice.name == 'NimBLE-Arduino') {
BLTManager.stopDeviceScan();
connectDevice(scannedDevice);
}
});
// stop scanning devices after 5 seconds
setTimeout(() => {
BLTManager.stopDeviceScan();
}, 5000);
});
}
// handle the device disconnection (poorly)
async function disconnectDevice() {
console.log('Disconnecting start');
if (connectedDevice != null) {
const isDeviceConnected = await connectedDevice.isConnected();
if (isDeviceConnected) {
BLTManager.cancelTransaction('messagetransaction');
BLTManager.cancelTransaction('nightmodetransaction');
BLTManager.cancelDeviceConnection(connectedDevice.id).then(() =>
console.log('DC completed'),
);
}
const connectionStatus = await connectedDevice.isConnected();
if (!connectionStatus) {
setIsConnected(false);
}
}
}
//Function to send data to ESP32
async function setToggleSwitch(value: boolean) {
setIsEnabled(previousState => !previousState);
BLTManager.writeCharacteristicWithResponseForDevice(
connectedDevice?.id,
SERVICE_UUID,
MESSAGE_UUID,
base64.encode(value.toString()),
).then(characteristic => {
console.log('ToggleSwitch is changed to :', base64.decode(characteristic.value));
})
.catch((error) => {
console.log(error);
throw error;
});
}
//Connect the device and start monitoring characteristics
async function connectDevice(device: Device) {
console.log('connecting to Device:', device.name);
device
.connect()
.then(device => {
setConnectedDevice(device);
setIsConnected(true);
return device.discoverAllServicesAndCharacteristics();
})
.then(device => {
// Set what to do when DC is detected
BLTManager.onDeviceDisconnected(device.id, (error, device) => {
console.log('Device DC');
setIsConnected(false);
});
/*
//write inital values
device.writeCharacteristicWithoutResponseForService(
SERVICE_UUID,
MESSAGE_UUID,
Buffer.from(MESSAGE_SEND).toString('base64'),
)
.then((result) => {
console.log(result);
})
.catch((error) => {
console.log(error);
throw error;
});
*/
console.log('Connection established');
});
}
return (
<View>
<View style={{paddingBottom: 200}}></View>
{/* Title */}
<View style={styles.rowView}>
<Text style={styles.titleText}>BLE Example</Text>
</View>
<View style={{paddingBottom: 20}}></View>
{/* Connect Button */}
<View style={styles.rowView}>
<TouchableOpacity style={{width: 120}}>
{!isConnected ? (
<Button
title="Connect"
onPress={() => {
scanDevices();
}}
disabled={false}
/>
) : (
<Button
title="Disonnect"
onPress={() => {
disconnectDevice();
}}
disabled={false}
/>
)}
</TouchableOpacity>
</View>
<View style={{paddingBottom: 20}}></View>
<View style={styles.rowView}>
<Text style={styles.rowView}>Led #1</Text>
<Switch
trackColor={{ false: "#767577", true: "#81b0ff" }}
thumbColor={isEnabled ? "#f5dd4b" : "#f4f3f4"}
ios_backgroundColor="#3e3e3e"
onValueChange={newValue => {
setToggleSwitch((newValue));
}}
value={isEnabled}
/>
</View>
<View style={{paddingBottom: 20}}></View>
<View style={styles.rowView}>
<Text style={styles.rowView}>Led #2</Text>
<Switch
trackColor={{ false: "#767577", true: "#81b0ff" }}
thumbColor={isEnabled2 ? "#f5dd4b" : "#f4f3f4"}
ios_backgroundColor="#3e3e3e"
onValueChange={toggleSwitch2}
value={isEnabled2}
/>
</View>
{/* Monitored Value */}
<View style={styles.rowView}>
<Text style={styles.baseText}>{message}</Text>
</View>
<View style={{paddingBottom: 20}}></View>
</View>
);
}