mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-09-13 13:44:10 +00:00
power save - Reduce EMS-ESP energy consumption #3213
This commit is contained in:
@@ -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}>
|
||||
|
||||
Reference in New Issue
Block a user