1
1
part of flutter_ble_lib;
2
2
3
3
abstract class _BleErrorMetadata {
4
- static const String ERROR_CODE = "errorCode" ;
5
- static const String ATT_ERROR_CODE = "attErrorCode" ;
6
- static const String ANDROID_ERROR_CODE = "androidErrorCode" ;
7
- static const String REASON = "reason" ;
8
- static const String DEVICE_ID = "deviceID" ;
9
- static const String SERVICE_UUID = "serviceUUID" ;
10
- static const String CHARACTERISTIC_UUID = "characteristicUUID" ;
11
- static const String DESCRIPTOR_UUID = "descriptorUUID" ;
12
- static const String INTERNAL_MESSAGE = "internalMessage" ;
4
+ static const String errorCode = "errorCode" ;
5
+ static const String attErrorCode = "attErrorCode" ;
6
+ static const String androidErrorCode = "androidErrorCode" ;
7
+ static const String reason = "reason" ;
8
+ static const String deviceId = "deviceID" ;
9
+ static const String serviceUuid = "serviceUUID" ;
10
+ static const String characteristicUuid = "characteristicUUID" ;
11
+ static const String descriptorUuid = "descriptorUUID" ;
12
+ static const String internalMessage = "internalMessage" ;
13
13
}
14
14
15
15
class BleError {
@@ -20,21 +20,21 @@ class BleError {
20
20
String reason;
21
21
22
22
String deviceID;
23
- String serviceUUID ;
24
- String characteristicUUID ;
25
- String descriptorUUID ;
23
+ String serviceUuid ;
24
+ String characteristicUuid ;
25
+ String descriptorUuid ;
26
26
String internalMessage;
27
27
28
28
BleError .fromJson (Map <String , dynamic > json)
29
- : errorCode = BleErrorCode (json[_BleErrorMetadata .ERROR_CODE ]),
30
- attErrorCode = json[_BleErrorMetadata .ATT_ERROR_CODE ],
31
- androidErrorCode = json[_BleErrorMetadata .ANDROID_ERROR_CODE ],
32
- reason = json[_BleErrorMetadata .REASON ],
33
- deviceID = json[_BleErrorMetadata .DEVICE_ID ],
34
- serviceUUID = json[_BleErrorMetadata .SERVICE_UUID ],
35
- characteristicUUID = json[_BleErrorMetadata .CHARACTERISTIC_UUID ],
36
- descriptorUUID = json[_BleErrorMetadata .DESCRIPTOR_UUID ],
37
- internalMessage = json[_BleErrorMetadata .INTERNAL_MESSAGE ];
29
+ : errorCode = BleErrorCode (json[_BleErrorMetadata .errorCode ]),
30
+ attErrorCode = json[_BleErrorMetadata .attErrorCode ],
31
+ androidErrorCode = json[_BleErrorMetadata .androidErrorCode ],
32
+ reason = json[_BleErrorMetadata .reason ],
33
+ deviceID = json[_BleErrorMetadata .deviceId ],
34
+ serviceUuid = json[_BleErrorMetadata .serviceUuid ],
35
+ characteristicUuid = json[_BleErrorMetadata .characteristicUuid ],
36
+ descriptorUuid = json[_BleErrorMetadata .descriptorUuid ],
37
+ internalMessage = json[_BleErrorMetadata .internalMessage ];
38
38
39
39
@override
40
40
String toString () => "BleError ("
@@ -45,57 +45,57 @@ class BleError {
45
45
"reason: $reason , "
46
46
"internal message: $internalMessage , "
47
47
"device ID: $deviceID , "
48
- "service UUID: $serviceUUID , "
49
- "characteristic UUID: $characteristicUUID , "
50
- "descriptor UUID: $descriptorUUID )" ;
48
+ "service UUID: $serviceUuid , "
49
+ "characteristic UUID: $characteristicUuid , "
50
+ "descriptor UUID: $descriptorUuid )" ;
51
51
}
52
52
53
53
class BleErrorCode {
54
- static const int UnknownError = 0 ;
55
- static const int BluetoothManagerDestroyed = 1 ;
56
- static const int OperationCancelled = 2 ;
57
- static const int OperationTimedOut = 3 ;
58
- static const int OperationStartFailed = 4 ;
59
- static const int InvalidIdentifiers = 5 ;
54
+ static const int unknownError = 0 ;
55
+ static const int bluetoothManagerDestroyed = 1 ;
56
+ static const int operationCancelled = 2 ;
57
+ static const int operationTimedOut = 3 ;
58
+ static const int operationStartFailed = 4 ;
59
+ static const int invalidIdentifiers = 5 ;
60
60
61
- static const int BluetoothUnsupported = 100 ;
62
- static const int BluetoothUnauthorized = 101 ;
63
- static const int BluetoothPoweredOff = 102 ;
64
- static const int BluetoothInUnknownState = 103 ;
65
- static const int BluetoothResetting = 104 ;
66
- static const int BluetoothStateChangeFailed = 105 ;
61
+ static const int bluetoothUnsupported = 100 ;
62
+ static const int bluetoothUnauthorized = 101 ;
63
+ static const int bluetoothPoweredOff = 102 ;
64
+ static const int bluetoothInUnknownState = 103 ;
65
+ static const int bluetoothResetting = 104 ;
66
+ static const int bluetoothStateChangeFailed = 105 ;
67
67
68
- static const int DeviceConnectionFailed = 200 ;
69
- static const int DeviceDisconnected = 201 ;
70
- static const int DeviceRSSIReadFailed = 202 ;
71
- static const int DeviceAlreadyConnected = 203 ;
72
- static const int DeviceNotFound = 204 ;
73
- static const int DeviceNotConnected = 205 ;
74
- static const int DeviceMTUChangeFailed = 206 ;
68
+ static const int deviceConnectionFailed = 200 ;
69
+ static const int deviceDisconnected = 201 ;
70
+ static const int deviceRSSIReadFailed = 202 ;
71
+ static const int deviceAlreadyConnected = 203 ;
72
+ static const int deviceNotFound = 204 ;
73
+ static const int deviceNotConnected = 205 ;
74
+ static const int deviceMTUChangeFailed = 206 ;
75
75
76
- static const int ServicesDiscoveryFailed = 300 ;
77
- static const int IncludedServicesDiscoveryFailed = 301 ;
78
- static const int ServiceNotFound = 302 ;
79
- static const int ServicesNotDiscovered = 303 ;
76
+ static const int servicesDiscoveryFailed = 300 ;
77
+ static const int includedServicesDiscoveryFailed = 301 ;
78
+ static const int serviceNotFound = 302 ;
79
+ static const int servicesNotDiscovered = 303 ;
80
80
81
- static const int CharacteristicsDiscoveryFailed = 400 ;
82
- static const int CharacteristicWriteFailed = 401 ;
83
- static const int CharacteristicReadFailed = 402 ;
84
- static const int CharacteristicNotifyChangeFailed = 403 ;
85
- static const int CharacteristicNotFound = 404 ;
86
- static const int CharacteristicsNotDiscovered = 405 ;
87
- static const int CharacteristicInvalidDataFormat = 406 ;
81
+ static const int characteristicsDiscoveryFailed = 400 ;
82
+ static const int characteristicWriteFailed = 401 ;
83
+ static const int characteristicReadFailed = 402 ;
84
+ static const int characteristicNotifyChangeFailed = 403 ;
85
+ static const int characteristicNotFound = 404 ;
86
+ static const int characteristicsNotDiscovered = 405 ;
87
+ static const int characteristicInvalidDataFormat = 406 ;
88
88
89
- static const int DescriptorsDiscoveryFailed = 500 ;
90
- static const int DescriptorWriteFailed = 501 ;
91
- static const int DescriptorReadFailed = 502 ;
92
- static const int DescriptorNotFound = 503 ;
93
- static const int DescriptorsNotDiscovered = 504 ;
94
- static const int DescriptorInvalidDataFormat = 505 ;
95
- static const int DescriptorWriteNotAllowed = 506 ;
89
+ static const int descriptorsDiscoveryFailed = 500 ;
90
+ static const int descriptorWriteFailed = 501 ;
91
+ static const int descriptorReadFailed = 502 ;
92
+ static const int descriptorNotFound = 503 ;
93
+ static const int descriptorsNotDiscovered = 504 ;
94
+ static const int descriptorInvalidDataFormat = 505 ;
95
+ static const int descriptorWriteNotAllowed = 506 ;
96
96
97
- static const int ScanStartFailed = 600 ;
98
- static const int LocationServicesDisabled = 601 ;
97
+ static const int scanStartFailed = 600 ;
98
+ static const int locationServicesDisabled = 601 ;
99
99
100
100
int value;
101
101
0 commit comments