From 00946ad2637731670e0ab458b265b4baa6be887c Mon Sep 17 00:00:00 2001 From: user2684 <you@example.com> Date: Tue, 23 May 2017 18:37:38 +0200 Subject: [PATCH] Release v1.5 --- NodeManager.ino | 1 + README.md | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/NodeManager.ino b/NodeManager.ino index 40e59de..148442d 100644 --- a/NodeManager.ino +++ b/NodeManager.ino @@ -34,6 +34,7 @@ void before() { * Register below your sensors */ + /* * Register above your sensors diff --git a/README.md b/README.md index cac0859..f7a40c3 100644 --- a/README.md +++ b/README.md @@ -387,7 +387,7 @@ The following methods are available for all the sensors: // manually turn the power off void powerOff(); #endif - // get the latest value from the sensor + // get the latest recorded value from the sensor int getValueInt(); float getValueFloat(); char* getValueString(); @@ -1086,11 +1086,13 @@ v1.5: * Added forecast output to all Bosch sensors * Added I2C address auto-discovery for all Bosch sensors * Added support for running as a gateway -* A heartbeat is sent when waking up from a wait cycle -* Allowed combining sensors waking up from an interrupt and sensors reporting periodically +* Added option to retrieve the latest value of a sensor from outside NodeManager +* Remote reboot now does not need a reboot pin configured +* A heartbeat is now sent also when waking up from a wait cycle +* When waking up for an interrupt, only the code of the sensor expecting that interrupt is executed * Added capability to retrieve the time from the controller * Optimized battery life for DS18B20 sensors -* SLEEP_MANAGER has been deprecated and setMode() replaces setSleepMode() +* SLEEP_MANAGER has been deprecated (now always enabled) and setMode() replaces setSleepMode() * New mode ALWAYS_ON to let the node staying awake and executing each sensors' loop * ESP8266WiFi.h has to be included in the main sketch if MY_GATEWAY_ESP8266 is defined * Added receiveTime() wrapper in the main sketch -- GitLab