mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 08:19:52 +03:00
added text for board profiles
This commit is contained in:
@@ -1,30 +1,31 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## **Important Breaking Changes**
|
## **Important Breaking Changes**
|
||||||
- 3.0.0b3 uses a new filesystem. During upgrading all settings will be erased and not migrated.
|
- >3.0.0b2 uses a new filesystem. During upgrading all settings will be erased and not migrated.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Power settings, disabling BLE and turning off Wifi sleep
|
- power settings, disabling BLE and turning off Wifi sleep
|
||||||
- Rx and Tx counts to Heartbeat MQTT payload
|
- Rx and Tx counts to Heartbeat MQTT payload
|
||||||
- Ethernet support
|
- ethernet support
|
||||||
- id to info command to show only a heatingcircuit
|
- id to info command to show only a heatingcircuit
|
||||||
- add sending devices that are not listed to 0x07
|
- add sending devices that are not listed to 0x07
|
||||||
- extra MQTT boolean option for "ON" and "OFF"
|
- extra MQTT boolean option for "ON" and "OFF"
|
||||||
- Support for chunked MQTT payloads to allow large data sets > 2kb
|
- support for chunked MQTT payloads to allow large data sets > 2kb
|
||||||
- External Button support (#708) for resetting to factory defaults and other actions
|
- external Button support (#708) for resetting to factory defaults and other actions
|
||||||
- new console set command in `system`, `set ethernet <profile>` for quickly enabling cabled ethernet connections without using the captive wifi portal
|
- new console set command in `system`, `set ethernet <profile>` for quickly enabling cabled ethernet connections without using the captive wifi portal
|
||||||
- Added in MQTT nested mode, for thermostat and mixer, like we had back in v2
|
- added in MQTT nested mode, for thermostat and mixer, like we had back in v2
|
||||||
- Cascade MC400 (product-id 210) (3.0.0b6), power values for heating sources (3.0.1b1)
|
- cascade MC400 (product-id 210) (3.0.0b6), power values for heating sources (3.0.1b1)
|
||||||
- values for wwMaxPower, wwFlowtempOffset
|
- values for wwMaxPower, wwFlowtempOffset
|
||||||
- RC300 `thermostat temp -1` to clear temporary setpoint in auto mode
|
- RC300 `thermostat temp -1` to clear temporary setpoint in auto mode
|
||||||
- Syslog port selectable (#744)
|
- syslog port selectable (#744)
|
||||||
- individual mqtt commands (#31)
|
- individual mqtt commands (#31)
|
||||||
|
- Board Profiles (#11)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- telegrams matched to masterthermostat 0x18
|
- telegrams matched to masterthermostat 0x18
|
||||||
- multiple roomcontrollers
|
- multiple roomcontrollers
|
||||||
- readback after write with delay (give ems-devices time to set the value)
|
- readback after write with delay (give ems-devices time to set the value)
|
||||||
- Thermostat ES72/RC20 device 66 to command-set RC20_2
|
- thermostat ES72/RC20 device 66 to command-set RC20_2
|
||||||
- MQTT payloads not adding to queue when MQTT is re-connecting (fixes #369)
|
- MQTT payloads not adding to queue when MQTT is re-connecting (fixes #369)
|
||||||
- fix for HA topics with invalid command formats (#728)
|
- fix for HA topics with invalid command formats (#728)
|
||||||
- wrong position of values #723, #732
|
- wrong position of values #723, #732
|
||||||
@@ -38,13 +39,13 @@
|
|||||||
- mqtt prefixed with `Base`
|
- mqtt prefixed with `Base`
|
||||||
- count Dallas sensor fails
|
- count Dallas sensor fails
|
||||||
- switch from SPIFFS to LITTLEFS
|
- switch from SPIFFS to LITTLEFS
|
||||||
- Added ID to MQTT payloads which is the Device's product ID and used in HA to identify a unique HA device
|
- added ID to MQTT payloads which is the Device's product ID and used in HA to identify a unique HA device
|
||||||
- Increased MQTT buffer and reduced wait time between publishes
|
- increased MQTT buffer and reduced wait time between publishes
|
||||||
- Updated to the latest ArduinoJson library
|
- updated to the latest ArduinoJson library
|
||||||
- some names of mqtt-tags like in v2.2.1
|
- some names of mqtt-tags like in v2.2.1
|
||||||
- new ESP32 partition side to allow for smoother OTA and fallback
|
- new ESP32 partition side to allow for smoother OTA and fallback
|
||||||
- Network Gateway IP is optional (#682)emsesp/EMS-ESP
|
- network Gateway IP is optional (#682)emsesp/EMS-ESP
|
||||||
- moved to a new GitHub repo https://github.com/emsesp/EMS-ESP32
|
- moved to a new GitHub repo https://github.com/emsesp/EMS-ESP32
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
- Shower Alert (disabled for now)
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import MenuItem from '@material-ui/core/MenuItem';
|
|||||||
|
|
||||||
import Grid from '@material-ui/core/Grid';
|
import Grid from '@material-ui/core/Grid';
|
||||||
|
|
||||||
|
|
||||||
import { RestFormProps, FormActions, FormButton, BlockFormControlLabel } from '../components';
|
import { RestFormProps, FormActions, FormButton, BlockFormControlLabel } from '../components';
|
||||||
|
|
||||||
import { isIP, optional } from '../validators';
|
import { isIP, optional } from '../validators';
|
||||||
@@ -22,20 +21,13 @@ class EMSESPSettingsForm extends React.Component<EMSESPSettingsFormProps> {
|
|||||||
ValidatorForm.addValidationRule('isOptionalIP', optional(isIP));
|
ValidatorForm.addValidationRule('isOptionalIP', optional(isIP));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
handleSliderChange = (name: keyof LedSettings) => (event: React.ChangeEvent<{}>, value: number | number[]) => {
|
|
||||||
const { setData } = this.props;
|
|
||||||
setData({ ...this.props.data!, [name]: value });
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { data, saveData, handleValueChange } = this.props;
|
const { data, saveData, handleValueChange } = this.props;
|
||||||
return (
|
return (
|
||||||
<ValidatorForm onSubmit={saveData}>
|
<ValidatorForm onSubmit={saveData}>
|
||||||
<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">
|
||||||
Modify any EMS-ESP settings on this page. For help go to the <Link target="_blank" href="https://emsesp.github.io/docs/#/Configure-firmware32?id=ems-esp-settings" color="primary">{'wiki'}</Link>.
|
Modify any of the EMS-ESP settings here. For help visit the <Link target="_blank" href="https://emsesp.github.io/docs/#/Configure-firmware32?id=ems-esp-settings" color="primary">{'wiki'}</Link>.
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user