power save - Reduce EMS-ESP energy consumption #3213

This commit is contained in:
proddy
2026-09-01 21:56:36 +02:00
parent e3b36a4084
commit ad62c79a40
10 changed files with 124 additions and 32 deletions
+1
View File
@@ -39,6 +39,7 @@ export interface Settings {
eth_power: number;
eth_phy_addr: number;
eth_clock_mode: number;
eth_10mbit: boolean;
platform: string;
modbus_enabled: boolean;
modbus_port: number;
@@ -820,6 +820,18 @@ const ApplicationSettings = () => {
</Grid>
</Grid>
)}
{data.phy_type !== 0 && (
<BlockFormControlLabel
control={
<Checkbox
checked={data.eth_10mbit}
onChange={updateFormValue}
name="eth_10mbit"
/>
}
label="Force 10Mbit half-duplex"
/>
)}
</>
)}
<Grid container spacing={2} rowSpacing={0}>