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

Implementation of sunrise and sunset

This commit is contained in:
norbert-walter
2022-04-01 17:44:39 +02:00
parent eaec09a29c
commit dca9d96957
21 changed files with 118 additions and 117 deletions

View File

@@ -3,10 +3,10 @@
"name": "timeZone",
"label": "Time Zone",
"type": "number",
"default": "0",
"default": "0.00",
"check": "checkMinMax",
"min": -12,
"max": 14,
"min": -12.00,
"max": 14.00,
"description": "Time zone [UTC -12...+14]",
"category": "OBP60 Settings",
"capabilities": {
@@ -17,10 +17,10 @@
"name": "draft",
"label": "Boat Draft [m]",
"type": "number",
"default": "0",
"default": "0.00",
"check": "checkMinMax",
"min": 0,
"max": 10,
"min": 0.00,
"max": 10.00,
"description": "The draft of the boat [0...10m]",
"category": "OBP60 Settings",
"capabilities": {
@@ -45,10 +45,10 @@
"name": "fuelConsumption",
"label": "Fuel Consuption [l/h]",
"type": "number",
"default": "0",
"default": "0.00",
"check": "checkMinMax",
"min": 0,
"max": 1000,
"min": 0.00,
"max": 1000.00,
"description": "Medium fuel consumption [0...1000l/h]",
"category": "OBP60 Settings",
"capabilities": {
@@ -119,10 +119,10 @@
"name": "batteryCapacity",
"label": "Battery Capacity [Ah]",
"type": "number",
"default": "0",
"default": "0.0",
"check": "checkMinMax",
"min": 0,
"max": 10000,
"min": 0.0,
"max": 10000.0,
"description": "Battery capacity [0...10000Ah]",
"category": "OBP60 Settings",
"capabilities": {