{
  "rtype": 1, // 0 = modbus, 1 = http/json
  "mtype": 2,  // 0 = other, 1 = meter, 2 = inverter, 4 = battery

  "name": "IGEN Tech Solarman Logger", // as displayed in the config dialog
  "manufacturer": "IGEN Tech",
  "dev_type": "ign_solarman", // will be prefixed by "meter_"

  "delay_accumulated": false, // false: always read accumulated value, like import_wh / export_wh when reading instantaneous values

  // values used to build the model string
  "type_designation": {
    "fixed": "Solarman"
  },
  "version": {
    "fixed": "1.0"
  },
  "firmware_version": {
    "fixed": "1.0"
  },
  "serial": {
    "fixed": "0"
  },

  "power_w": {
    "address": "/status.html",
    "type": "float",
    "regex": "webdata_now_p\\s*=\\s*\"(\\d+)\"",
     "resolution": 1.0
  },
  "import_wh": {
    "address": "/status.html",
    "type": "int64",
    "regex": "webdata_total_e\\s*=\\s*\"(\\d+[.]\\d+)\"",
    "resolution": 1000.0
  }
}
