build(boards): 所有板卡执行 npm run build:prod

This commit is contained in:
王立帮
2025-10-24 22:43:34 +08:00
parent 17ad6d31a0
commit 00d1c46627
176 changed files with 31780 additions and 17439 deletions

View File

@@ -0,0 +1,17 @@
"""
ESP-DL
MicroPython library for the ESP-DL(Inherit C module)
=======================================================
@dahanzimin From the Mixly Team
"""
from espdl import *
def analyze(results, keys=None, num=0):
if keys is None:
return results is not None
if results:
if keys == "len":
return len(results)
else:
return results[num][keys]