mirror of
https://github.com/jomjol/AI-on-the-edge-device-docs.git
synced 2025-12-07 03:57:00 +03:00
Restructure param docs (#15)
* Update build-docs.yaml * . * moved files * . * Update build-docs.yaml * Update build-docs.yaml --------- Co-authored-by: CaCO3 <caco@ruinelli.ch>
This commit is contained in:
48
param-docs/concat-parameter-pages.py
Normal file
48
param-docs/concat-parameter-pages.py
Normal file
@@ -0,0 +1,48 @@
|
||||
"""
|
||||
Grab all parameter files and concat them into a single file.
|
||||
The header structure gets moved down 1 level
|
||||
"""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
import glob
|
||||
|
||||
|
||||
parameterDocsFolder = "parameter-pages"
|
||||
parameterOverviewFile = "../docs/Parameters.md"
|
||||
parameterOverviewTemplateFile = "./templates/overview.md"
|
||||
|
||||
def appendParameterFile(folder, file):
|
||||
#print(folder, file)
|
||||
|
||||
with open(file, 'r') as parameterFileHandle:
|
||||
parameterDoc = parameterFileHandle.read()
|
||||
parameterDoc = parameterDoc.replace("# ", "### ") # Move all headings 2 level down
|
||||
|
||||
# Add parameter doc to overview page
|
||||
with open(parameterOverviewFile, 'a') as overviewFileHandle:
|
||||
overviewFileHandle.write(parameterDoc + "\n---\n\n")
|
||||
|
||||
|
||||
|
||||
# Create templated overview markdown file
|
||||
if os.path.exists(parameterOverviewFile):
|
||||
os.remove(parameterOverviewFile)
|
||||
shutil.copy(parameterOverviewTemplateFile, parameterOverviewFile)
|
||||
|
||||
"""
|
||||
Append all parameter pages in a sorted manner
|
||||
"""
|
||||
folders = sorted( filter( os.path.isdir, glob.glob(parameterDocsFolder + '/*') ) )
|
||||
for folder in folders:
|
||||
folder = folder.split("/")[-1]
|
||||
# print(folder)
|
||||
|
||||
# Add section
|
||||
with open(parameterOverviewFile, 'a') as overviewFileHandle:
|
||||
overviewFileHandle.write("\n## [%s]\n\n" % folder)
|
||||
|
||||
files = sorted(filter(os.path.isfile, glob.glob(parameterDocsFolder + "/" + folder + '/*')))
|
||||
for file in files:
|
||||
# print(" %s" % file)
|
||||
appendParameterFile(folder, file)
|
||||
71
param-docs/generate-param-doc-pages.py
Normal file
71
param-docs/generate-param-doc-pages.py
Normal file
@@ -0,0 +1,71 @@
|
||||
"""
|
||||
For each parameter which can be found in the config file,
|
||||
create a markdown file with a templated content it does not exist yet.
|
||||
The files are grouped in sub folders representing the config sections.
|
||||
"""
|
||||
|
||||
import os
|
||||
import configparser
|
||||
import urllib.request
|
||||
|
||||
|
||||
configFileUrl = "https://raw.githubusercontent.com/jomjol/AI-on-the-edge-device/rolling/sd-card/config/config.ini"
|
||||
|
||||
parameterDocsFolder = "parameter-pages"
|
||||
parameterTemplateFile = "./templates/parameter.md"
|
||||
|
||||
# Fetch default config file from URL
|
||||
print("Fetching %r..." % configFileUrl)
|
||||
with urllib.request.urlopen(configFileUrl) as response:
|
||||
content = response.read().decode("utf-8")
|
||||
|
||||
lines = str(content).split("\n")
|
||||
|
||||
for l in range(len(lines)):
|
||||
lines[l] = lines[l].strip() + "\n"
|
||||
if lines[l][0] == ";":
|
||||
lines[l] = lines[l][1:] # Remove comment
|
||||
|
||||
content = "".join(lines)
|
||||
|
||||
|
||||
config = configparser.ConfigParser(allow_no_value=True)
|
||||
config.optionxform = str # Make it case-insensitive
|
||||
config.read_string(content)
|
||||
|
||||
#shutil.rmtree(parameterDocsFolder)
|
||||
if not os.path.exists(parameterDocsFolder):
|
||||
os.mkdir(parameterDocsFolder)
|
||||
|
||||
with open(parameterTemplateFile, 'r') as parameterTemplateFileHandle:
|
||||
parameterTemplate = parameterTemplateFileHandle.read()
|
||||
|
||||
|
||||
print("For each section/parameter, check if there is already a documentation page in the folder %r..." % (os.getcwd() + "/" + parameterDocsFolder))
|
||||
for section in config:
|
||||
if section != "DEFAULT":
|
||||
#print(section)
|
||||
|
||||
subFolder = parameterDocsFolder + "/" + section
|
||||
|
||||
if not os.path.exists(subFolder):
|
||||
os.mkdir(subFolder)
|
||||
|
||||
for parameter in config[section]:
|
||||
if not " " in parameter: # Ignore parameters with whitespaces in them (special format, not part of editable config)
|
||||
value = config[section][parameter]
|
||||
#print(" %s = %s" % (parameter, value))
|
||||
|
||||
"""
|
||||
For each config line, create a markdown file
|
||||
"""
|
||||
parameterDocFile = subFolder + '/' + parameter + ".md"
|
||||
|
||||
if not os.path.exists(parameterDocFile): # File does not exist yet, generate template
|
||||
print("%r does not exit yet, generating a templated file for it" % (os.getcwd() + "/" + parameterDocFile))
|
||||
with open(parameterDocFile, 'w') as paramFileHandle:
|
||||
content = parameterTemplate
|
||||
content = content.replace("$NAME", parameter)
|
||||
content = content.replace("$DEFAULT", value)
|
||||
|
||||
paramFileHandle.write(content)
|
||||
6
param-docs/parameter-pages/Alignment/AlignmentAlgo.md
Normal file
6
param-docs/parameter-pages/Alignment/AlignmentAlgo.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `AlignmentAlgo`
|
||||
Default Value: `Default`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Alignment/FlipImageSize.md
Normal file
6
param-docs/parameter-pages/Alignment/FlipImageSize.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `FlipImageSize`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Alignment/InitialMirror.md
Normal file
6
param-docs/parameter-pages/Alignment/InitialMirror.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `InitialMirror`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Alignment/InitialRotate.md
Normal file
6
param-docs/parameter-pages/Alignment/InitialRotate.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `InitialRotate`
|
||||
Default Value: `179`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Alignment/SearchFieldX.md
Normal file
6
param-docs/parameter-pages/Alignment/SearchFieldX.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `SearchFieldX`
|
||||
Default Value: `20`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Alignment/SearchFieldY.md
Normal file
6
param-docs/parameter-pages/Alignment/SearchFieldY.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `SearchFieldY`
|
||||
Default Value: `20`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Analog/CNNGoodThreshold.md
Normal file
6
param-docs/parameter-pages/Analog/CNNGoodThreshold.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `CNNGoodThreshold`
|
||||
Default Value: `0.5`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Analog/ExtendedResolution.md
Normal file
6
param-docs/parameter-pages/Analog/ExtendedResolution.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `ExtendedResolution`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Analog/LogImageLocation.md
Normal file
6
param-docs/parameter-pages/Analog/LogImageLocation.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogImageLocation`
|
||||
Default Value: `/log/analog`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogfileRetentionInDays`
|
||||
Default Value: `3`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Analog/Model.md
Normal file
6
param-docs/parameter-pages/Analog/Model.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Model`
|
||||
Default Value: `/config/ana-cont_11.3.1_s2.tflite`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/AutoTimer/AutoStart.md
Normal file
6
param-docs/parameter-pages/AutoTimer/AutoStart.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `AutoStart`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/AutoTimer/Intervall.md
Normal file
6
param-docs/parameter-pages/AutoTimer/Intervall.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Intervall`
|
||||
Default Value: `5`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/DataLogging/DataLogActive.md
Normal file
6
param-docs/parameter-pages/DataLogging/DataLogActive.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `DataLogActive`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `DataLogRetentionInDays`
|
||||
Default Value: `3`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Debug/Logfile.md
Normal file
6
param-docs/parameter-pages/Debug/Logfile.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Logfile`
|
||||
Default Value: `1`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogfileRetentionInDays`
|
||||
Default Value: `3`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Digits/CNNGoodThreshold.md
Normal file
6
param-docs/parameter-pages/Digits/CNNGoodThreshold.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `CNNGoodThreshold`
|
||||
Default Value: `0.5`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Digits/LogImageLocation.md
Normal file
6
param-docs/parameter-pages/Digits/LogImageLocation.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogImageLocation`
|
||||
Default Value: `/log/digit`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogfileRetentionInDays`
|
||||
Default Value: `3`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/Digits/Model.md
Normal file
6
param-docs/parameter-pages/Digits/Model.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Model`
|
||||
Default Value: `/config/dig-cont_0600_s3.tflite`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO0.md
Normal file
6
param-docs/parameter-pages/GPIO/IO0.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO0`
|
||||
Default Value: `input disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO1.md
Normal file
6
param-docs/parameter-pages/GPIO/IO1.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO1`
|
||||
Default Value: `input disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO12.md
Normal file
6
param-docs/parameter-pages/GPIO/IO12.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO12`
|
||||
Default Value: `input-pullup disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO13.md
Normal file
6
param-docs/parameter-pages/GPIO/IO13.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO13`
|
||||
Default Value: `input-pullup disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO3.md
Normal file
6
param-docs/parameter-pages/GPIO/IO3.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO3`
|
||||
Default Value: `input disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/IO4.md
Normal file
6
param-docs/parameter-pages/GPIO/IO4.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `IO4`
|
||||
Default Value: `built-in-led disabled 10 false false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/LEDColor.md
Normal file
6
param-docs/parameter-pages/GPIO/LEDColor.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LEDColor`
|
||||
Default Value: `150 150 150`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/LEDNumbers.md
Normal file
6
param-docs/parameter-pages/GPIO/LEDNumbers.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LEDNumbers`
|
||||
Default Value: `2`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/LEDType.md
Normal file
6
param-docs/parameter-pages/GPIO/LEDType.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LEDType`
|
||||
Default Value: `WS2812`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/GPIO/MainTopicMQTT.md
Normal file
6
param-docs/parameter-pages/GPIO/MainTopicMQTT.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `MainTopicMQTT`
|
||||
Default Value: `wasserzaehler/GPIO`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/InfluxDB/Database.md
Normal file
6
param-docs/parameter-pages/InfluxDB/Database.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Database`
|
||||
Default Value: ``
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/InfluxDB/Measurement.md
Normal file
6
param-docs/parameter-pages/InfluxDB/Measurement.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Measurement`
|
||||
Default Value: `undefined`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/InfluxDB/Uri.md
Normal file
6
param-docs/parameter-pages/InfluxDB/Uri.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Uri`
|
||||
Default Value: `undefined`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/InfluxDB/password.md
Normal file
6
param-docs/parameter-pages/InfluxDB/password.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `password`
|
||||
Default Value: `undefined`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/InfluxDB/user.md
Normal file
6
param-docs/parameter-pages/InfluxDB/user.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `user`
|
||||
Default Value: `undefined`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/ClientID.md
Normal file
6
param-docs/parameter-pages/MQTT/ClientID.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `ClientID`
|
||||
Default Value: `watermeter`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `HomeassistantDiscovery`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/MainTopic.md
Normal file
6
param-docs/parameter-pages/MQTT/MainTopic.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `MainTopic`
|
||||
Default Value: `watermeter`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/MeterType.md
Normal file
6
param-docs/parameter-pages/MQTT/MeterType.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `MeterType`
|
||||
Default Value: `other`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/SetRetainFlag.md
Normal file
6
param-docs/parameter-pages/MQTT/SetRetainFlag.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `SetRetainFlag`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/Uri.md
Normal file
6
param-docs/parameter-pages/MQTT/Uri.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Uri`
|
||||
Default Value: `mqtt://IP-ADRESS:1883`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/password.md
Normal file
6
param-docs/parameter-pages/MQTT/password.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `password`
|
||||
Default Value: `PASSWORD`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MQTT/user.md
Normal file
6
param-docs/parameter-pages/MQTT/user.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `user`
|
||||
Default Value: `USERNAME`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/Brightness.md
Normal file
6
param-docs/parameter-pages/MakeImage/Brightness.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Brightness`
|
||||
Default Value: `0`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/Contrast.md
Normal file
6
param-docs/parameter-pages/MakeImage/Contrast.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Contrast`
|
||||
Default Value: `0`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/Demo.md
Normal file
6
param-docs/parameter-pages/MakeImage/Demo.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Demo`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/FixedExposure.md
Normal file
6
param-docs/parameter-pages/MakeImage/FixedExposure.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `FixedExposure`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/ImageQuality.md
Normal file
6
param-docs/parameter-pages/MakeImage/ImageQuality.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `ImageQuality`
|
||||
Default Value: `12`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/ImageSize.md
Normal file
6
param-docs/parameter-pages/MakeImage/ImageSize.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `ImageSize`
|
||||
Default Value: `VGA`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/LEDIntensity.md
Normal file
6
param-docs/parameter-pages/MakeImage/LEDIntensity.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LEDIntensity`
|
||||
Default Value: `50`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/LogImageLocation.md
Normal file
6
param-docs/parameter-pages/MakeImage/LogImageLocation.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogImageLocation`
|
||||
Default Value: `/log/source`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `LogfileRetentionInDays`
|
||||
Default Value: `15`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/MakeImage/Saturation.md
Normal file
6
param-docs/parameter-pages/MakeImage/Saturation.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Saturation`
|
||||
Default Value: `0`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `WaitBeforeTakingPicture`
|
||||
Default Value: `5`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `AllowNegativeRates`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `CheckDigitIncreaseConsistency`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `ErrorMessage`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `PreValueAgeStartup`
|
||||
Default Value: `720`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/PostProcessing/PreValueUse.md
Normal file
6
param-docs/parameter-pages/PostProcessing/PreValueUse.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `PreValueUse`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.AnalogDigitalTransitionStart`
|
||||
Default Value: `9.2`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.DecimalShift`
|
||||
Default Value: `0`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.ExtendedResolution`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.IgnoreLeadingNaN`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.MaxRateType`
|
||||
Default Value: `AbsoluteChange`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `main.MaxRateValue`
|
||||
Default Value: `0.05`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
# Parameter `AutoAdjustSummertime`
|
||||
Default Value: `false`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/System/Hostname.md
Normal file
6
param-docs/parameter-pages/System/Hostname.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `Hostname`
|
||||
Default Value: `undefined`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/System/SetupMode.md
Normal file
6
param-docs/parameter-pages/System/SetupMode.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `SetupMode`
|
||||
Default Value: `true`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/System/TimeServer.md
Normal file
6
param-docs/parameter-pages/System/TimeServer.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `TimeServer`
|
||||
Default Value: `pool.ntp.org`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
6
param-docs/parameter-pages/System/TimeZone.md
Normal file
6
param-docs/parameter-pages/System/TimeZone.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `TimeZone`
|
||||
Default Value: `CET-1CEST,M3.5.0,M10.5.0/3`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
7
param-docs/templates/overview.md
Normal file
7
param-docs/templates/overview.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# Parameters
|
||||
This page lists all available [Configuration](../Configuration) Parameters.
|
||||
|
||||
!!! Note
|
||||
This is an auto-generated page! See the [README](https://github.com/jomjol/AI-on-the-edge-device-docs/blob/main/README.md) for details!
|
||||
|
||||
---
|
||||
6
param-docs/templates/parameter.md
Normal file
6
param-docs/templates/parameter.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Parameter `$NAME`
|
||||
Default Value: `$DEFAULT`
|
||||
|
||||
## Description
|
||||
Please fill me with an explanation and useful links
|
||||
|
||||
Reference in New Issue
Block a user