send step as string to avoid js-rounding issue for 0.1

This commit is contained in:
MichaelDvP
2023-11-29 12:06:56 +01:00
parent 03b6ebd861
commit f83f22a6fb
2 changed files with 4 additions and 8 deletions

View File

@@ -130,7 +130,7 @@ export interface DeviceValue {
c?: string; // command, optional
l?: string[]; // list, optional
h?: string; // help text, optional
s?: number; // steps for up/down, optional
s?: string; // steps for up/down, optional
m?: number; // min, optional
x?: number; // max, optional
}