Skip to content

Commit 4fe0df0

Browse files
[ESP32] Allowing empty semantic tags list in SupportedModes attribute of ModeSelect (project-chip#28324)
* [ESP32] Allowing empty semantic tags list in SupportedModes attribute of ModeSelect * Restyled by autopep8 --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 6e9b15c commit 4fe0df0

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

scripts/tools/generate_esp32_chip_factory_bin.py

+12-5
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def ishex(s):
203203

204204
# get_fixed_label_dict() converts the list of strings to per endpoint dictionaries.
205205
# 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'}]}
207207

208208

209209
def get_fixed_label_dict(fixed_labels):
@@ -227,8 +227,13 @@ def get_fixed_label_dict(fixed_labels):
227227
return fl_dict
228228

229229
# 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': []}]}
232237

233238

234239
def get_supported_modes_dict(supported_modes):
@@ -240,8 +245,10 @@ def get_supported_modes_dict(supported_modes):
240245
label = mode_label_strs[1]
241246
ep = mode_label_strs[2]
242247

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]
245252

246253
mode_dict = {"Label": label, "Mode": int(mode), "Semantic_Tag": semantic_tags}
247254

0 commit comments

Comments
 (0)