editable string param

This commit is contained in:
pakintada@gmail.com 2024-01-11 22:37:03 +07:00
parent 2ff6a8675b
commit ada2cccf81
3 changed files with 236 additions and 166 deletions

View file

@ -89,3 +89,7 @@ export class StringParam {
export var stringParamsDefinition: { [key: string]: string } = {
'esp-v2-press-value': 'Current 100 x mA ( 10 - 24 )'
}
export var conditionTests: { [key: string]: (arg: any) => boolean } = {
'not-zero': (arg: any) => arg != 0
}