Added estimated runtime on config
This commit is contained in:
@ -69,7 +69,8 @@ Device Setting
|
||||
.. note::
|
||||
|
||||
A low value such as 30s will give a lifespan of 1-2 weeks and 300s (5 min) would last for 3+ weeks. This assumes that
|
||||
there is good wifi connection that takes less than 1s to reconnect. Poor wifi connection is the main reason for battery drain.
|
||||
there is good wifi connection that takes less than 1s to reconnect. Poor wifi connection is the main reason for battery drain.
|
||||
The device will show the estimated lifespan based on the average connection time, if no data exist it will not be shown.
|
||||
|
||||
|
||||
* **Calibration values:**
|
||||
|
@ -8,6 +8,7 @@ v0.9.0
|
||||
* Added one http push target that uses HTTP GET. This can be used with ubidots or blynk api's.
|
||||
* Added function to test push targets from configuration page. It will send data and show the return code as a first step.
|
||||
* Added documetation on how to integrate with Blynk.io using http get.
|
||||
* Config page now shows the estimated runtime for the device (based on a full battery and previous average runtime)
|
||||
* Experimental release of firmware using an esp32 instead of esp8266
|
||||
* Merged index and device pages into one so that all the needed information is available on the index page.
|
||||
* Removed api for device (/api/device), it's now merged into the /api/status api.
|
||||
|
@ -10,14 +10,55 @@ Brewfather
|
||||
|
||||
Brewfather is an all in one service that allows you to manage you recepies and brews.
|
||||
|
||||
Just enter the http adress found on brewfather, not other settings are needed. The endpoint has the following format:
|
||||
.. tip::
|
||||
|
||||
The integration named Brewfather is uses the custom stream endpoint in brewfather not the standard iSpindle
|
||||
endpoint. You can use the iSpindle endpoint as well. In that case just use the http-1 or http-2 fields.
|
||||
|
||||
**Option 1** - Custom Stream
|
||||
|
||||
This option makes use of the push endpoint called Brewfather in the UI. Just enter the http stream adress found
|
||||
on brewfather, not other settings are needed. The stream endpoint URL has the following format:
|
||||
|
||||
.. code-block::
|
||||
|
||||
http://log.brewfather.net/http://log.brewfather.net/stream?id=<yourid>
|
||||
http://log.brewfather.net/stream?id=<yourid>
|
||||
|
||||
Documentation on this can be found under `Brewfather Custom Endpoint <https://docs.brewfather.app/integrations/custom-stream>`_
|
||||
|
||||
The implementation is basically a http request with the following format template:
|
||||
|
||||
.. code-block::
|
||||
|
||||
{
|
||||
"name": "${mdns}",
|
||||
"temp": ${temp},
|
||||
"aux_temp": 0,
|
||||
"ext_temp": 0,
|
||||
"temp_unit": "${temp-unit}",
|
||||
"gravity": ${gravity},
|
||||
"gravity_unit": "${gravity-unit}",
|
||||
"pressure": 0,
|
||||
"pressure_unit": "PSI",
|
||||
"ph": 0,
|
||||
"bpm": 0,
|
||||
"comment": "",
|
||||
"beer": "",
|
||||
"battery": ${battery}
|
||||
}
|
||||
|
||||
|
||||
The URL is found under settings.
|
||||
**Option 2** - iSpindle Endpoint
|
||||
|
||||
This opion makes use of the standard http (1 or 2) endpoints in the push section. The brewfather iSpindle endpoint
|
||||
has the following format:
|
||||
|
||||
.. code-block::
|
||||
|
||||
http://log.brewfather.net/ispindel?id=<yourid>
|
||||
|
||||
|
||||
Documentation on this can be found under `Brewfather iSpindle Endpoint <https://docs.brewfather.app/integrations/ispindel>`_
|
||||
|
||||
Fermentrack
|
||||
+++++++++++
|
||||
|
Reference in New Issue
Block a user