Update bang_bang.rst (#524)

* Update bang_bang.rst

Modify functionality in mode manual. (fix  #1005)

* Update formatting

* Remove whitespace

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
xheronimo 2020-12-13 16:16:36 +01:00 committed by GitHub
parent 6af1fe91a9
commit 0e889196a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,11 +31,13 @@ There are three types of bang bang controllers this platform can represent:
- As soon as the temperature goes below the lower target temperature, ``heat_action`` will be called.
- When the temperature goes above the higher temperature, ``idle_action`` will be called.
- If you change operating mode (manual mode). And it is between high and low temperature. It does not wait to get to low temperature, it starts working until it gets to high temperature.
- **Coolers**: For devices where the observed temperature can only be decreased.
- As soon as the temperature goes above the higher target temperature, ``cool_action`` will be called.
- When the temperature goes below the lower temperature, ``idle_action`` will be called.
- If you change operating mode (manual mode). And it is between high and low temperature. It does not wait to get to high temperature, it starts working until it gets to low temperature.
- **Heater+Cooler**: For devices where the temperature can both actively be increased and decreased.