Skip to content

Garmin generic arc

joeherwig edited this page Aug 19, 2019 · 13 revisions

Garmin generic ARC

This very simple but versatile gauge can be used to display plenty of values.

Configuration

Its behaviour is configured within the panel specific config.json. See the example of the RealAir Duke Turbine V2 for the ENG_1_TORQUE for instance:

  "ENG_1_TORQUE": {
    "label": "TRQ LB/ft",
    "rangemin": 0,
    "rangemax": 2000,
    "calculatedValue": "x /14 * 12",
    "ranges": [
      {
        "color": "green",
        "minValue": 0,
        "maxValue": 1400,
        "width": 2
      },
      {
        "color": "red",
        "alerttype": "warning",
        "alerttext": "high",
        "minValue": 1450,
        "maxValue": 2000,
        "width": 2,
        "activewidth": 60
      }
    ]
  }

See the detailed description of the different configuration parameters at config.json Description.