mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
min/max to web value edit
This commit is contained in:
@@ -239,7 +239,7 @@ const DashboardData: FC = () => {
|
|||||||
sx={{ width: '30ch' }}
|
sx={{ width: '30ch' }}
|
||||||
type={deviceValue.u ? 'number' : 'text'}
|
type={deviceValue.u ? 'number' : 'text'}
|
||||||
onChange={updateValue(setDeviceValue)}
|
onChange={updateValue(setDeviceValue)}
|
||||||
inputProps={{ step: deviceValue.s }}
|
inputProps={deviceValue.u ? { min: deviceValue.m, max: deviceValue.x, step: deviceValue.s } : {}}
|
||||||
InputProps={{
|
InputProps={{
|
||||||
startAdornment: <InputAdornment position="start">{DeviceValueUOM_s[deviceValue.u]}</InputAdornment>
|
startAdornment: <InputAdornment position="start">{DeviceValueUOM_s[deviceValue.u]}</InputAdornment>
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -133,6 +133,8 @@ export interface DeviceValue {
|
|||||||
l: string[]; // list
|
l: string[]; // list
|
||||||
h?: string; // help text
|
h?: string; // help text
|
||||||
s?: string; // steps for up/down
|
s?: string; // steps for up/down
|
||||||
|
m?: string; // min
|
||||||
|
x?: string; // max
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DeviceData {
|
export interface DeviceData {
|
||||||
|
|||||||
@@ -741,6 +741,11 @@ void EMSdevice::generate_values_web(JsonObject & output) {
|
|||||||
} else if (divider < 0) {
|
} else if (divider < 0) {
|
||||||
obj["s"] = Helpers::render_value(s, (-1) * divider, 0);
|
obj["s"] = Helpers::render_value(s, (-1) * divider, 0);
|
||||||
}
|
}
|
||||||
|
int16_t dv_set_min, dv_set_max;
|
||||||
|
if (dv.get_min_max(dv_set_min, dv_set_max)) {
|
||||||
|
obj["m"] = Helpers::render_value(s, dv_set_min, 0);
|
||||||
|
obj["x"] = Helpers::render_value(s, dv_set_max, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user