mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
text changes
This commit is contained in:
@@ -109,7 +109,7 @@ class MqttSettingsForm extends React.Component<MqttSettingsFormProps> {
|
|||||||
/>
|
/>
|
||||||
<TextField
|
<TextField
|
||||||
name="client_id"
|
name="client_id"
|
||||||
label="Client ID (optional)"
|
label="Client ID"
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
value={data.client_id}
|
value={data.client_id}
|
||||||
@@ -220,7 +220,7 @@ class MqttSettingsForm extends React.Component<MqttSettingsFormProps> {
|
|||||||
onChange={handleValueChange('ha_climate_format')}
|
onChange={handleValueChange('ha_climate_format')}
|
||||||
margin="normal"
|
margin="normal"
|
||||||
>
|
>
|
||||||
<MenuItem value={1}>Use Current temperature (default)</MenuItem>
|
<MenuItem value={1}>Use Current temperature</MenuItem>
|
||||||
<MenuItem value={2}>Use Setpoint temperature</MenuItem>
|
<MenuItem value={2}>Use Setpoint temperature</MenuItem>
|
||||||
<MenuItem value={3}>Always set to 0</MenuItem>
|
<MenuItem value={3}>Always set to 0</MenuItem>
|
||||||
</SelectValidator>
|
</SelectValidator>
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
<Box bgcolor="info.main" p={2} mt={2} mb={2}>
|
<Box bgcolor="info.main" p={2} mt={2} mb={2}>
|
||||||
<Typography variant="body1">
|
<Typography variant="body1">
|
||||||
<i>
|
<i>
|
||||||
consult the
|
Refer to the
|
||||||
<Link
|
<Link
|
||||||
target="_blank"
|
target="_blank"
|
||||||
href="https://emsesp.github.io/docs/#/Configure-firmware32?id=ems-esp-settings"
|
href="https://emsesp.github.io/docs/#/Configure-firmware32?id=ems-esp-settings"
|
||||||
@@ -121,7 +121,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
>
|
>
|
||||||
{' documentation'}
|
{' documentation'}
|
||||||
</Link>
|
</Link>
|
||||||
for help explaining the settings below
|
for information on each setting
|
||||||
</i>
|
</i>
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
@@ -207,7 +207,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
<Typography variant="body2">
|
<Typography variant="body2">
|
||||||
<i>
|
<i>
|
||||||
Select a pre-configured board layout to automatically set the GPIO
|
Select a pre-configured board layout to automatically set the GPIO
|
||||||
pins, or set your own custom configuration
|
pins. Select "Custom..." to view or manually edit the values.
|
||||||
</i>
|
</i>
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
@@ -417,7 +417,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
value="low_clock"
|
value="low_clock"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
label="Use lower CPU clock speed (only applied after restart)"
|
label="Run at a lower CPU clock speed"
|
||||||
/>
|
/>
|
||||||
<BlockFormControlLabel
|
<BlockFormControlLabel
|
||||||
control={
|
control={
|
||||||
@@ -427,7 +427,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
value="notoken_api"
|
value="notoken_api"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
label="Bypass Access Token authorization on API calls (warning! security vulnerability)"
|
label="Bypass Access Token authorization on API calls"
|
||||||
/>
|
/>
|
||||||
<Grid
|
<Grid
|
||||||
container
|
container
|
||||||
@@ -510,9 +510,9 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
onChange={handleValueChange('dallas_format')}
|
onChange={handleValueChange('dallas_format')}
|
||||||
margin="normal"
|
margin="normal"
|
||||||
>
|
>
|
||||||
<MenuItem value={1}>by ID</MenuItem>
|
<MenuItem value={1}>ID</MenuItem>
|
||||||
<MenuItem value={2}>by Number</MenuItem>
|
<MenuItem value={2}>Number</MenuItem>
|
||||||
<MenuItem value={3}>by Name</MenuItem>
|
<MenuItem value={3}>Name</MenuItem>
|
||||||
</SelectValidator>
|
</SelectValidator>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -611,7 +611,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
'Max value is 10'
|
'Max value is 10'
|
||||||
]}
|
]}
|
||||||
name="syslog_mark_interval"
|
name="syslog_mark_interval"
|
||||||
label="Mark Interval seconds (0=off)"
|
label="Mark Interval (seconds, 0=off)"
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
value={data.syslog_mark_interval}
|
value={data.syslog_mark_interval}
|
||||||
@@ -628,7 +628,7 @@ class EMSESPSettingsForm extends Component<EMSESPSettingsFormProps> {
|
|||||||
value="trace_raw"
|
value="trace_raw"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
label="Output EMS telegrams in raw format"
|
label="Output EMS telegrams as hexadecimal bytes"
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user