@@ -203,7 +203,7 @@ def ishex(s):
203
203
204
204
# get_fixed_label_dict() converts the list of strings to per endpoint dictionaries.
205
205
# example input : ['0/orientation/up', '1/orientation/down', '2/orientation/down']
206
- # example outout : {'0': [{'orientation': 'up'}], '1': [{'orientation': 'down'}], '2': [{'orientation': 'down'}]}
206
+ # example output : {'0': [{'orientation': 'up'}], '1': [{'orientation': 'down'}], '2': [{'orientation': 'down'}]}
207
207
208
208
209
209
def get_fixed_label_dict (fixed_labels ):
@@ -227,8 +227,13 @@ def get_fixed_label_dict(fixed_labels):
227
227
return fl_dict
228
228
229
229
# get_supported_modes_dict() converts the list of strings to per endpoint dictionaries.
230
- # example input : ['0/label1/1/"1\0x8000, 2\0x8000", 1/label2/1/"1\0x8000, 2\0x8000"']
231
- # example outout : {'1': [{'Label': 'label1', 'Mode': 0, 'Semantic_Tag': [{'value': 1, 'mfgCode': 32768}, {'value': 2, 'mfgCode': 32768}]}, {'Label': 'label2', 'Mode': 1, 'Semantic_Tag': [{'value': 1, 'mfgCode': 32768}, {'value': 2, 'mfgCode': 32768}]}]}
230
+ # example with semantic tags
231
+ # input : ['0/label1/1/"1\0x8000, 2\0x8000" 1/label2/1/"1\0x8000, 2\0x8000"']
232
+ # output : {'1': [{'Label': 'label1', 'Mode': 0, 'Semantic_Tag': [{'value': 1, 'mfgCode': 32768}, {'value': 2, 'mfgCode': 32768}]}, {'Label': 'label2', 'Mode': 1, 'Semantic_Tag': [{'value': 1, 'mfgCode': 32768}, {'value': 2, 'mfgCode': 32768}]}]}
233
+
234
+ # example without semantic tags
235
+ # input : ['0/label1/1 1/label2/1']
236
+ # output : {'1': [{'Label': 'label1', 'Mode': 0, 'Semantic_Tag': []}, {'Label': 'label2', 'Mode': 1, 'Semantic_Tag': []}]}
232
237
233
238
234
239
def get_supported_modes_dict (supported_modes ):
@@ -240,8 +245,10 @@ def get_supported_modes_dict(supported_modes):
240
245
label = mode_label_strs [1 ]
241
246
ep = mode_label_strs [2 ]
242
247
243
- semantic_tag_strs = mode_label_strs [3 ].split (', ' )
244
- semantic_tags = [{"value" : int (v .split ('\\ ' )[0 ]), "mfgCode" : int (v .split ('\\ ' )[1 ], 16 )} for v in semantic_tag_strs ]
248
+ semantic_tags = ''
249
+ if (len (mode_label_strs ) == 4 ):
250
+ semantic_tag_strs = mode_label_strs [3 ].split (', ' )
251
+ semantic_tags = [{"value" : int (v .split ('\\ ' )[0 ]), "mfgCode" : int (v .split ('\\ ' )[1 ], 16 )} for v in semantic_tag_strs ]
245
252
246
253
mode_dict = {"Label" : label , "Mode" : int (mode ), "Semantic_Tag" : semantic_tags }
247
254
0 commit comments