We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9d31f commit bb47a98Copy full SHA for bb47a98
src/main/pythontemplates/pog.ts
@@ -20,6 +20,10 @@ except OSError as e:
20
print("starting keyboard %s (%s)" % (config["name"], config["id"]))
21
22
def pinValid(pin):
23
+ if pin == "":
24
+ return False
25
+ if config["pinPrefix"] == "quickpin":
26
+ pin = f'{eval(pin)}'
27
if pin in [f'board.{alias}' for alias in dir(board)]:
28
return True
29
else:
0 commit comments