mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
change text about MQTT subscribe formats
This commit is contained in:
@@ -189,16 +189,20 @@ class MqttSettingsForm extends React.Component<MqttSettingsFormProps> {
|
|||||||
</SelectValidator>
|
</SelectValidator>
|
||||||
<SelectValidator
|
<SelectValidator
|
||||||
name="subscribe_format"
|
name="subscribe_format"
|
||||||
label="Subscribe Format"
|
label="Subscribe Topics"
|
||||||
value={data.subscribe_format}
|
value={data.subscribe_format}
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
onChange={handleValueChange('subscribe_format')}
|
onChange={handleValueChange('subscribe_format')}
|
||||||
margin="normal"
|
margin="normal"
|
||||||
>
|
>
|
||||||
<MenuItem value={0}>General device topic</MenuItem>
|
<MenuItem value={0}>one topic per device</MenuItem>
|
||||||
<MenuItem value={1}>Individual topics, main heating circuit</MenuItem>
|
<MenuItem value={1}>
|
||||||
<MenuItem value={2}>Individual topics, all heating circuits</MenuItem>
|
topics for each device and it's values (main heating circuit only)
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem value={2}>
|
||||||
|
topic for each device and it's values (all heating circuits)
|
||||||
|
</MenuItem>
|
||||||
</SelectValidator>
|
</SelectValidator>
|
||||||
<BlockFormControlLabel
|
<BlockFormControlLabel
|
||||||
control={
|
control={
|
||||||
|
|||||||
Reference in New Issue
Block a user