mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2025-12-15 23:13:07 +01:00
Initial update nach Github crash
This commit is contained in:
180
lib/obp60task/config.json
Normal file
180
lib/obp60task/config.json
Normal file
@@ -0,0 +1,180 @@
|
||||
[
|
||||
{
|
||||
"name": "obp60Config",
|
||||
"label": "Logging",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Switch on logging of position acquired/failed",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "useGPS",
|
||||
"label": "GPS NEO-6M",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Using internal GPS modul NEO-6M",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "useBME280",
|
||||
"label": "BME280",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Using internal BME280 modul",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "use1Wire",
|
||||
"label": "1Wire",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Using external 1Wirew devices (DS18B20)",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "powerMode",
|
||||
"label": "Power Mode",
|
||||
"type": "list",
|
||||
"default": "Max Power",
|
||||
"description": "Settings for power mode",
|
||||
"list": [
|
||||
"Max Power",
|
||||
"Only 3.3V",
|
||||
"Only 5.0V",
|
||||
"Min Power"
|
||||
],
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "display",
|
||||
"label": "Display Mode",
|
||||
"type": "list",
|
||||
"default": "Logo + QR Code",
|
||||
"description": "Settings for display mode",
|
||||
"list": [
|
||||
"White Screen",
|
||||
"Logo",
|
||||
"Logo + QR Code",
|
||||
"Off"
|
||||
],
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "backlight",
|
||||
"label": "Backlight Mode",
|
||||
"type": "list",
|
||||
"default": "Off",
|
||||
"description": "Settings for display mode",
|
||||
"list": [
|
||||
"Off",
|
||||
"Control by Sun",
|
||||
"Control by Bus",
|
||||
"Control by Time",
|
||||
"Control by Key",
|
||||
"On"
|
||||
],
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "flashLED",
|
||||
"label": "Flash LED Mode",
|
||||
"type": "list",
|
||||
"default": "Off",
|
||||
"description": "Settings for flash LED",
|
||||
"list": [
|
||||
"Off",
|
||||
"TCP/UDP Data",
|
||||
"GPS Fix",
|
||||
"Limits Overrun"
|
||||
],
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "buzzerError",
|
||||
"label": "Buzzer Error",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Settings for buzzer",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "buzzerGps",
|
||||
"label": "Buzzer GPS Fix",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Settings for buzzer",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "buzzerLim",
|
||||
"label": "Buzzer by Limits",
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "Tone by limit overrun",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "buzzerMode",
|
||||
"label": "Buzzer Mode",
|
||||
"type": "list",
|
||||
"default": "Off",
|
||||
"description": "Settings for Buzzer Mode",
|
||||
"list": [
|
||||
"Off",
|
||||
"Short Single Beep",
|
||||
"Longer Single Beep",
|
||||
"Beep until Confirmation"
|
||||
],
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "buzzerPower",
|
||||
"label": "Buzzer Power",
|
||||
"type": "number",
|
||||
"default": "50",
|
||||
"check": "checkMinMax",
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"description": "Buzzer Loudness 0...100%",
|
||||
"category": "OBP60",
|
||||
"capabilities": {
|
||||
"obp60":"true"
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user