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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
package com.ihealth.ihealthlibrary;
import android.text.TextUtils;
import android.util.Log;
import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.bridge.WritableArray;
import com.facebook.react.bridge.WritableMap;
import com.facebook.react.module.annotations.ReactModule;
import com.ido.ble.protocol.model.QuickSportMode;
import com.ihealth.communication.control.Am5Control;
import com.ihealth.communication.manager.iHealthDevicesManager;
import com.ihealth.communication.model.AM5Alarm;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@ReactModule(name = "AM5Module")
public class AM5Module extends iHealthBaseModule {
private static final String modelName = "AM5Module";
private static final String TAG = AM5Module.modelName;
private static final String EVENT_NOTIFY = "event_notify_am5";
public AM5Module(ReactApplicationContext reactContext) {
super(TAG, reactContext);
}
@Override
public String getName() {
return modelName;
}
@Override
public Map<String, Object> getConstants() {
Map<String, Object> map = new HashMap<>();
map.put("Event_Notify", EVENT_NOTIFY);
return map;
}
@Override
public void handleNotify(String mac, String deviceType, String action, String message) {
WritableMap params = Arguments.createMap();
params.putString("action", action);
params.putString("mac", mac);
params.putString("type", deviceType);
if (!TextUtils.isEmpty(message)) {
Utils.jsonToMap(message, params);
}
sendEvent(EVENT_NOTIFY, params);
}
private static Am5Control getControl(String mac) {
return iHealthDevicesManager.getInstance().getAm5Control(mac);
}
@ReactMethod
public void bindDevice(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.bindDevice();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void unBindDevice(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.unBindDevice();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void isBind(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.isBind();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void getBasicInfo(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.getBasicInfo();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void getMacAddress(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.getMacAddress();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void getLiveData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.getLiveData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void getActivityCount(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.getActivityCount();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setTime(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.setTime();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
// @ReactMethod
// public void setTime(String mac, int year, int month, int day, int hour, int minute, int second, int week) {
// Am5Control control = getControl(mac);
// if (control != null) {
// control.setTime(year, month, day, hour, minute, second, week);
// } else {
// Log.e(TAG, "Can not find AM5 Control mac:" + mac);
// }
// }
@ReactMethod
public void setAlarm(String mac, List<AM5Alarm> alarmList) {
Am5Control control = getControl(mac);
if (control != null) {
control.setAlarm(alarmList);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setGoal(String mac, String goal) {
Am5Control control = getControl(mac);
if (control != null) {
control.setGoal(goal);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setLongSit(String mac, int startHour, int startMinute,
int endHour,int endMinute, int interval,
boolean isOn, boolean[] repeat){
Am5Control control = getControl(mac);
if (control != null) {
control.setLongSit(startHour, startMinute, endHour,
endMinute, interval, isOn, repeat);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setUserInfo(String mac, int birthYear, int birthMonth, int birthDay, int weight, int height, int sex) {
Am5Control control = getControl(mac);
if (control != null) {
control.setUserInfo(birthYear, birthMonth, birthDay, weight, height, sex);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setUnit(String mac, int type, int unit) {
Am5Control control = getControl(mac);
if (control != null) {
control.setUnit(type, unit);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void reboot(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.reboot();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setHandWearMode(String mac, int mode) {
Am5Control control = getControl(mac);
if (control != null) {
control.setHandWearMode(mode);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setHeartRateInterval(String mac, int burn, int aerobic, int limit, int userMaxHR) {
Am5Control control = getControl(mac);
if (control != null) {
control.setHeartRateInterval(burn, aerobic, limit, userMaxHR);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setHeartRateMeasureMode(String mac, int hasTimeRange, int measureMode, int startHour, int startMin, int endHour, int endMin) {
Am5Control control = getControl(mac);
if (control != null) {
control.setHeartRateMeasureMode(hasTimeRange, measureMode, startHour, startMin, endHour, endMin);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setNotDisturb(String mac, boolean isOpen, int startHour, int startMin, int endHour, int endMin) {
Am5Control control = getControl(mac);
if (control != null) {
control.setNotDisturb(isOpen, startHour, startMin, endHour, endMin);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setSportMode(String mac, QuickSportMode quickSportMode) {
Am5Control control = getControl(mac);
if (control != null) {
control.setSportMode(quickSportMode);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setIncomingCallInfo(String mac, String name, String phoneNumber) {
Am5Control control = getControl(mac);
if (control != null) {
control.setIncomingCallInfo(name, phoneNumber);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setStopInComingCall(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.setStopInComingCall();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void setNewMessageDetailInfo(String mac, int type, String name, String number, String content) {
Am5Control control = getControl(mac);
if (control != null) {
control.setNewMessageDetailInfo(type, name, number, content);
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void syncConfigData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.syncConfigData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void stopSyncConfigData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.stopSyncConfigData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void syncHealthData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.syncHealthData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void stopSyncHealthData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.stopSyncHealthData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void syncActivityData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.syncActivityData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void stopSyncActivityData(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.stopSyncActivityData();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void disconnect(String mac) {
Am5Control control = getControl(mac);
if (control != null) {
control.disconnect();
} else {
Log.e(TAG, "Can not find AM5 Control mac:" + mac);
}
}
@ReactMethod
public void getAllConnectedDevices() {
List<String> devices = iHealthDevicesManager.getInstance().getAm5Devices();
WritableMap params = Arguments.createMap();
if (devices.size() > 0) {
WritableArray array = Arguments.createArray();
for (String device : devices) {
array.pushString(device);
}
params.putArray("devices", array);
params.putString("action", ACTION_GET_ALL_CONNECTED_DEVICES);
}
sendEvent(EVENT_NOTIFY, params);
}
}
|