1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 06:53:07 +01:00

Fix OBP60 build and add sunrise/sunset feature for stationary OBP40

This commit is contained in:
2025-02-10 13:09:43 +01:00
parent acf75495df
commit 00a8aff8ca
7 changed files with 127 additions and 11 deletions

View File

@@ -8,6 +8,17 @@
"description": "system name, used for the access point and for services",
"category": "system"
},
{
"name": "timeServer",
"label": "time server",
"type": "string",
"default": "pool.ntp.org",
"description": "NTP time server. Use only one hostname or IP address",
"category": "wifi client",
"capabilities": {
"obp40": "true"
}
},
{
"name": "timeZone",
"label": "Time Zone",
@@ -22,6 +33,34 @@
"obp60":"true"
}
},
{
"name": "homeLAT",
"label": "Home latitude",
"type": "number",
"default": "",
"check": "checkMinMax",
"min": -90.0,
"max": 90.0,
"description": "Latitude of boat home location [-90.0...+90.0]",
"category": "OBP60 Settings",
"capabilities": {
"obp60":"true"
}
},
{
"name": "homeLON",
"label": "Home longitude",
"type": "number",
"default": "",
"check": "checkMinMax",
"min": -180.0,
"max": 180.0,
"description": "Longitude of boat home location [-90.0...+90.0]",
"category": "OBP60 Settings",
"capabilities": {
"obp60":"true"
}
},
{
"name": "draft",
"label": "Boat Draft [m]",