Update README.md
This commit is contained in:
parent
02d39a61c0
commit
fe9f35aa84
12
README.md
12
README.md
|
|
@ -55,17 +55,21 @@ HomeSpan requires version 2.0.0 or later of the [Arduino-ESP32 Board Manager](ht
|
||||||
|
|
||||||
* reduced RAM usage by 30-50K (as well as reduced reliance on large stack-based buffers)
|
* reduced RAM usage by 30-50K (as well as reduced reliance on large stack-based buffers)
|
||||||
|
|
||||||
* **Added ability to "chain" *homeSpan* methods**
|
* **New ability to "chain" *homeSpan* methods**
|
||||||
|
|
||||||
* converted various *homeSpan* methods that previously returned *void* to now return *Span &*
|
* converted various *homeSpan* methods that previously returned *void* to now return *Span &*
|
||||||
* allows for chaining multiple *homeSpan* methods
|
* allows for chaining multiple *homeSpan* methods
|
||||||
* example: `homeSpan.setControlPin(21).setStatusPin(13);`
|
* example: `homeSpan.setControlPin(21).setStatusPin(13);`
|
||||||
* see [HomeSpan API Reference](docs/Reference.md) for details
|
* see [HomeSpan API Reference](docs/Reference.md) for details
|
||||||
|
|
||||||
* **New Web Log Customizations**
|
* **New Message Logging Customizations**
|
||||||
|
|
||||||
* adds new *homeSpan* method `setWebLogCallback(void (*func)(String &))` that provides a callback allowing you to extend the initial Web Log table with additional data of your own, as well as add an other custom HTML
|
* adds new *homeSpan* method `Span& setVerboseWifiReconnect(bool verbose)`
|
||||||
* see [Message Logging](docs/Logging.md) for details
|
* set *verbose* to *false* to suppress WiFi "Trying to connect to..." messages from being logged to the Serial Monitor and Web Log
|
||||||
|
* adds new *homeSpan* method `setWebLogCallback(void (*func)(String &))`
|
||||||
|
* provides a callback allowing you to extend the initial Web Log table with additional data of your own
|
||||||
|
* also allows you to add custom HTML to be shown after the initial table
|
||||||
|
* see [Message Logging](docs/Logging.md) for details and examples
|
||||||
|
|
||||||
* **New WiFi Callback Mechanism**
|
* **New WiFi Callback Mechanism**
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue