#63 tilt validation

This commit is contained in:
Magnus Persson
2022-05-01 18:07:16 +02:00
parent 7ede9a6d19
commit a3cd3217ab
13 changed files with 126 additions and 57 deletions

View File

@ -162,6 +162,7 @@ Used for adjusting some internal constants and other advanced settings. Should b
"wifi-portal-timeout": 120,
"wifi-connect-timeout": 20,
"formula-calibration-temp": 20,
"ignore-low-angles": false,
"int-http1": 0,
"int-http2": 0,
"int-http3": 0,
@ -174,8 +175,11 @@ POST: /api/config/advanced
Same parameters as above.
Payload should be in standard format used for posting a form
Payload should be in standard format used for posting a form.
.. note::
``ignore-low-angles`` is defined as "on" or "off" when posting since this is the output values
from a checkbox, when reading data it's sent as boolean (true,false).
GET: /api/clearwifi
===================

View File

@ -10,6 +10,8 @@ v1.0.0-beta2
* Added button on indexpage to direct to github issues.
* Added button to extract important information for support requests.
* Updated docs with information from beta1.
* First point in gravity formula is now reserved for water gravity, this to allow detection of angles below water that can be filtered out.
* Added advanced setting to ignore angles that are lower than water. This is disabled by default.
v1.0.0-beta1
------------