diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 00000000..9802bd9c --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,45 @@ +name: Generate and deploy docs to GH pages + +on: + push: + branches: ["main"] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Install uv + uses: astral-sh/setup-uv@v7 + - name: Set up Python + run: uv python install + - name: Install dependencies + run: | + uv venv + uv pip install jinja2 + uv pip install -e . + - name: Generate docs + run: uv run python .github/workflows/scripts/docs/gen-docs.py + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v4 + with: + path: docs + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py new file mode 100644 index 00000000..15160842 --- /dev/null +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python +import logging +from pathlib import Path +from datetime import datetime +from jinja2 import Environment, FileSystemLoader, select_autoescape +import subprocess + +from luxtronik.cfi import ( + CALCULATIONS_DEFINITIONS, + PARAMETERS_DEFINITIONS, + VISIBILITIES_DEFINITIONS, +) +from luxtronik.shi import ( + INPUTS_DEFINITIONS, + HOLDINGS_DEFINITIONS, +) + +from luxtronik.datatypes import ( + SelectionBase, +) + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger("docs generator") + + +BASEPATH = Path(__file__).resolve().parent + + +def get_git_version(): + try: + return subprocess.check_output( + ["git", "describe", "--tags"], + stderr=subprocess.STDOUT + ).decode().strip() + except Exception: + return None + +def get_string(string): + return f'"{str(string)}"' + +def get_writeable(writeable): + return get_string("y" if writeable else "") + +def get_unit(unit): + return get_string(unit if unit else "") + +def get_version(version): + return get_string("" if version is None else ".".join(map(str, version[:3]))) + +def get_desc(desc): + return get_string(desc.replace('\n', '\\n')) + +def get_items(definitions): + items = [] + for d in definitions: + desc = d.description + if issubclass(d.field_type, SelectionBase) and d.writeable: + desc += ("\n" if desc else "") + "\nUser-Options:\n" + "\n".join(d.field_type.options()) + for n in d.names: + items.append({ + "category": get_string(definitions.name), + "index": d.index, + "name": get_string(n), + "lsb": 0 if d.bit_offset is None else d.bit_offset, + "width": d.num_bits, + "class": get_string(d.field_type.datatype_class), + "writeable": get_writeable(d.writeable), + "unit": get_unit(d.field_type.unit), + "since": get_version(d.since), + "until": get_version(d.until), + "description": get_desc(desc), + }) + return items + +def gather_data(): + logger.info("gather docs data") + defs = [ + PARAMETERS_DEFINITIONS, + CALCULATIONS_DEFINITIONS, + VISIBILITIES_DEFINITIONS, + HOLDINGS_DEFINITIONS, + INPUTS_DEFINITIONS + ] + data = {} + for d in defs: + data[d.name] = get_items(d) + return data + +def render_docs(): + logger.info("render docs") + env = Environment(loader=FileSystemLoader(str(BASEPATH / "templates")), autoescape=select_autoescape()) + + data = gather_data() + (BASEPATH.parents[3] / "docs").mkdir(exist_ok=True) + + # create data files + template = env.get_template("definitions.js") + for name, items in data.items(): + with open(BASEPATH.parents[3] / f"docs/{name}.js", "w", encoding="UTF-8") as f: + f.write(template.render(group=name.upper(), data=items)) + + # create meta file + template = env.get_template("meta.js") + with open(BASEPATH.parents[3] / "docs/meta.js", "w", encoding="UTF-8") as f: + f.write(template.render(version=get_git_version(), now=datetime.now().replace(microsecond=0))) + + +if __name__ == "__main__": + render_docs() diff --git a/.github/workflows/scripts/docs/templates/definitions.js b/.github/workflows/scripts/docs/templates/definitions.js new file mode 100644 index 00000000..6de69926 --- /dev/null +++ b/.github/workflows/scripts/docs/templates/definitions.js @@ -0,0 +1,5 @@ +window.{{ group }} = [ + {% for items in data %}{{"{"}}{% for key, value in items.items() %} + {{key}}: {{value}}{% if not loop.last %},{% endif %}{% endfor %} + {{"}"}}{% if not loop.last %},{% endif %}{% endfor %} +]; \ No newline at end of file diff --git a/.github/workflows/scripts/docs/templates/meta.js b/.github/workflows/scripts/docs/templates/meta.js new file mode 100644 index 00000000..c735191a --- /dev/null +++ b/.github/workflows/scripts/docs/templates/meta.js @@ -0,0 +1,4 @@ +window.META = { + createdOn: "{{ now }}", + version: "{{ version }}" +}; \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d8e342..38187e45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ This changelog follows the "Keep a Changelog" format and Semantic Versioning. is required for this. See README for further information. [#190] - Add a command-line-interface (CLI) with the following commands: `dump`, `dump-cfi`, `dump.shi`, `changes`, `watch-cfi`, `watch-shi`, `discover` +- Provide an automatically generated documentation for the data fields. [#189] ### Changed diff --git a/README.md b/README.md index 0951a33d..14da1f4f 100755 --- a/README.md +++ b/README.md @@ -56,7 +56,9 @@ There is no automatically rendered documentation of this library available yet, so you'll have to fall back to using the source code itself as documentation. It can be found in the [luxtronik](luxtronik/) directory. -Discovered data fields: +At least for the data fields, there is such a +[documentation](https://bouni.github.io/python-luxtronik/). Alternatively, +you can take a look at the definitions for all discovered data fields: - Calculations holds measurement values (config interface): \ [luxtronik/definitions/calculations.py](luxtronik/definitions/calculations.py) diff --git a/docs/calculation.js b/docs/calculation.js new file mode 100644 index 00000000..8ffd3430 --- /dev/null +++ b/docs/calculation.js @@ -0,0 +1,3447 @@ +window.CALCULATION = [ + { + category: "calculation", + index: 0, + name: "Unknown_Calculation_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 1, + name: "Unknown_Calculation_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 2, + name: "Unknown_Calculation_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 3, + name: "Unknown_Calculation_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 4, + name: "Unknown_Calculation_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 5, + name: "Unknown_Calculation_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 6, + name: "Unknown_Calculation_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 7, + name: "Unknown_Calculation_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 8, + name: "Unknown_Calculation_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 9, + name: "Unknown_Calculation_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 10, + name: "ID_WEB_Temperatur_TVL", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 11, + name: "ID_WEB_Temperatur_TRL", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 12, + name: "ID_WEB_Sollwert_TRL_HZ", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 13, + name: "ID_WEB_Temperatur_TRL_ext", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 14, + name: "ID_WEB_Temperatur_THG", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 15, + name: "ID_WEB_Temperatur_TA", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 16, + name: "ID_WEB_Mitteltemperatur", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 17, + name: "ID_WEB_Temperatur_TBW", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 18, + name: "ID_WEB_Einst_BWS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 19, + name: "ID_WEB_Temperatur_TWE", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 20, + name: "ID_WEB_Temperatur_TWA", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 21, + name: "ID_WEB_Temperatur_TFB1", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 22, + name: "ID_WEB_Sollwert_TVL_MK1", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 23, + name: "ID_WEB_Temperatur_RFV", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 24, + name: "ID_WEB_Temperatur_TFB2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 25, + name: "ID_WEB_Sollwert_TVL_MK2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 26, + name: "ID_WEB_Temperatur_TSK", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 27, + name: "ID_WEB_Temperatur_TSS", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 28, + name: "ID_WEB_Temperatur_TEE", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 29, + name: "ID_WEB_ASDin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 30, + name: "ID_WEB_BWTin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 31, + name: "ID_WEB_EVUin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 32, + name: "ID_WEB_HDin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 33, + name: "ID_WEB_MOTin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 34, + name: "ID_WEB_NDin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 35, + name: "ID_WEB_PEXin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 36, + name: "ID_WEB_SWTin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 37, + name: "ID_WEB_AVout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 38, + name: "ID_WEB_BUPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 39, + name: "ID_WEB_HUPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 40, + name: "ID_WEB_MA1out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 41, + name: "ID_WEB_MZ1out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 42, + name: "ID_WEB_VENout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 43, + name: "ID_WEB_VBOout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 44, + name: "ID_WEB_VD1out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 45, + name: "ID_WEB_VD2out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 46, + name: "ID_WEB_ZIPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 47, + name: "ID_WEB_ZUPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 48, + name: "ID_WEB_ZW1out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 49, + name: "ID_WEB_ZW2SSTout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 50, + name: "ID_WEB_ZW3SSTout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 51, + name: "ID_WEB_FP2out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 52, + name: "ID_WEB_SLPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 53, + name: "ID_WEB_SUPout", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 54, + name: "ID_WEB_MZ2out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 55, + name: "ID_WEB_MA2out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 56, + name: "ID_WEB_Zaehler_BetrZeitVD1", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 57, + name: "ID_WEB_Zaehler_BetrZeitImpVD1", + lsb: 0, + width: 32, + class: "count", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 58, + name: "ID_WEB_Zaehler_BetrZeitVD2", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 59, + name: "ID_WEB_Zaehler_BetrZeitImpVD2", + lsb: 0, + width: 32, + class: "count", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 60, + name: "ID_WEB_Zaehler_BetrZeitZWE1", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 61, + name: "ID_WEB_Zaehler_BetrZeitZWE2", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 62, + name: "ID_WEB_Zaehler_BetrZeitZWE3", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 63, + name: "ID_WEB_Zaehler_BetrZeitWP", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 64, + name: "ID_WEB_Zaehler_BetrZeitHz", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 65, + name: "ID_WEB_Zaehler_BetrZeitBW", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 66, + name: "ID_WEB_Zaehler_BetrZeitKue", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 67, + name: "ID_WEB_Time_WPein_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 68, + name: "ID_WEB_Time_ZWE1_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 69, + name: "ID_WEB_Time_ZWE2_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 70, + name: "ID_WEB_Timer_EinschVerz", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 71, + name: "ID_WEB_Time_SSPAUS_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 72, + name: "ID_WEB_Time_SSPEIN_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 73, + name: "ID_WEB_Time_VDStd_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 74, + name: "ID_WEB_Time_HRM_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 75, + name: "ID_WEB_Time_HRW_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 76, + name: "ID_WEB_Time_LGS_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 77, + name: "ID_WEB_Time_SBW_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 78, + name: "ID_WEB_Code_WP_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 79, + name: "ID_WEB_BIV_Stufe_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 80, + name: "ID_WEB_WP_BZ_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 81, + name: "ID_WEB_SoftStand", + lsb: 0, + width: 32, + class: "version", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 81, + name: "ID_WEB_SoftStand_0", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 82, + name: "ID_WEB_SoftStand_1", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 83, + name: "ID_WEB_SoftStand_2", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 84, + name: "ID_WEB_SoftStand_3", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 85, + name: "ID_WEB_SoftStand_4", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 86, + name: "ID_WEB_SoftStand_5", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 87, + name: "ID_WEB_SoftStand_6", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 88, + name: "ID_WEB_SoftStand_7", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 89, + name: "ID_WEB_SoftStand_8", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 90, + name: "ID_WEB_SoftStand_9", + lsb: 0, + width: 32, + class: "character", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 91, + name: "ID_WEB_AdresseIP_akt", + lsb: 0, + width: 32, + class: "ipv4_address", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 92, + name: "ID_WEB_SubNetMask_akt", + lsb: 0, + width: 32, + class: "ipv4_address", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 93, + name: "ID_WEB_Add_Broadcast", + lsb: 0, + width: 32, + class: "ipv4_address", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 94, + name: "ID_WEB_Add_StdGateway", + lsb: 0, + width: 32, + class: "ipv4_address", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 95, + name: "ID_WEB_ERROR_Time0", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 96, + name: "ID_WEB_ERROR_Time1", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 97, + name: "ID_WEB_ERROR_Time2", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 98, + name: "ID_WEB_ERROR_Time3", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 99, + name: "ID_WEB_ERROR_Time4", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 100, + name: "ID_WEB_ERROR_Nr0", + lsb: 0, + width: 32, + class: "errorcode", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 101, + name: "ID_WEB_ERROR_Nr1", + lsb: 0, + width: 32, + class: "errorcode", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 102, + name: "ID_WEB_ERROR_Nr2", + lsb: 0, + width: 32, + class: "errorcode", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 103, + name: "ID_WEB_ERROR_Nr3", + lsb: 0, + width: 32, + class: "errorcode", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 104, + name: "ID_WEB_ERROR_Nr4", + lsb: 0, + width: 32, + class: "errorcode", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 105, + name: "ID_WEB_AnzahlFehlerInSpeicher", + lsb: 0, + width: 32, + class: "count", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 106, + name: "ID_WEB_Switchoff_file_Nr0", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 107, + name: "ID_WEB_Switchoff_file_Nr1", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 108, + name: "ID_WEB_Switchoff_file_Nr2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 109, + name: "ID_WEB_Switchoff_file_Nr3", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 110, + name: "ID_WEB_Switchoff_file_Nr4", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 111, + name: "ID_WEB_Switchoff_file_Time0", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 112, + name: "ID_WEB_Switchoff_file_Time1", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 113, + name: "ID_WEB_Switchoff_file_Time2", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 114, + name: "ID_WEB_Switchoff_file_Time3", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 115, + name: "ID_WEB_Switchoff_file_Time4", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 116, + name: "ID_WEB_Comfort_exists", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 117, + name: "ID_WEB_HauptMenuStatus_Zeile1", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 118, + name: "ID_WEB_HauptMenuStatus_Zeile2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 119, + name: "ID_WEB_HauptMenuStatus_Zeile3", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 120, + name: "ID_WEB_HauptMenuStatus_Zeit", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 121, + name: "ID_WEB_HauptMenuAHP_Stufe", + lsb: 0, + width: 32, + class: "level", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 122, + name: "ID_WEB_HauptMenuAHP_Temp", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 123, + name: "ID_WEB_HauptMenuAHP_Zeit", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 124, + name: "ID_WEB_SH_BWW", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 125, + name: "ID_WEB_SH_HZ", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 126, + name: "ID_WEB_SH_MK1", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 127, + name: "ID_WEB_SH_MK2", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 128, + name: "ID_WEB_Einst_Kurzrpgramm", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 129, + name: "ID_WEB_StatusSlave_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 130, + name: "ID_WEB_StatusSlave_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 131, + name: "ID_WEB_StatusSlave_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 132, + name: "ID_WEB_StatusSlave_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 133, + name: "ID_WEB_StatusSlave_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 134, + name: "ID_WEB_AktuelleTimeStamp", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 135, + name: "ID_WEB_SH_MK3", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 136, + name: "ID_WEB_Sollwert_TVL_MK3", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 137, + name: "ID_WEB_Temperatur_TFB3", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 138, + name: "ID_WEB_MZ3out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 139, + name: "ID_WEB_MA3out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 140, + name: "ID_WEB_FP3out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 141, + name: "ID_WEB_Time_AbtIn", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 142, + name: "ID_WEB_Temperatur_RFV2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 143, + name: "ID_WEB_Temperatur_RFV3", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 144, + name: "ID_WEB_SH_SW", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 145, + name: "ID_WEB_Zaehler_BetrZeitSW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 146, + name: "ID_WEB_FreigabKuehl", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 147, + name: "ID_WEB_AnalogIn", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 148, + name: "ID_WEB_SonderZeichen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 149, + name: "ID_WEB_SH_ZIP", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 150, + name: "ID_WEB_WebsrvProgrammWerteBeobarten", + lsb: 0, + width: 32, + class: "icon", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 151, + name: "ID_WEB_WMZ_Heizung", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 152, + name: "ID_WEB_WMZ_Brauchwasser", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 153, + name: "ID_WEB_WMZ_Schwimmbad", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 154, + name: "ID_WEB_WMZ_Seit", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 155, + name: "ID_WEB_WMZ_Durchfluss", + lsb: 0, + width: 32, + class: "flow", + writeable: "", + unit: "l/h", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 156, + name: "ID_WEB_AnalogOut1", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 157, + name: "ID_WEB_AnalogOut2", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 158, + name: "ID_WEB_Time_Heissgas", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 159, + name: "ID_WEB_Temp_Lueftung_Zuluft", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 160, + name: "ID_WEB_Temp_Lueftung_Abluft", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 161, + name: "ID_WEB_Zaehler_BetrZeitSolar", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 162, + name: "ID_WEB_AnalogOut3", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 163, + name: "ID_WEB_AnalogOut4", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 164, + name: "ID_WEB_Out_VZU", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 165, + name: "ID_WEB_Out_VAB", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 166, + name: "ID_WEB_Out_VSK", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 167, + name: "ID_WEB_Out_FRH", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 168, + name: "ID_WEB_AnalogIn2", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 169, + name: "ID_WEB_AnalogIn3", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 170, + name: "ID_WEB_SAXin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 171, + name: "ID_WEB_SPLin", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 172, + name: "ID_WEB_Compact_exists", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 173, + name: "ID_WEB_Durchfluss_WQ", + lsb: 0, + width: 32, + class: "flow", + writeable: "", + unit: "l/h", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 174, + name: "ID_WEB_LIN_exists", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 175, + name: "ID_WEB_LIN_ANSAUG_VERDAMPFER", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 176, + name: "ID_WEB_LIN_ANSAUG_VERDICHTER", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 177, + name: "ID_WEB_LIN_VDH", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 178, + name: "ID_WEB_LIN_UH", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 179, + name: "ID_WEB_LIN_UH_Soll", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 180, + name: "ID_WEB_LIN_HD", + lsb: 0, + width: 32, + class: "pressure", + writeable: "", + unit: "bar", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 181, + name: "ID_WEB_LIN_ND", + lsb: 0, + width: 32, + class: "pressure", + writeable: "", + unit: "bar", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 182, + name: "ID_WEB_LIN_VDH_out", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 183, + name: "ID_WEB_HZIO_PWM", + lsb: 0, + width: 32, + class: "percent", + writeable: "", + unit: "%", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 184, + name: "ID_WEB_HZIO_VEN", + lsb: 0, + width: 32, + class: "speed", + writeable: "", + unit: "rpm", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 185, + name: "ID_WEB_HZIO_EVU2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 186, + name: "ID_WEB_HZIO_STB", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 187, + name: "ID_WEB_SEC_Qh_Soll", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 188, + name: "ID_WEB_SEC_Qh_Ist", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 189, + name: "ID_WEB_SEC_TVL_Soll", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 190, + name: "ID_WEB_SEC_Software", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 191, + name: "ID_WEB_SEC_BZ", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 192, + name: "ID_WEB_SEC_VWV", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 193, + name: "ID_WEB_SEC_VD", + lsb: 0, + width: 32, + class: "speed", + writeable: "", + unit: "rpm", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 194, + name: "ID_WEB_SEC_VerdEVI", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 195, + name: "ID_WEB_SEC_AnsEVI", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 196, + name: "ID_WEB_SEC_UEH_EVI", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 197, + name: "ID_WEB_SEC_UEH_EVI_S", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 198, + name: "ID_WEB_SEC_KondTemp", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 199, + name: "ID_WEB_SEC_FlussigEx", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 200, + name: "ID_WEB_SEC_UK_EEV", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 201, + name: "ID_WEB_SEC_EVI_Druck", + lsb: 0, + width: 32, + class: "pressure", + writeable: "", + unit: "bar", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 202, + name: "ID_WEB_SEC_U_Inv", + lsb: 0, + width: 32, + class: "voltage", + writeable: "", + unit: "V", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 203, + name: "ID_WEB_Temperatur_THG_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 204, + name: "ID_WEB_Temperatur_TWE_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 205, + name: "ID_WEB_LIN_ANSAUG_VERDAMPFER_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 206, + name: "ID_WEB_LIN_ANSAUG_VERDICHTER_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 207, + name: "ID_WEB_LIN_VDH_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 208, + name: "ID_WEB_LIN_UH_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 209, + name: "ID_WEB_LIN_UH_Soll_2", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 210, + name: "ID_WEB_LIN_HD_2", + lsb: 0, + width: 32, + class: "pressure", + writeable: "", + unit: "bar", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 211, + name: "ID_WEB_LIN_ND_2", + lsb: 0, + width: 32, + class: "pressure", + writeable: "", + unit: "bar", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 212, + name: "ID_WEB_HDin_2", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 213, + name: "ID_WEB_AVout_2", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 214, + name: "ID_WEB_VBOout_2", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 215, + name: "ID_WEB_VD1out_2", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 216, + name: "ID_WEB_LIN_VDH_out_2", + lsb: 0, + width: 32, + class: "boolean", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 217, + name: "ID_WEB_Switchoff2_file_Nr0", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 218, + name: "ID_WEB_Switchoff2_file_Nr1", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 219, + name: "ID_WEB_Switchoff2_file_Nr2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 220, + name: "ID_WEB_Switchoff2_file_Nr3", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 221, + name: "ID_WEB_Switchoff2_file_Nr4", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 222, + name: "ID_WEB_Switchoff2_file_Time0", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 223, + name: "ID_WEB_Switchoff2_file_Time1", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 224, + name: "ID_WEB_Switchoff2_file_Time2", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 225, + name: "ID_WEB_Switchoff2_file_Time3", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 226, + name: "ID_WEB_Switchoff2_file_Time4", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 227, + name: "ID_WEB_RBE_RT_Ist", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 228, + name: "ID_WEB_RBE_RT_Soll", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 229, + name: "ID_WEB_Temperatur_BW_oben", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 230, + name: "ID_WEB_Code_WP_akt_2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 231, + name: "ID_WEB_Freq_VD", + lsb: 0, + width: 32, + class: "frequency", + writeable: "", + unit: "Hz", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 232, + name: "Unknown_Calculation_232", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 232, + name: "Vapourisation_Temperature", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 233, + name: "Unknown_Calculation_233", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 233, + name: "Liquefaction_Temperature", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 234, + name: "Unknown_Calculation_234", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 235, + name: "Unknown_Calculation_235", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 236, + name: "Unknown_Calculation_236", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 236, + name: "ID_WEB_Freq_VD_Soll", + lsb: 0, + width: 32, + class: "frequency", + writeable: "", + unit: "Hz", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 237, + name: "Unknown_Calculation_237", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 237, + name: "ID_WEB_Freq_VD_Min", + lsb: 0, + width: 32, + class: "frequency", + writeable: "", + unit: "Hz", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 238, + name: "Unknown_Calculation_238", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 238, + name: "ID_WEB_Freq_VD_Max", + lsb: 0, + width: 32, + class: "frequency", + writeable: "", + unit: "Hz", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 239, + name: "Unknown_Calculation_239", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 239, + name: "VBO_Temp_Spread_Soll", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 240, + name: "Unknown_Calculation_240", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 240, + name: "VBO_Temp_Spread_Ist", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 241, + name: "HUP_PWM", + lsb: 0, + width: 32, + class: "percent", + writeable: "", + unit: "%", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 241, + name: "Circulation_Pump", + lsb: 0, + width: 32, + class: "percent", + writeable: "", + unit: "%", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 242, + name: "Unknown_Calculation_242", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 242, + name: "HUP_Temp_Spread_Soll", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 243, + name: "Unknown_Calculation_243", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 243, + name: "HUP_Temp_Spread_Ist", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 244, + name: "Unknown_Calculation_244", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 245, + name: "Unknown_Calculation_245", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 246, + name: "Unknown_Calculation_246", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 247, + name: "Unknown_Calculation_247", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 248, + name: "Unknown_Calculation_248", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 249, + name: "Unknown_Calculation_249", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 250, + name: "Unknown_Calculation_250", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 251, + name: "Unknown_Calculation_251", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 252, + name: "Unknown_Calculation_252", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 253, + name: "Unknown_Calculation_253", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 254, + name: "Flow_Rate_254", + lsb: 0, + width: 32, + class: "flow", + writeable: "", + unit: "l/h", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 255, + name: "Unknown_Calculation_255", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 256, + name: "Unknown_Calculation_256", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 257, + name: "Heat_Output", + lsb: 0, + width: 32, + class: "power", + writeable: "", + unit: "W", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 258, + name: "Unknown_Calculation_258", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 258, + name: "RBE_Version", + lsb: 0, + width: 32, + class: "version", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 259, + name: "Unknown_Calculation_259", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 260, + name: "Unknown_Calculation_260", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 261, + name: "Unknown_Calculation_261", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 262, + name: "Unknown_Calculation_262", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 263, + name: "Unknown_Calculation_263", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 264, + name: "Unknown_Calculation_264", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 265, + name: "Unknown_Calculation_265", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 266, + name: "Unknown_Calculation_266", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 267, + name: "Desired_Room_Temperature", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 268, + name: "AC_Power_Input", + lsb: 0, + width: 32, + class: "power", + writeable: "", + unit: "W", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 269, + name: "Unknown_Calculation_269", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 270, + name: "Unknown_Calculation_270", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 271, + name: "Unknown_Calculation_271", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 272, + name: "Unknown_Calculation_272", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 273, + name: "Unknown_Calculation_273", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 274, + name: "Unknown_Calculation_274", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + } +]; \ No newline at end of file diff --git a/docs/holding.js b/docs/holding.js new file mode 100644 index 00000000..92fc4b5e --- /dev/null +++ b/docs/holding.js @@ -0,0 +1,543 @@ +window.HOLDING = [ + { + category: "holding", + index: 0, + name: "heating_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for heating operation\n0: no influence\n1: Heating setpoint\n2: Heating offset\n3: Heating level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 1, + name: "heating_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current return temperature setpoint (tRL) for heating. Value may be limited by heat pump controller settings. Requires heating_mode = setpoint to apply." + },{ + category: "holding", + index: 2, + name: "heating_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current return temperature setpoint (tRL) for heating. Requires heating_mode = offset to apply." + },{ + category: "holding", + index: 3, + name: "heating_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the heating temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 5, + name: "hot_water_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for domestic hot water operation\n0: no influence\n1: DHW setpoint\n2: DHW offset\n3: DHW level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 5, + name: "dhw_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for domestic hot water operation\n0: no influence\n1: DHW setpoint\n2: DHW offset\n3: DHW level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 6, + name: "hot_water_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current DHW setpoint. Value may be limited by heat pump controller settings. Requires dhw_mode = setpoint to apply." + },{ + category: "holding", + index: 6, + name: "dhw_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current DHW setpoint. Value may be limited by heat pump controller settings. Requires dhw_mode = setpoint to apply." + },{ + category: "holding", + index: 7, + name: "hot_water_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current DHW setpoint. Requires dhw_mode = offset to apply." + },{ + category: "holding", + index: 7, + name: "dhw_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current DHW setpoint. Requires dhw_mode = offset to apply." + },{ + category: "holding", + index: 8, + name: "hot_water_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the hot water temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 8, + name: "dhw_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the hot water temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 10, + name: "mc1_heat_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 1 heating operation\n0: no influence\n1: Heating setpoint\n2: Heating offset\n3: Heating level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 11, + name: "mc1_heat_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 1 heating. Value may be limited by heat pump controller settings. Requires mc1_heat_mode = setpoint to apply." + },{ + category: "holding", + index: 12, + name: "mc1_heat_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 1 heating. Requires mc1_heat_mode = offset to apply." + },{ + category: "holding", + index: 13, + name: "mc1_heat_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the mixing circuit 1 temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 15, + name: "mc1_cool_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 1 cooling operation\n0: no influence\n1: Cooling setpoint\n2: Cooling offset\n3: Cooling level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 16, + name: "mc1_cool_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 1 cooling. Value may be limited by heat pump controller settings. Requires mc1_cool_mode = setpoint to apply." + },{ + category: "holding", + index: 17, + name: "mc1_cool_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 1 cooling. Requires mc1_cool_mode = offset to apply." + },{ + category: "holding", + index: 20, + name: "mc2_heat_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 2 heating operation\n0: no influence\n1: Heating setpoint\n2: Heating offset\n3: Heating level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 21, + name: "mc2_heat_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 2 heating. Value may be limited by heat pump controller settings. Requires mc2_heat_mode = setpoint to apply." + },{ + category: "holding", + index: 22, + name: "mc2_heat_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 2 heating. Requires mc2_heat_mode = offset to apply." + },{ + category: "holding", + index: 23, + name: "mc2_heat_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the mixing circuit 2 temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 25, + name: "mc2_cool_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 2 cooling operation\n0: no influence\n1: Cooling setpoint\n2: Cooling offset\n3: Cooling level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 26, + name: "mc2_cool_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 2 cooling. Value may be limited by heat pump controller settings. Requires mc2_cool_mode = setpoint to apply." + },{ + category: "holding", + index: 27, + name: "mc2_cool_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 2 cooling. Requires mc2_cool_mode = offset to apply." + },{ + category: "holding", + index: 30, + name: "mc3_heat_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 3 heating operation\n0: no influence\n1: Heating setpoint\n2: Heating offset\n3: Heating level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 31, + name: "mc3_heat_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 3 heating. Value may be limited by heat pump controller settings. Requires mc3_heat_mode = setpoint to apply." + },{ + category: "holding", + index: 32, + name: "mc3_heat_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 3 heating. Requires mc3_heat_mode = offset to apply." + },{ + category: "holding", + index: 33, + name: "mc3_heat_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease the mixing circuit 3 temperature using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 35, + name: "mc3_cool_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for mixing circuit 3 cooling operation\n0: no influence\n1: Cooling setpoint\n2: Cooling offset\n3: Cooling level\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 36, + name: "mc3_cool_setpoint", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "°C", + since: "3.90.1", + until: "", + description: "Overrides the current flow temperature for mixing circuit 3 cooling. Value may be limited by heat pump controller settings. Requires mc3_cool_mode = setpoint to apply." + },{ + category: "holding", + index: 37, + name: "mc3_cool_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.90.1", + until: "", + description: "Offset applied to the current flow temperature for mixing circuit 3 cooling. Requires mc3_cool_mode = offset to apply." + },{ + category: "holding", + index: 40, + name: "lpc_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Configuration for limitation of power consumption:\n0: no power limitation (normal operation)\nSetpoint values are achieved with heat pump performance curve\n1: Soft limitation (recommended for PV surplus)\nPower recommendation for heat pump, i.e., heat pump attempts to limit power demand according to data point pc_limit If the actual value deviates too much from the setpoint (hysteresis), the heat pump ignores the PC Limit power specification.\n2: Hard limitation (recommended only for §14a EnWG).\nThe heat pump limits the power consumption according to pc_limit regardless of hysteresis. Hard limitation may reduce comfort.\n\nUser-Options:\nNo limit\nSoft limit\nHard limit" + },{ + category: "holding", + index: 41, + name: "pc_limit", + lsb: 0, + width: 16, + class: "power", + writeable: "y", + unit: "kW", + since: "3.90.1", + until: "", + description: "Maximum allowed power consumption of the heat pump. Requires lpc_mode to be set accordingly." + },{ + category: "holding", + index: 50, + name: "lock_heating", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Lock state for the heating function\n\nUser-Options:\nOff\nOn" + },{ + category: "holding", + index: 51, + name: "lock_hot_water", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Lock state for the hot water system\n\nUser-Options:\nOff\nOn" + },{ + category: "holding", + index: 52, + name: "lock_cooling", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Cooling operation lock.\n0: normal operation\n1: lock passive and active cooling.\nFrequent switching may cause wear on heat pump and hydraulic components.\n\nUser-Options:\nOff\nOn" + },{ + category: "holding", + index: 53, + name: "lock_swimming_pool", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.90.1", + until: "", + description: "Swimming pool heating lock.\n0: normal operation\n1: lock pool heating.\nFrequent switching may cause wear on heat pump and hydraulic components.\n\nUser-Options:\nOff\nOn" + },{ + category: "holding", + index: 60, + name: "unknown_holding_60", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.1", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "holding", + index: 65, + name: "heat_overall_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Operating mode of all heating functions (no setpoint available)\n\nUser-Options:\nOff\nSetpoint\nOffset\nLevel" + },{ + category: "holding", + index: 66, + name: "heat_overall_offset", + lsb: 0, + width: 16, + class: "temperature", + writeable: "y", + unit: "K", + since: "3.92.0", + until: "", + description: "Temperature correction in Kelvin for all heating functions" + },{ + category: "holding", + index: 67, + name: "heat_overall_level", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "Increase or decrease all heating temperatures using the SHI offset settings.\n\nUser-Options:\nNormal\nIncreased\nIncreased2\nDecreased" + },{ + category: "holding", + index: 70, + name: "circulation", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "When set to ON, the circulation pump is activated, but only if no time schedule is configured for it.\n\nUser-Options:\nOff\nOn" + },{ + category: "holding", + index: 71, + name: "hot_water_extra", + lsb: 0, + width: 16, + class: "selection", + writeable: "y", + unit: "", + since: "3.92.0", + until: "", + description: "When set to ON, the hot water heating is activated and will run until the maximum temperature is reached.\n\nUser-Options:\nOff\nOn" + } +]; \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000..0b4ab332 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,133 @@ + + + + + +Luxtronik data fields + + + + + +

Luxtronik data fields

+ +

+

Generated automatically on
+
Build version:
+ Note: Use regular expressions to refine your search +

+ +
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CategoryIndexNameLSBWidthClassUnitWriteableSinceUntilDescription
+ + + + + + + + + + + + + + diff --git a/docs/input.js b/docs/input.js new file mode 100644 index 00000000..31a1277f --- /dev/null +++ b/docs/input.js @@ -0,0 +1,1119 @@ +window.INPUT = [ + { + category: "input", + index: 0, + name: "heatpump_vd1_status", + lsb: 0, + width: 1, + class: "boolean", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether VD1 is running" + },{ + category: "input", + index: 0, + name: "heatpump_vd2_status", + lsb: 1, + width: 1, + class: "boolean", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether VD2 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe1_status", + lsb: 2, + width: 1, + class: "boolean", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE1 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe2_status", + lsb: 3, + width: 1, + class: "boolean", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE2 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe3_status", + lsb: 4, + width: 1, + class: "boolean", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE3 is running" + },{ + category: "input", + index: 0, + name: "heatpump_status", + lsb: 0, + width: 16, + class: "bitmask", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Heat pump status bitmask:\n1: VD1\n2: VD2\n4: ZWE1\n8: ZWE2\n16: ZWE3\n0: Heat pump inactive\n>0: Heat pump or auxiliary heater active" + },{ + category: "input", + index: 2, + name: "operation_mode", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Operating mode status:\n0: Heating\n1: DHW heating\n2: Pool heating / Solar\n3: Utility lockout\n4: Defrost\n5: No demand\n6: Not used\n7: Cooling" + },{ + category: "input", + index: 3, + name: "heating_status", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Heating status:\n0: Off\n1: No demand\n2: Demand\n3: Active" + },{ + category: "input", + index: 4, + name: "hot_water_status", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "DHW status:\n0: Off\n1: No demand\n2: Demand\n3: Active" + },{ + category: "input", + index: 4, + name: "dhw_status", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "DHW status:\n0: Off\n1: No demand\n2: Demand\n3: Active" + },{ + category: "input", + index: 6, + name: "cooling_status", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Cooling status:\n0: Off\n1: No demand\n2: Demand\n3: Active" + },{ + category: "input", + index: 7, + name: "pool_heating_status", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Pool heating / Solar status:\n0: Off\n1: No demand\n2: Demand\n3: Active" + },{ + category: "input", + index: 100, + name: "return_line_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current return line temperature" + },{ + category: "input", + index: 101, + name: "return_line_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Target return line temperature" + },{ + category: "input", + index: 102, + name: "return_line_ext", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current value of the external return temperature sensor" + },{ + category: "input", + index: 103, + name: "return_line_limit", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum allowed return line temperature" + },{ + category: "input", + index: 104, + name: "return_line_min_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum target return line temperature" + },{ + category: "input", + index: 105, + name: "flow_line_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current flow line temperature" + },{ + category: "input", + index: 106, + name: "room_temperature", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current room temperature. Requires accessory RBE+ room control unit." + },{ + category: "input", + index: 107, + name: "heating_limit", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Heating limit temperature. If undershot (heating curve setpoint - hysteresis), soft-limit power control is ignored." + },{ + category: "input", + index: 108, + name: "outside_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Measured outdoor temperature" + },{ + category: "input", + index: 109, + name: "outside_temp_average", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.92.0", + until: "", + description: "Average outdoor temperature" + },{ + category: "input", + index: 110, + name: "heat_source_input", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.92.0", + until: "", + description: "Heat source input temperature" + },{ + category: "input", + index: 111, + name: "heat_source_output", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.92.0", + until: "", + description: "Heat source output temperature" + },{ + category: "input", + index: 112, + name: "max_flow_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.92.0", + until: "", + description: "Maximum flow temperature" + },{ + category: "input", + index: 113, + name: "unknown_input_113", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 120, + name: "hot_water_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current hot water temperature" + },{ + category: "input", + index: 120, + name: "dhw_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current hot water temperature" + },{ + category: "input", + index: 121, + name: "hot_water_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Target hot water temperature" + },{ + category: "input", + index: 121, + name: "dhw_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Target hot water temperature" + },{ + category: "input", + index: 122, + name: "hot_water_min", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum adjustable hot water temperature" + },{ + category: "input", + index: 122, + name: "dhw_min", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum adjustable hot water temperature" + },{ + category: "input", + index: 123, + name: "hot_water_max", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum adjustable hot water temperature" + },{ + category: "input", + index: 123, + name: "dhw_max", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum adjustable hot water temperature" + },{ + category: "input", + index: 124, + name: "hot_water_limit", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "DHW limit temperature. If undershot (desired regulation value), soft-limit power control is ignored." + },{ + category: "input", + index: 124, + name: "dhw_limit", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "DHW limit temperature. If undershot (desired regulation value), soft-limit power control is ignored." + },{ + category: "input", + index: 140, + name: "mc1_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 1" + },{ + category: "input", + index: 141, + name: "mc1_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 1" + },{ + category: "input", + index: 142, + name: "mc1_min", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 1" + },{ + category: "input", + index: 143, + name: "mc1_max", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 1" + },{ + category: "input", + index: 150, + name: "mc2_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 2" + },{ + category: "input", + index: 151, + name: "mc2_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 2" + },{ + category: "input", + index: 152, + name: "mc2_min", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 2" + },{ + category: "input", + index: 153, + name: "mc2_max", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 2" + },{ + category: "input", + index: 160, + name: "mc3_temp", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 3" + },{ + category: "input", + index: 161, + name: "mc3_target", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 3" + },{ + category: "input", + index: 162, + name: "mc3_min", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 3" + },{ + category: "input", + index: 163, + name: "mc3_max", + lsb: 0, + width: 16, + class: "temperature", + writeable: "", + unit: "°C", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 3" + },{ + category: "input", + index: 201, + name: "error_number", + lsb: 0, + width: 16, + class: "errorcode", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Current error number:\n0: no error\nX: error code." + },{ + category: "input", + index: 202, + name: "buffer_type", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Buffer tank configuration:\n0: series buffer\n1: separation buffer\n2: multifunction buffer." + },{ + category: "input", + index: 203, + name: "min_off_time", + lsb: 0, + width: 16, + class: "timespan", + writeable: "", + unit: "min", + since: "3.90.1", + until: "", + description: "Minimum off-time before heat pump may restart." + },{ + category: "input", + index: 204, + name: "min_run_time", + lsb: 0, + width: 16, + class: "timespan", + writeable: "", + unit: "min", + since: "3.90.1", + until: "", + description: "Minimum runtime of the heat pump." + },{ + category: "input", + index: 205, + name: "cooling_configured", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether cooling mode is configured:\n0: no\n1: yes." + },{ + category: "input", + index: 206, + name: "pool_heating_configured", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Indicates whether pool heating is configured:\n0: no\n1: yes." + },{ + category: "input", + index: 207, + name: "cooling_release", + lsb: 0, + width: 16, + class: "selection", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Cooling release condition fulfilled:\n0: no\n1: yes.\nCooling release only valid if cooling is enabled (see cooling_configured)." + },{ + category: "input", + index: 300, + name: "heating_power_actual", + lsb: 0, + width: 16, + class: "power", + writeable: "", + unit: "kW", + since: "3.90.1", + until: "", + description: "Current heating power." + },{ + category: "input", + index: 301, + name: "electric_power_actual", + lsb: 0, + width: 16, + class: "power", + writeable: "", + unit: "kW", + since: "3.90.1", + until: "", + description: "Current electrical power consumption." + },{ + category: "input", + index: 302, + name: "electric_power_min_predicted", + lsb: 0, + width: 16, + class: "power", + writeable: "", + unit: "kW", + since: "3.90.1", + until: "", + description: "Minimum predicted electrical power consumption." + },{ + category: "input", + index: 310, + name: "electric_energy_total", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption (all modes)." + },{ + category: "input", + index: 312, + name: "electric_energy_heating", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for heating." + },{ + category: "input", + index: 314, + name: "electric_energy_dhw", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for DHW." + },{ + category: "input", + index: 316, + name: "electric_energy_cooling", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for cooling." + },{ + category: "input", + index: 318, + name: "electric_energy_pool", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for pool heating / solar." + },{ + category: "input", + index: 320, + name: "thermal_energy_total", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.92.0", + until: "", + description: "Total thermal energy production (all modes)." + },{ + category: "input", + index: 322, + name: "thermal_energy_heating", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.92.0", + until: "", + description: "Total thermal energy production for heating." + },{ + category: "input", + index: 324, + name: "thermal_energy_dhw", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.92.0", + until: "", + description: "Total thermal energy production for DHW." + },{ + category: "input", + index: 326, + name: "thermal_energy_cooling", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.92.0", + until: "", + description: "Total thermal energy production for cooling." + },{ + category: "input", + index: 328, + name: "thermal_energy_pool", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "3.92.0", + until: "", + description: "Total thermal energy production for pool heating / solar." + },{ + category: "input", + index: 350, + name: "unknown_input_350", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 351, + name: "unknown_input_351", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 352, + name: "unknown_input_352", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 353, + name: "unknown_input_353", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 354, + name: "unknown_input_354", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 355, + name: "unknown_input_355", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 356, + name: "unknown_input_356", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 360, + name: "unknown_input_360", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 361, + name: "unknown_input_361", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 400, + name: "version", + lsb: 0, + width: 16, + class: "version", + writeable: "", + unit: "", + since: "3.90.1", + until: "", + description: "Full firmware version information" + },{ + category: "input", + index: 404, + name: "unknown_input_404", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 405, + name: "unknown_input_405", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 406, + name: "unknown_input_406", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 407, + name: "unknown_input_407", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 408, + name: "unknown_input_408", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 409, + name: "unknown_input_409", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 410, + name: "unknown_input_410", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 411, + name: "unknown_input_411", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 412, + name: "unknown_input_412", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 413, + name: "unknown_input_413", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 416, + name: "unknown_input_416", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 417, + name: "unknown_input_417", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 500, + name: "unknown_input_500", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 501, + name: "unknown_input_501", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 502, + name: "unknown_input_502", + lsb: 0, + width: 16, + class: "None", + writeable: "", + unit: "", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + } +]; \ No newline at end of file diff --git a/docs/meta.js b/docs/meta.js new file mode 100644 index 00000000..80022c50 --- /dev/null +++ b/docs/meta.js @@ -0,0 +1,4 @@ +window.META = { + createdOn: "2026-03-13 22:03:59", + version: "0.3.14-471-g744b418" +}; \ No newline at end of file diff --git a/docs/parameter.js b/docs/parameter.js new file mode 100644 index 00000000..c4a8e7c6 --- /dev/null +++ b/docs/parameter.js @@ -0,0 +1,14763 @@ +window.PARAMETER = [ + { + category: "parameter", + index: 0, + name: "ID_Transfert_LuxNet", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1, + name: "ID_Einst_WK_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 2, + name: "ID_Einst_BWS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 3, + name: "ID_Ba_Hz_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 4, + name: "ID_Ba_Bw_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 5, + name: "ID_Ba_Al_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 6, + name: "ID_SU_FrkdHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 7, + name: "ID_SU_FrkdBw", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 8, + name: "ID_SU_FrkdAl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 9, + name: "ID_Einst_HReg_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 10, + name: "ID_Einst_HzHwMAt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 11, + name: "ID_Einst_HzHwHKE_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 12, + name: "ID_Einst_HzHKRANH_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 13, + name: "ID_Einst_HzHKRABS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 14, + name: "ID_Einst_HzMK1E_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 15, + name: "ID_Einst_HzMK1ANH_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 16, + name: "ID_Einst_HzMK1ABS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 17, + name: "ID_Einst_HzFtRl_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 18, + name: "ID_Einst_HzFtMK1Vl_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 19, + name: "ID_Einst_SUBW_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 20, + name: "ID_Einst_BwTDI_akt_MO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 21, + name: "ID_Einst_BwTDI_akt_DI", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 22, + name: "ID_Einst_BwTDI_akt_MI", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 23, + name: "ID_Einst_BwTDI_akt_DO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 24, + name: "ID_Einst_BwTDI_akt_FR", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 25, + name: "ID_Einst_BwTDI_akt_SA", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 26, + name: "ID_Einst_BwTDI_akt_SO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 27, + name: "ID_Einst_BwTDI_akt_AL", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 28, + name: "ID_Einst_AnlKonf_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 29, + name: "ID_Einst_Sprache_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 30, + name: "ID_Switchoff_Zahler", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 31, + name: "ID_Switchoff_index", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 32, + name: "ID_Einst_EvuTyp_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 33, + name: "ID_Einst_RFVEinb_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 34, + name: "ID_Einst_AbtZykMax_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 35, + name: "ID_Einst_HREinb_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 36, + name: "ID_Einst_ZWE1Art_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 37, + name: "ID_Einst_ZWE1Fkt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 38, + name: "ID_Einst_ZWE2Art_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 39, + name: "ID_Einst_ZWE2Fkt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 40, + name: "ID_Einst_BWBer_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 41, + name: "ID_Einst_En_Inst", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 42, + name: "ID_Einst_MK1Typ_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 43, + name: "ID_Einst_ABTLuft_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 44, + name: "ID_Einst_TLAbt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 45, + name: "ID_Einst_LAbtTime_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 46, + name: "ID_Einst_ASDTyp_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 47, + name: "ID_Einst_LGST_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 48, + name: "ID_Einst_BwWpTime_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 49, + name: "ID_Einst_Popt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 50, + name: "ID_Einst_Kurzprog_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 51, + name: "ID_Timer_Kurzprog_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 52, + name: "ID_Einst_ManAbt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 53, + name: "ID_Einst_Ahz_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 54, + name: "ID_Einst_TVL_Ahz_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 55, + name: "ID_Einst_TVL_Ahz_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 56, + name: "ID_Einst_TVL_Ahz_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 57, + name: "ID_Einst_TVL_Ahz_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 58, + name: "ID_Einst_TVL_Ahz_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 59, + name: "ID_Einst_TVL_Ahz_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 60, + name: "ID_Einst_TVL_Ahz_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 61, + name: "ID_Einst_TVL_Ahz_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 62, + name: "ID_Einst_TVL_Ahz_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 63, + name: "ID_Einst_TVL_Ahz_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 64, + name: "ID_Einst_TVL_Std_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 65, + name: "ID_Einst_TVL_Std_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 66, + name: "ID_Einst_TVL_Std_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 67, + name: "ID_Einst_TVL_Std_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 68, + name: "ID_Einst_TVL_Std_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 69, + name: "ID_Einst_TVL_Std_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 70, + name: "ID_Einst_TVL_Std_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 71, + name: "ID_Einst_TVL_Std_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 72, + name: "ID_Einst_TVL_Std_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 73, + name: "ID_Einst_TVL_Std_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 74, + name: "ID_Einst_BWS_Hyst_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 75, + name: "ID_Temp_TBW_BwHD_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 76, + name: "ID_Einst_ABT1_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 77, + name: "ID_Einst_LABTpaus_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 78, + name: "ID_AHZ_state_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 79, + name: "ID_Sollwert_TRL_HZ_AHZ", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 80, + name: "ID_AHP_valid_records", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 81, + name: "ID_Timer_AHZ_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 82, + name: "ID_Einst_BWTINP_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 83, + name: "ID_Einst_ZUPTYP_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 84, + name: "ID_Sollwert_TLG_max", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 85, + name: "ID_Einst_BWZIP_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 86, + name: "ID_Einst_ERRmZWE_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 87, + name: "ID_Einst_TRBegr_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 88, + name: "ID_Einst_HRHyst_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 89, + name: "ID_Einst_TRErhmax_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 90, + name: "ID_Einst_ZWEFreig_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 91, + name: "ID_Einst_TAmax_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 92, + name: "ID_Einst_TAmin_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 93, + name: "ID_Einst_TWQmin_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 94, + name: "ID_Einst_THGmax_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 95, + name: "ID_Einst_FRGT2VD_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 96, + name: "ID_Einst_TV2VDBW_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 97, + name: "ID_Einst_SuAll_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 98, + name: "ID_Einst_TAbtEnd_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 99, + name: "ID_Einst_NrKlingel_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 100, + name: "ID_Einst_BWStyp_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 101, + name: "ID_Einst_ABT2_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 102, + name: "ID_Einst_UeVd_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 103, + name: "ID_Einst_RTyp_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 104, + name: "ID_Einst_AhpM_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 105, + name: "ID_Soll_BWS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 106, + name: "ID_Timer_Password", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 107, + name: "ID_Einst_Zugangscode", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nuser\nafter sales service\nmanufacturer\ninstaller" + },{ + category: "parameter", + index: 108, + name: "ID_Einst_BA_Kuehl_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nOff\nAutomatic" + },{ + category: "parameter", + index: 109, + name: "ID_Sollwert_Kuehl1_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 110, + name: "ID_Einst_KuehlFreig_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 111, + name: "ID_Einst_TAbsMin_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 112, + name: "ID_TWQmin_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 113, + name: "ID_CWP_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 114, + name: "ID_Einst_Anode_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 115, + name: "ID_Timer_pexoff_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 116, + name: "ID_Einst_AnlPrio_Hzakt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 117, + name: "ID_Einst_AnlPrio_Bwakt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 118, + name: "ID_Einst_AnlPrio_Swakt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 119, + name: "ID_Ba_Sw_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 120, + name: "ID_Einst_RTypMK1_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 121, + name: "ID_Einst_RTypMK2_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 122, + name: "ID_Einst_TDC_Ein_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 123, + name: "ID_Einst_TDC_Aus_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "K", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 124, + name: "ID_Einst_TDC_Max_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 125, + name: "ID_Einst_HysHzExEn_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 126, + name: "ID_Einst_HysBwExEn_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 127, + name: "ID_Einst_ZWE3Art_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 128, + name: "ID_Einst_ZWE3Fkt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 129, + name: "ID_Einst_HzSup_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 130, + name: "ID_Einst_MK2Typ_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 131, + name: "ID_Einst_KuTyp_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 132, + name: "ID_Sollwert_KuCft1_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 133, + name: "ID_Sollwert_KuCft2_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 134, + name: "ID_Sollwert_AtDif1_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 135, + name: "ID_Sollwert_AtDif2_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 136, + name: "ID_SU_FrkdSwb", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 137, + name: "ID_Einst_SwbBer_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 138, + name: "ID_Einst_TV2VDSWB_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 139, + name: "ID_Einst_MinSwan_Time_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 140, + name: "ID_Einst_SuMk2_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 141, + name: "ID_Einst_HzMK2E_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 142, + name: "ID_Einst_HzMK2ANH_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 143, + name: "ID_Einst_HzMK2ABS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 144, + name: "ID_Einst_HzMK2Hgr_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 145, + name: "ID_Einst_HzFtMK2Vl_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 146, + name: "ID_Temp_THG_BwHD_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 147, + name: "ID_Temp_TA_BwHD_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 148, + name: "ID_Einst_BwHup_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 149, + name: "ID_Einst_TVLmax_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 150, + name: "ID_Einst_MK1LzFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 151, + name: "ID_Einst_MK2LzFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 152, + name: "ID_Einst_MK1PerFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 153, + name: "ID_Einst_MK2PerFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 154, + name: "ID_Entl_Zyklus_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 155, + name: "ID_Einst_Entl_time_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 156, + name: "ID_Entl_Pause", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 157, + name: "ID_Entl_timer", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 158, + name: "ID_Einst_Entl_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 159, + name: "ID_Ahz_HLeist_confirmed", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 160, + name: "ID_FirstInit_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 161, + name: "ID_Einst_SuAll_akt2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 162, + name: "ID_Einst_SuAllWo_zeit_0_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 163, + name: "ID_Einst_SuAllWo_zeit_0_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 164, + name: "ID_Einst_SuAllWo_zeit_1_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 165, + name: "ID_Einst_SuAllWo_zeit_1_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 166, + name: "ID_Einst_SuAllWo_zeit_2_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 167, + name: "ID_Einst_SuAllWo_zeit_2_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 168, + name: "ID_Einst_SuAll25_zeit_0_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 169, + name: "ID_Einst_SuAll25_zeit_0_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 170, + name: "ID_Einst_SuAll25_zeit_1_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 171, + name: "ID_Einst_SuAll25_zeit_1_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 172, + name: "ID_Einst_SuAll25_zeit_2_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 173, + name: "ID_Einst_SuAll25_zeit_2_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 174, + name: "ID_Einst_SuAll25_zeit_0_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 175, + name: "ID_Einst_SuAll25_zeit_0_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 176, + name: "ID_Einst_SuAll25_zeit_1_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 177, + name: "ID_Einst_SuAll25_zeit_1_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 178, + name: "ID_Einst_SuAll25_zeit_2_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 179, + name: "ID_Einst_SuAll25_zeit_2_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 180, + name: "ID_Einst_SuAllTg_zeit_0_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 181, + name: "ID_Einst_SuAllTg_zeit_0_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 182, + name: "ID_Einst_SuAllTg_zeit_1_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 183, + name: "ID_Einst_SuAllTg_zeit_1_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 184, + name: "ID_Einst_SuAllTg_zeit_2_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 185, + name: "ID_Einst_SuAllTg_zeit_2_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 186, + name: "ID_Einst_SuAllTg_zeit_0_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 187, + name: "ID_Einst_SuAllTg_zeit_0_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 188, + name: "ID_Einst_SuAllTg_zeit_1_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 189, + name: "ID_Einst_SuAllTg_zeit_1_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 190, + name: "ID_Einst_SuAllTg_zeit_2_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 191, + name: "ID_Einst_SuAllTg_zeit_2_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 192, + name: "ID_Einst_SuAllTg_zeit_0_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 193, + name: "ID_Einst_SuAllTg_zeit_0_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 194, + name: "ID_Einst_SuAllTg_zeit_1_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 195, + name: "ID_Einst_SuAllTg_zeit_1_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 196, + name: "ID_Einst_SuAllTg_zeit_2_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 197, + name: "ID_Einst_SuAllTg_zeit_2_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 198, + name: "ID_Einst_SuAllTg_zeit_0_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 199, + name: "ID_Einst_SuAllTg_zeit_0_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 200, + name: "ID_Einst_SuAllTg_zeit_1_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 201, + name: "ID_Einst_SuAllTg_zeit_1_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 202, + name: "ID_Einst_SuAllTg_zeit_2_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 203, + name: "ID_Einst_SuAllTg_zeit_2_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 204, + name: "ID_Einst_SuAllTg_zeit_0_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 205, + name: "ID_Einst_SuAllTg_zeit_0_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 206, + name: "ID_Einst_SuAllTg_zeit_1_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 207, + name: "ID_Einst_SuAllTg_zeit_1_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 208, + name: "ID_Einst_SuAllTg_zeit_2_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 209, + name: "ID_Einst_SuAllTg_zeit_2_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 210, + name: "ID_Einst_SuAllTg_zeit_0_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 211, + name: "ID_Einst_SuAllTg_zeit_0_11", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 212, + name: "ID_Einst_SuAllTg_zeit_1_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 213, + name: "ID_Einst_SuAllTg_zeit_1_11", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 214, + name: "ID_Einst_SuAllTg_zeit_2_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 215, + name: "ID_Einst_SuAllTg_zeit_2_11", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 216, + name: "ID_Einst_SuAllTg_zeit_0_12", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 217, + name: "ID_Einst_SuAllTg_zeit_0_13", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 218, + name: "ID_Einst_SuAllTg_zeit_1_12", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 219, + name: "ID_Einst_SuAllTg_zeit_1_13", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 220, + name: "ID_Einst_SuAllTg_zeit_2_12", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 221, + name: "ID_Einst_SuAllTg_zeit_2_13", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 222, + name: "ID_Einst_SuHkr_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 223, + name: "ID_Einst_SuHkrW0_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 224, + name: "ID_Einst_SuHkrW0_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 225, + name: "ID_Einst_SuHkrW0_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 226, + name: "ID_Einst_SuHkrW0_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 227, + name: "ID_Einst_SuHkrW0_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 228, + name: "ID_Einst_SuHkrW0_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 229, + name: "ID_Einst_SuHkr25_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 230, + name: "ID_Einst_SuHkr25_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 231, + name: "ID_Einst_SuHkr25_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 232, + name: "ID_Einst_SuHkr25_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 233, + name: "ID_Einst_SuHkr25_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 234, + name: "ID_Einst_SuHkr25_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 235, + name: "ID_Einst_SuHkr25_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 236, + name: "ID_Einst_SuHkr25_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 237, + name: "ID_Einst_SuHkr25_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 238, + name: "ID_Einst_SuHkr25_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 239, + name: "ID_Einst_SuHkr25_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 240, + name: "ID_Einst_SuHkr25_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 241, + name: "ID_Einst_SuHkrTG_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 242, + name: "ID_Einst_SuHkrTG_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 243, + name: "ID_Einst_SuHkrTG_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 244, + name: "ID_Einst_SuHkrTG_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 245, + name: "ID_Einst_SuHkrTG_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 246, + name: "ID_Einst_SuHkrTG_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 247, + name: "ID_Einst_SuHkrTG_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 248, + name: "ID_Einst_SuHkrTG_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 249, + name: "ID_Einst_SuHkrTG_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 250, + name: "ID_Einst_SuHkrTG_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 251, + name: "ID_Einst_SuHkrTG_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 252, + name: "ID_Einst_SuHkrTG_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 253, + name: "ID_Einst_SuHkrTG_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 254, + name: "ID_Einst_SuHkrTG_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 255, + name: "ID_Einst_SuHkrTG_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 256, + name: "ID_Einst_SuHkrTG_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 257, + name: "ID_Einst_SuHkrTG_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 258, + name: "ID_Einst_SuHkrTG_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 259, + name: "ID_Einst_SuHkrTG_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 260, + name: "ID_Einst_SuHkrTG_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 261, + name: "ID_Einst_SuHkrTG_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 262, + name: "ID_Einst_SuHkrTG_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 263, + name: "ID_Einst_SuHkrTG_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 264, + name: "ID_Einst_SuHkrTG_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 265, + name: "ID_Einst_SuHkrTG_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 266, + name: "ID_Einst_SuHkrTG_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 267, + name: "ID_Einst_SuHkrTG_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 268, + name: "ID_Einst_SuHkrTG_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 269, + name: "ID_Einst_SuHkrTG_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 270, + name: "ID_Einst_SuHkrTG_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 271, + name: "ID_Einst_SuHkrTG_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 272, + name: "ID_Einst_SuHkrTG_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 273, + name: "ID_Einst_SuHkrTG_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 274, + name: "ID_Einst_SuHkrTG_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 275, + name: "ID_Einst_SuHkrTG_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 276, + name: "ID_Einst_SuHkrTG_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 277, + name: "ID_Einst_SuHkrTG_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 278, + name: "ID_Einst_SuHkrTG_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 279, + name: "ID_Einst_SuHkrTG_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 280, + name: "ID_Einst_SuHkrTG_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 281, + name: "ID_Einst_SuHkrTG_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 282, + name: "ID_Einst_SuHkrTG_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 283, + name: "ID_Einst_SuMk1_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 284, + name: "ID_Einst_SuMk1W0_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 285, + name: "ID_Einst_SuMk1W0_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 286, + name: "ID_Einst_SuMk1W0_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 287, + name: "ID_Einst_SuMk1W0_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 288, + name: "ID_Einst_SuMk1W0_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 289, + name: "ID_Einst_SuMk1W0_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 290, + name: "ID_Einst_SuMk125_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 291, + name: "ID_Einst_SuMk125_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 292, + name: "ID_Einst_SuMk125_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 293, + name: "ID_Einst_SuMk125_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 294, + name: "ID_Einst_SuMk125_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 295, + name: "ID_Einst_SuMk125_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 296, + name: "ID_Einst_SuMk125_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 297, + name: "ID_Einst_SuMk125_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 298, + name: "ID_Einst_SuMk125_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 299, + name: "ID_Einst_SuMk125_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 300, + name: "ID_Einst_SuMk125_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 301, + name: "ID_Einst_SuMk125_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 302, + name: "ID_Einst_SuMk1TG_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 303, + name: "ID_Einst_SuMk1TG_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 304, + name: "ID_Einst_SuMk1TG_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 305, + name: "ID_Einst_SuMk1TG_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 306, + name: "ID_Einst_SuMk1TG_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 307, + name: "ID_Einst_SuMk1TG_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 308, + name: "ID_Einst_SuMk1TG_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 309, + name: "ID_Einst_SuMk1TG_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 310, + name: "ID_Einst_SuMk1TG_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 311, + name: "ID_Einst_SuMk1TG_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 312, + name: "ID_Einst_SuMk1TG_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 313, + name: "ID_Einst_SuMk1TG_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 314, + name: "ID_Einst_SuMk1TG_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 315, + name: "ID_Einst_SuMk1TG_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 316, + name: "ID_Einst_SuMk1TG_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 317, + name: "ID_Einst_SuMk1TG_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 318, + name: "ID_Einst_SuMk1TG_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 319, + name: "ID_Einst_SuMk1TG_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 320, + name: "ID_Einst_SuMk1TG_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 321, + name: "ID_Einst_SuMk1TG_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 322, + name: "ID_Einst_SuMk1TG_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 323, + name: "ID_Einst_SuMk1TG_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 324, + name: "ID_Einst_SuMk1TG_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 325, + name: "ID_Einst_SuMk1TG_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 326, + name: "ID_Einst_SuMk1TG_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 327, + name: "ID_Einst_SuMk1TG_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 328, + name: "ID_Einst_SuMk1TG_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 329, + name: "ID_Einst_SuMk1TG_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 330, + name: "ID_Einst_SuMk1TG_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 331, + name: "ID_Einst_SuMk1TG_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 332, + name: "ID_Einst_SuMk1TG_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 333, + name: "ID_Einst_SuMk1TG_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 334, + name: "ID_Einst_SuMk1TG_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 335, + name: "ID_Einst_SuMk1TG_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 336, + name: "ID_Einst_SuMk1TG_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 337, + name: "ID_Einst_SuMk1TG_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 338, + name: "ID_Einst_SuMk1TG_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 339, + name: "ID_Einst_SuMk1TG_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 340, + name: "ID_Einst_SuMk1TG_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 341, + name: "ID_Einst_SuMk1TG_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 342, + name: "ID_Einst_SuMk1TG_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 343, + name: "ID_Einst_SuMk1TG_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 344, + name: "ID_Einst_SuMk2_akt2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 345, + name: "ID_Einst_SuMk2Wo_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 346, + name: "ID_Einst_SuMk2Wo_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 347, + name: "ID_Einst_SuMk2Wo_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 348, + name: "ID_Einst_SuMk2Wo_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 349, + name: "ID_Einst_SuMk2Wo_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 350, + name: "ID_Einst_SuMk2Wo_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 351, + name: "ID_Einst_SuMk225_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 352, + name: "ID_Einst_SuMk225_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 353, + name: "ID_Einst_SuMk225_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 354, + name: "ID_Einst_SuMk225_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 355, + name: "ID_Einst_SuMk225_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 356, + name: "ID_Einst_SuMk225_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 357, + name: "ID_Einst_SuMk225_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 358, + name: "ID_Einst_SuMk225_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 359, + name: "ID_Einst_SuMk225_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 360, + name: "ID_Einst_SuMk225_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 361, + name: "ID_Einst_SuMk225_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 362, + name: "ID_Einst_SuMk225_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 363, + name: "ID_Einst_SuMk2Tg_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 364, + name: "ID_Einst_SuMk2Tg_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 365, + name: "ID_Einst_SuMk2Tg_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 366, + name: "ID_Einst_SuMk2Tg_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 367, + name: "ID_Einst_SuMk2Tg_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 368, + name: "ID_Einst_SuMk2Tg_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 369, + name: "ID_Einst_SuMk2Tg_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 370, + name: "ID_Einst_SuMk2Tg_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 371, + name: "ID_Einst_SuMk2Tg_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 372, + name: "ID_Einst_SuMk2Tg_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 373, + name: "ID_Einst_SuMk2Tg_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 374, + name: "ID_Einst_SuMk2Tg_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 375, + name: "ID_Einst_SuMk2Tg_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 376, + name: "ID_Einst_SuMk2Tg_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 377, + name: "ID_Einst_SuMk2Tg_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 378, + name: "ID_Einst_SuMk2Tg_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 379, + name: "ID_Einst_SuMk2Tg_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 380, + name: "ID_Einst_SuMk2Tg_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 381, + name: "ID_Einst_SuMk2Tg_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 382, + name: "ID_Einst_SuMk2Tg_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 383, + name: "ID_Einst_SuMk2Tg_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 384, + name: "ID_Einst_SuMk2Tg_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 385, + name: "ID_Einst_SuMk2Tg_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 386, + name: "ID_Einst_SuMk2Tg_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 387, + name: "ID_Einst_SuMk2Tg_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 388, + name: "ID_Einst_SuMk2Tg_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 389, + name: "ID_Einst_SuMk2Tg_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 390, + name: "ID_Einst_SuMk2Tg_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 391, + name: "ID_Einst_SuMk2Tg_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 392, + name: "ID_Einst_SuMk2Tg_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 393, + name: "ID_Einst_SuMk2Tg_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 394, + name: "ID_Einst_SuMk2Tg_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 395, + name: "ID_Einst_SuMk2Tg_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 396, + name: "ID_Einst_SuMk2Tg_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 397, + name: "ID_Einst_SuMk2Tg_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 398, + name: "ID_Einst_SuMk2Tg_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 399, + name: "ID_Einst_SuMk2Tg_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 400, + name: "ID_Einst_SuMk2Tg_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 401, + name: "ID_Einst_SuMk2Tg_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 402, + name: "ID_Einst_SuMk2Tg_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 403, + name: "ID_Einst_SuMk2Tg_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 404, + name: "ID_Einst_SuMk2Tg_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 405, + name: "ID_Einst_SUBW_akt2", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 406, + name: "ID_Einst_SuBwWO_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 407, + name: "ID_Einst_SuBwWO_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 408, + name: "ID_Einst_SuBwWO_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 409, + name: "ID_Einst_SuBwWO_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 410, + name: "ID_Einst_SuBwWO_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 411, + name: "ID_Einst_SuBwWO_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 412, + name: "ID_Einst_SuBwWO_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 413, + name: "ID_Einst_SuBwWO_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 414, + name: "ID_Einst_SuBwWO_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 415, + name: "ID_Einst_SuBwWO_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 416, + name: "ID_Einst_SuBw25_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 417, + name: "ID_Einst_SuBw25_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 418, + name: "ID_Einst_SuBw25_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 419, + name: "ID_Einst_SuBw25_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 420, + name: "ID_Einst_SuBw25_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 421, + name: "ID_Einst_SuBw25_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 422, + name: "ID_Einst_SuBw25_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 423, + name: "ID_Einst_SuBw25_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 424, + name: "ID_Einst_SuBw25_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 425, + name: "ID_Einst_SuBw25_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 426, + name: "ID_Einst_SuBw25_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 427, + name: "ID_Einst_SuBw25_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 428, + name: "ID_Einst_SuBw25_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 429, + name: "ID_Einst_SuBw25_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 430, + name: "ID_Einst_SuBw25_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 431, + name: "ID_Einst_SuBw25_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 432, + name: "ID_Einst_SuBw25_zeit_3_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 433, + name: "ID_Einst_SuBw25_zeit_3_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 434, + name: "ID_Einst_SuBw25_zeit_4_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 435, + name: "ID_Einst_SuBw25_zeit_4_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 436, + name: "ID_Einst_SuBwTG_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 437, + name: "ID_Einst_SuBwTG_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 438, + name: "ID_Einst_SuBwTG_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 439, + name: "ID_Einst_SuBwTG_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 440, + name: "ID_Einst_SuBwTG_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 441, + name: "ID_Einst_SuBwTG_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 442, + name: "ID_Einst_SuBwTG_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 443, + name: "ID_Einst_SuBwTG_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 444, + name: "ID_Einst_SuBwTG_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 445, + name: "ID_Einst_SuBwTG_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 446, + name: "ID_Einst_SuBwTG_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 447, + name: "ID_Einst_SuBwTG_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 448, + name: "ID_Einst_SuBwTG_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 449, + name: "ID_Einst_SuBwTG_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 450, + name: "ID_Einst_SuBwTG_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 451, + name: "ID_Einst_SuBwTG_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 452, + name: "ID_Einst_SuBwTG_zeit_3_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 453, + name: "ID_Einst_SuBwTG_zeit_3_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 454, + name: "ID_Einst_SuBwTG_zeit_4_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 455, + name: "ID_Einst_SuBwTG_zeit_4_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 456, + name: "ID_Einst_SuBwTG_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 457, + name: "ID_Einst_SuBwTG_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 458, + name: "ID_Einst_SuBwTG_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 459, + name: "ID_Einst_SuBwTG_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 460, + name: "ID_Einst_SuBwTG_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 461, + name: "ID_Einst_SuBwTG_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 462, + name: "ID_Einst_SuBwTG_zeit_3_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 463, + name: "ID_Einst_SuBwTG_zeit_3_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 464, + name: "ID_Einst_SuBwTG_zeit_4_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 465, + name: "ID_Einst_SuBwTG_zeit_4_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 466, + name: "ID_Einst_SuBwTG_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 467, + name: "ID_Einst_SuBwTG_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 468, + name: "ID_Einst_SuBwTG_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 469, + name: "ID_Einst_SuBwTG_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 470, + name: "ID_Einst_SuBwTG_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 471, + name: "ID_Einst_SuBwTG_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 472, + name: "ID_Einst_SuBwTG_zeit_3_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 473, + name: "ID_Einst_SuBwTG_zeit_3_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 474, + name: "ID_Einst_SuBwTG_zeit_4_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 475, + name: "ID_Einst_SuBwTG_zeit_4_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 476, + name: "ID_Einst_SuBwTG_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 477, + name: "ID_Einst_SuBwTG_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 478, + name: "ID_Einst_SuBwTG_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 479, + name: "ID_Einst_SuBwTG_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 480, + name: "ID_Einst_SuBwTG_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 481, + name: "ID_Einst_SuBwTG_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 482, + name: "ID_Einst_SuBwTG_zeit_3_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 483, + name: "ID_Einst_SuBwTG_zeit_3_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 484, + name: "ID_Einst_SuBwTG_zeit_4_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 485, + name: "ID_Einst_SuBwTG_zeit_4_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 486, + name: "ID_Einst_SuBwTG_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 487, + name: "ID_Einst_SuBwTG_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 488, + name: "ID_Einst_SuBwTG_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 489, + name: "ID_Einst_SuBwTG_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 490, + name: "ID_Einst_SuBwTG_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 491, + name: "ID_Einst_SuBwTG_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 492, + name: "ID_Einst_SuBwTG_zeit_3_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 493, + name: "ID_Einst_SuBwTG_zeit_3_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 494, + name: "ID_Einst_SuBwTG_zeit_4_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 495, + name: "ID_Einst_SuBwTG_zeit_4_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 496, + name: "ID_Einst_SuBwTG_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 497, + name: "ID_Einst_SuBwTG_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 498, + name: "ID_Einst_SuBwTG_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 499, + name: "ID_Einst_SuBwTG_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 500, + name: "ID_Einst_SuBwTG_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 501, + name: "ID_Einst_SuBwTG_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 502, + name: "ID_Einst_SuBwTG_zeit_3_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 503, + name: "ID_Einst_SuBwTG_zeit_3_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 504, + name: "ID_Einst_SuBwTG_zeit_4_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 505, + name: "ID_Einst_SuBwTG_zeit_4_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 506, + name: "ID_Einst_SuZIP_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 507, + name: "ID_Einst_SuZIPWo_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 508, + name: "ID_Einst_SuZIPWo_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 509, + name: "ID_Einst_SuZIPWo_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 510, + name: "ID_Einst_SuZIPWo_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 511, + name: "ID_Einst_SuZIPWo_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 512, + name: "ID_Einst_SuZIPWo_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 513, + name: "ID_Einst_SuZIPWo_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 514, + name: "ID_Einst_SuZIPWo_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 515, + name: "ID_Einst_SuZIPWo_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 516, + name: "ID_Einst_SuZIPWo_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 517, + name: "ID_Einst_SuZIP25_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 518, + name: "ID_Einst_SuZIP25_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 519, + name: "ID_Einst_SuZIP25_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 520, + name: "ID_Einst_SuZIP25_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 521, + name: "ID_Einst_SuZIP25_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 522, + name: "ID_Einst_SuZIP25_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 523, + name: "ID_Einst_SuZIP25_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 524, + name: "ID_Einst_SuZIP25_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 525, + name: "ID_Einst_SuZIP25_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 526, + name: "ID_Einst_SuZIP25_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 527, + name: "ID_Einst_SuZIP25_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 528, + name: "ID_Einst_SuZIP25_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 529, + name: "ID_Einst_SuZIP25_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 530, + name: "ID_Einst_SuZIP25_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 531, + name: "ID_Einst_SuZIP25_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 532, + name: "ID_Einst_SuZIP25_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 533, + name: "ID_Einst_SuZIP25_zeit_3_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 534, + name: "ID_Einst_SuZIP25_zeit_3_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 535, + name: "ID_Einst_SuZIP25_zeit_4_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 536, + name: "ID_Einst_SuZIP25_zeit_4_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 537, + name: "ID_Einst_SuZIPTg_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 538, + name: "ID_Einst_SuZIPTg_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 539, + name: "ID_Einst_SuZIPTg_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 540, + name: "ID_Einst_SuZIPTg_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 541, + name: "ID_Einst_SuZIPTg_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 542, + name: "ID_Einst_SuZIPTg_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 543, + name: "ID_Einst_SuZIPTg_zeit_3_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 544, + name: "ID_Einst_SuZIPTg_zeit_3_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 545, + name: "ID_Einst_SuZIPTg_zeit_4_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 546, + name: "ID_Einst_SuZIPTg_zeit_4_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 547, + name: "ID_Einst_SuZIPTg_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 548, + name: "ID_Einst_SuZIPTg_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 549, + name: "ID_Einst_SuZIPTg_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 550, + name: "ID_Einst_SuZIPTg_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 551, + name: "ID_Einst_SuZIPTg_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 552, + name: "ID_Einst_SuZIPTg_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 553, + name: "ID_Einst_SuZIPTg_zeit_3_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 554, + name: "ID_Einst_SuZIPTg_zeit_3_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 555, + name: "ID_Einst_SuZIPTg_zeit_4_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 556, + name: "ID_Einst_SuZIPTg_zeit_4_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 557, + name: "ID_Einst_SuZIPTg_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 558, + name: "ID_Einst_SuZIPTg_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 559, + name: "ID_Einst_SuZIPTg_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 560, + name: "ID_Einst_SuZIPTg_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 561, + name: "ID_Einst_SuZIPTg_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 562, + name: "ID_Einst_SuZIPTg_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 563, + name: "ID_Einst_SuZIPTg_zeit_3_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 564, + name: "ID_Einst_SuZIPTg_zeit_3_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 565, + name: "ID_Einst_SuZIPTg_zeit_4_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 566, + name: "ID_Einst_SuZIPTg_zeit_4_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 567, + name: "ID_Einst_SuZIPTg_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 568, + name: "ID_Einst_SuZIPTg_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 569, + name: "ID_Einst_SuZIPTg_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 570, + name: "ID_Einst_SuZIPTg_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 571, + name: "ID_Einst_SuZIPTg_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 572, + name: "ID_Einst_SuZIPTg_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 573, + name: "ID_Einst_SuZIPTg_zeit_3_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 574, + name: "ID_Einst_SuZIPTg_zeit_3_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 575, + name: "ID_Einst_SuZIPTg_zeit_4_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 576, + name: "ID_Einst_SuZIPTg_zeit_4_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 577, + name: "ID_Einst_SuZIPTg_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 578, + name: "ID_Einst_SuZIPTg_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 579, + name: "ID_Einst_SuZIPTg_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 580, + name: "ID_Einst_SuZIPTg_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 581, + name: "ID_Einst_SuZIPTg_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 582, + name: "ID_Einst_SuZIPTg_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 583, + name: "ID_Einst_SuZIPTg_zeit_3_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 584, + name: "ID_Einst_SuZIPTg_zeit_3_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 585, + name: "ID_Einst_SuZIPTg_zeit_4_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 586, + name: "ID_Einst_SuZIPTg_zeit_4_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 587, + name: "ID_Einst_SuZIPTg_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 588, + name: "ID_Einst_SuZIPTg_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 589, + name: "ID_Einst_SuZIPTg_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 590, + name: "ID_Einst_SuZIPTg_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 591, + name: "ID_Einst_SuZIPTg_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 592, + name: "ID_Einst_SuZIPTg_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 593, + name: "ID_Einst_SuZIPTg_zeit_3_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 594, + name: "ID_Einst_SuZIPTg_zeit_3_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 595, + name: "ID_Einst_SuZIPTg_zeit_4_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 596, + name: "ID_Einst_SuZIPTg_zeit_4_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 597, + name: "ID_Einst_SuZIPTg_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 598, + name: "ID_Einst_SuZIPTg_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 599, + name: "ID_Einst_SuZIPTg_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 600, + name: "ID_Einst_SuZIPTg_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 601, + name: "ID_Einst_SuZIPTg_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 602, + name: "ID_Einst_SuZIPTg_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 603, + name: "ID_Einst_SuZIPTg_zeit_3_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 604, + name: "ID_Einst_SuZIPTg_zeit_3_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 605, + name: "ID_Einst_SuZIPTg_zeit_4_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 606, + name: "ID_Einst_SuZIPTg_zeit_4_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 607, + name: "ID_Einst_SuSwb_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 608, + name: "ID_Einst_SuSwbWo_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 609, + name: "ID_Einst_SuSwbWo_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 610, + name: "ID_Einst_SuSwbWo_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 611, + name: "ID_Einst_SuSwbWo_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 612, + name: "ID_Einst_SuSwbWo_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 613, + name: "ID_Einst_SuSwbWo_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 614, + name: "ID_Einst_SuSwb25_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 615, + name: "ID_Einst_SuSwb25_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 616, + name: "ID_Einst_SuSwb25_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 617, + name: "ID_Einst_SuSwb25_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 618, + name: "ID_Einst_SuSwb25_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 619, + name: "ID_Einst_SuSwb25_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 620, + name: "ID_Einst_SuSwb25_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 621, + name: "ID_Einst_SuSwb25_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 622, + name: "ID_Einst_SuSwb25_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 623, + name: "ID_Einst_SuSwb25_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 624, + name: "ID_Einst_SuSwb25_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 625, + name: "ID_Einst_SuSwb25_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 626, + name: "ID_Einst_SuSwbTg_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 627, + name: "ID_Einst_SuSwbTg_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 628, + name: "ID_Einst_SuSwbTg_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 629, + name: "ID_Einst_SuSwbTg_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 630, + name: "ID_Einst_SuSwbTg_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 631, + name: "ID_Einst_SuSwbTg_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 632, + name: "ID_Einst_SuSwbTg_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 633, + name: "ID_Einst_SuSwbTg_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 634, + name: "ID_Einst_SuSwbTg_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 635, + name: "ID_Einst_SuSwbTg_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 636, + name: "ID_Einst_SuSwbTg_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 637, + name: "ID_Einst_SuSwbTg_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 638, + name: "ID_Einst_SuSwbTg_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 639, + name: "ID_Einst_SuSwbTg_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 640, + name: "ID_Einst_SuSwbTg_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 641, + name: "ID_Einst_SuSwbTg_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 642, + name: "ID_Einst_SuSwbTg_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 643, + name: "ID_Einst_SuSwbTg_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 644, + name: "ID_Einst_SuSwbTg_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 645, + name: "ID_Einst_SuSwbTg_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 646, + name: "ID_Einst_SuSwbTg_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 647, + name: "ID_Einst_SuSwbTg_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 648, + name: "ID_Einst_SuSwbTg_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 649, + name: "ID_Einst_SuSwbTg_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 650, + name: "ID_Einst_SuSwbTg_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 651, + name: "ID_Einst_SuSwbTg_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 652, + name: "ID_Einst_SuSwbTg_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 653, + name: "ID_Einst_SuSwbTg_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 654, + name: "ID_Einst_SuSwbTg_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 655, + name: "ID_Einst_SuSwbTg_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 656, + name: "ID_Einst_SuSwbTg_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 657, + name: "ID_Einst_SuSwbTg_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 658, + name: "ID_Einst_SuSwbTg_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 659, + name: "ID_Einst_SuSwbTg_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 660, + name: "ID_Einst_SuSwbTg_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 661, + name: "ID_Einst_SuSwbTg_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 662, + name: "ID_Einst_SuSwbTg_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 663, + name: "ID_Einst_SuSwbTg_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 664, + name: "ID_Einst_SuSwbTg_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 665, + name: "ID_Einst_SuSwbTg_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 666, + name: "ID_Einst_SuSwbTg_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 667, + name: "ID_Einst_SuSwbTg_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 668, + name: "ID_Zaehler_BetrZeitWP", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 669, + name: "ID_Zaehler_BetrZeitVD1", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 670, + name: "ID_Zaehler_BetrZeitVD2", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 671, + name: "ID_Zaehler_BetrZeitZWE1", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 672, + name: "ID_Zaehler_BetrZeitZWE2", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 673, + name: "ID_Zaehler_BetrZeitZWE3", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 674, + name: "ID_Zaehler_BetrZeitImpVD1", + lsb: 0, + width: 32, + class: "count", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 675, + name: "ID_Zaehler_BetrZeitImpVD2", + lsb: 0, + width: 32, + class: "count", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 676, + name: "ID_Zaehler_BetrZeitEZMVD1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 677, + name: "ID_Zaehler_BetrZeitEZMVD2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 678, + name: "ID_Einst_Entl_Typ_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 679, + name: "ID_Einst_Entl_Typ_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 680, + name: "ID_Einst_Entl_Typ_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 681, + name: "ID_Einst_Entl_Typ_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 682, + name: "ID_Einst_Entl_Typ_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 683, + name: "ID_Einst_Entl_Typ_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 684, + name: "ID_Einst_Entl_Typ_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 685, + name: "ID_Einst_Entl_Typ_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 686, + name: "ID_Einst_Entl_Typ_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 687, + name: "ID_Einst_Entl_Typ_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 688, + name: "ID_Einst_Entl_Typ_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 689, + name: "ID_Einst_Entl_Typ_11", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 690, + name: "ID_Einst_Entl_Typ_12", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 691, + name: "ID_Einst_Vorl_max_MK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 692, + name: "ID_Einst_Vorl_max_MK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 693, + name: "ID_SU_FrkdMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 694, + name: "ID_SU_FrkdMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 695, + name: "ID_Ba_Hz_MK1_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 696, + name: "ID_Ba_Hz_MK2_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 697, + name: "ID_Einst_Zirk_Ein_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 698, + name: "ID_Einst_Zirk_Aus_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 699, + name: "ID_Einst_Heizgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 700, + name: "ID_Einst_Heizgrenze_Temp", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 701, + name: "ID_VariablenIBNgespeichert", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 702, + name: "ID_SchonIBNAssistant", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 703, + name: "ID_Heizgrenze_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 704, + name: "ID_Heizgrenze_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 705, + name: "ID_Heizgrenze_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 706, + name: "ID_Heizgrenze_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 707, + name: "ID_Heizgrenze_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 708, + name: "ID_Heizgrenze_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 709, + name: "ID_Heizgrenze_6", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 710, + name: "ID_Heizgrenze_7", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 711, + name: "ID_Heizgrenze_8", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 712, + name: "ID_Heizgrenze_9", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 713, + name: "ID_Heizgrenze_10", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 714, + name: "ID_Heizgrenze_11", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 715, + name: "ID_SchemenIBNgewahlt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 716, + name: "ID_Switchoff_file_0_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 717, + name: "ID_Switchoff_file_1_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 718, + name: "ID_Switchoff_file_2_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 719, + name: "ID_Switchoff_file_3_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 720, + name: "ID_Switchoff_file_4_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 721, + name: "ID_Switchoff_file_0_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 722, + name: "ID_Switchoff_file_1_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 723, + name: "ID_Switchoff_file_2_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 724, + name: "ID_Switchoff_file_3_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 725, + name: "ID_Switchoff_file_4_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 726, + name: "ID_DauerDatenLoggerAktiv", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 727, + name: "ID_Laufvar_Heizgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 728, + name: "ID_Zaehler_BetrZeitHz", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 729, + name: "ID_Zaehler_BetrZeitBW", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 730, + name: "ID_Zaehler_BetrZeitKue", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 731, + name: "ID_SU_FstdHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 732, + name: "ID_SU_FstdBw", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 733, + name: "ID_SU_FstdSwb", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 734, + name: "ID_SU_FstdMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 735, + name: "ID_SU_FstdMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 736, + name: "ID_FerienAbsenkungHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 737, + name: "ID_FerienAbsenkungMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 738, + name: "ID_FerienAbsenkungMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 739, + name: "ID_FerienModusAktivHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 740, + name: "ID_FerienModusAktivBw", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 741, + name: "ID_FerienModusAktivSwb", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 742, + name: "ID_FerienModusAktivMk1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 743, + name: "ID_FerienModusAktivMk2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 744, + name: "ID_DisplayContrast_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 745, + name: "ID_Ba_Hz_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 746, + name: "ID_Ba_Bw_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 747, + name: "ID_Ba_Sw_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 748, + name: "ID_Ba_Hz_MK1_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 749, + name: "ID_Ba_Hz_MK2_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 750, + name: "ID_AdresseIP_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 751, + name: "ID_SubNetMask_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 752, + name: "ID_Add_Broadcast_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 753, + name: "ID_Add_StdGateway_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 754, + name: "ID_DHCPServerAktiv_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 755, + name: "ID_WebserverPasswort_1_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 756, + name: "ID_WebserverPasswort_2_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 757, + name: "ID_WebserverPasswort_3_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 758, + name: "ID_WebserverPasswort_4_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 759, + name: "ID_WebserverPasswort_5_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 760, + name: "ID_WebserverPasswort_6_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 761, + name: "ID_WebServerWerteBekommen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 762, + name: "ID_Einst_ParBetr_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 763, + name: "ID_Einst_WpAnz_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 764, + name: "ID_Einst_PhrTime_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 765, + name: "ID_Einst_HysPar_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 766, + name: "ID_IP_PB_Slave_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 767, + name: "ID_IP_PB_Slave_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 768, + name: "ID_IP_PB_Slave_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 769, + name: "ID_IP_PB_Slave_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 770, + name: "ID_IP_PB_Slave_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 771, + name: "ID_IP_PB_Slave_5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 772, + name: "ID_Einst_BwHup_akt_backup", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 773, + name: "ID_Einst_SuMk3_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 774, + name: "ID_Einst_HzMK3E_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 775, + name: "ID_Einst_HzMK3ANH_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 776, + name: "ID_Einst_HzMK3ABS_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 777, + name: "ID_Einst_HzMK3Hgr_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 778, + name: "ID_Einst_HzFtMK3Vl_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 779, + name: "ID_Ba_Hz_MK3_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 780, + name: "ID_Einst_MK3Typ_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 781, + name: "ID_Einst_RTypMK3_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 782, + name: "ID_Einst_MK3LzFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 783, + name: "ID_Einst_MK3PerFaktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 784, + name: "ID_FerienModusAktivMk3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 785, + name: "ID_SU_FrkdMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 786, + name: "ID_FerienAbsenkungMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 787, + name: "ID_SU_FstdMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 788, + name: "ID_Einst_SuMk3_akt2", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 789, + name: "ID_Einst_SuMk3Wo_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 790, + name: "ID_Einst_SuMk3Wo_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 791, + name: "ID_Einst_SuMk3Wo_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 792, + name: "ID_Einst_SuMk3Wo_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 793, + name: "ID_Einst_SuMk3Wo_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 794, + name: "ID_Einst_SuMk3Wo_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 795, + name: "ID_Einst_SuMk325_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 796, + name: "ID_Einst_SuMk325_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 797, + name: "ID_Einst_SuMk325_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 798, + name: "ID_Einst_SuMk325_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 799, + name: "ID_Einst_SuMk325_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 800, + name: "ID_Einst_SuMk325_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 801, + name: "ID_Einst_SuMk325_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 802, + name: "ID_Einst_SuMk325_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 803, + name: "ID_Einst_SuMk325_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 804, + name: "ID_Einst_SuMk325_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 805, + name: "ID_Einst_SuMk325_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 806, + name: "ID_Einst_SuMk325_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 807, + name: "ID_Einst_SuMk3Tg_zeit_0_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 808, + name: "ID_Einst_SuMk3Tg_zeit_0_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 809, + name: "ID_Einst_SuMk3Tg_zeit_1_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 810, + name: "ID_Einst_SuMk3Tg_zeit_1_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 811, + name: "ID_Einst_SuMk3Tg_zeit_2_0", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 812, + name: "ID_Einst_SuMk3Tg_zeit_2_1", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 813, + name: "ID_Einst_SuMk3Tg_zeit_0_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 814, + name: "ID_Einst_SuMk3Tg_zeit_0_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 815, + name: "ID_Einst_SuMk3Tg_zeit_1_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 816, + name: "ID_Einst_SuMk3Tg_zeit_1_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 817, + name: "ID_Einst_SuMk3Tg_zeit_2_2", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 818, + name: "ID_Einst_SuMk3Tg_zeit_2_3", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 819, + name: "ID_Einst_SuMk3Tg_zeit_0_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 820, + name: "ID_Einst_SuMk3Tg_zeit_0_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 821, + name: "ID_Einst_SuMk3Tg_zeit_1_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 822, + name: "ID_Einst_SuMk3Tg_zeit_1_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 823, + name: "ID_Einst_SuMk3Tg_zeit_2_4", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 824, + name: "ID_Einst_SuMk3Tg_zeit_2_5", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 825, + name: "ID_Einst_SuMk3Tg_zeit_0_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 826, + name: "ID_Einst_SuMk3Tg_zeit_0_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 827, + name: "ID_Einst_SuMk3Tg_zeit_1_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 828, + name: "ID_Einst_SuMk3Tg_zeit_1_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 829, + name: "ID_Einst_SuMk3Tg_zeit_2_6", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 830, + name: "ID_Einst_SuMk3Tg_zeit_2_7", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 831, + name: "ID_Einst_SuMk3Tg_zeit_0_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 832, + name: "ID_Einst_SuMk3Tg_zeit_0_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 833, + name: "ID_Einst_SuMk3Tg_zeit_1_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 834, + name: "ID_Einst_SuMk3Tg_zeit_1_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 835, + name: "ID_Einst_SuMk3Tg_zeit_2_8", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 836, + name: "ID_Einst_SuMk3Tg_zeit_2_9", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 837, + name: "ID_Einst_SuMk3Tg_zeit_0_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 838, + name: "ID_Einst_SuMk3Tg_zeit_0_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 839, + name: "ID_Einst_SuMk3Tg_zeit_1_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 840, + name: "ID_Einst_SuMk3Tg_zeit_1_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 841, + name: "ID_Einst_SuMk3Tg_zeit_2_10", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 842, + name: "ID_Einst_SuMk3Tg_zeit_2_11", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 843, + name: "ID_Einst_SuMk3Tg_zeit_0_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 844, + name: "ID_Einst_SuMk3Tg_zeit_0_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 845, + name: "ID_Einst_SuMk3Tg_zeit_1_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 846, + name: "ID_Einst_SuMk3Tg_zeit_1_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 847, + name: "ID_Einst_SuMk3Tg_zeit_2_12", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 848, + name: "ID_Einst_SuMk3Tg_zeit_2_13", + lsb: 0, + width: 32, + class: "timeofday", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 849, + name: "ID_Ba_Hz_MK3_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 850, + name: "ID_Einst_Kuhl_Zeit_Ein_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "y", + unit: "h", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 851, + name: "ID_Einst_Kuhl_Zeit_Aus_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "y", + unit: "h", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 852, + name: "ID_Waermemenge_Seit", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 853, + name: "ID_Waermemenge_WQ", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 854, + name: "ID_Waermemenge_Hz", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 855, + name: "ID_Waermemenge_WQ_ges", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 856, + name: "ID_Einst_Entl_Typ_13", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 857, + name: "ID_Einst_Entl_Typ_14", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 858, + name: "ID_Einst_Entl_Typ_15", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 859, + name: "ID_Zaehler_BetrZeitSW", + lsb: 0, + width: 32, + class: "timespan", + writeable: "", + unit: "s", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 860, + name: "ID_Einst_Fernwartung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 861, + name: "ID_AdresseIPServ_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 862, + name: "ID_Einst_TA_EG_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 863, + name: "ID_Einst_TVLmax_EG_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 864, + name: "ID_Einst_Popt_Nachlauf_akt", + lsb: 0, + width: 32, + class: "timespan", + writeable: "y", + unit: "min", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 865, + name: "ID_FernwartungVertrag_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 866, + name: "ID_FernwartungAktuZeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 867, + name: "ID_Einst_Effizienzpumpe_Nominal_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 868, + name: "ID_Einst_Effizienzpumpe_Minimal_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 869, + name: "ID_Einst_Effizienzpumpe_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 870, + name: "ID_Einst_Waermemenge_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 871, + name: "ID_Einst_Wm_Versorgung_Korrektur_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 872, + name: "ID_Einst_Wm_Auswertung_Korrektur_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 873, + name: "ID_SoftwareUpdateJetztGemacht_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 874, + name: "ID_WP_SerienNummer_DATUM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 875, + name: "ID_WP_SerienNummer_HEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 876, + name: "ID_WP_SerienNummer_INDEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 877, + name: "ID_ProgWerteWebSrvBeobarten", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 878, + name: "ID_Waermemenge_BW", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 879, + name: "ID_Waermemenge_SW", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 880, + name: "ID_Waermemenge_Datum", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 881, + name: "ID_Einst_Solar_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 882, + name: "ID_BSTD_Solar", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 883, + name: "ID_Einst_TDC_Koll_Max_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 884, + name: "ID_Einst_Akt_Kuehlung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 885, + name: "ID_Einst_Vorlauf_VBO_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 886, + name: "ID_Einst_KRHyst_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 887, + name: "ID_Einst_Akt_Kuehl_Speicher_min_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 888, + name: "ID_Einst_Akt_Kuehl_Freig_WQE_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 889, + name: "ID_NDAB_WW_Anzahl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 890, + name: "ID_NDS_WW_KD_Quitt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 891, + name: "ID_Einst_AbtZykMin_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 892, + name: "ID_Einst_VD2_Zeit_Min_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 893, + name: "ID_Einst_Hysterese_HR_verkuerzt_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 894, + name: "ID_Einst_BA_Lueftung_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "y", + unit: "", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 895, + name: "ID_Einst_SuLuf_akt", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 896, + name: "ID_Einst_SuLufWo_zeit_0_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 897, + name: "ID_Einst_SuLufWo_zeit_0_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 898, + name: "ID_Einst_SuLufWo_zeit_0_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 899, + name: "ID_Einst_SuLuf25_zeit_0_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 900, + name: "ID_Einst_SuLuf25_zeit_0_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 901, + name: "ID_Einst_SuLuf25_zeit_0_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 902, + name: "ID_Einst_SuLuf25_zeit_0_0_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 903, + name: "ID_Einst_SuLuf25_zeit_0_1_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 904, + name: "ID_Einst_SuLuf25_zeit_0_2_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 905, + name: "ID_Einst_SuLufTg_zeit_0_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 906, + name: "ID_Einst_SuLufTg_zeit_0_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 907, + name: "ID_Einst_SuLufTg_zeit_0_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 908, + name: "ID_Einst_SuLufTg_zeit_0_0_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 909, + name: "ID_Einst_SuLufTg_zeit_0_1_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 910, + name: "ID_Einst_SuLufTg_zeit_0_2_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 911, + name: "ID_Einst_SuLufTg_zeit_0_0_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 912, + name: "ID_Einst_SuLufTg_zeit_0_1_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 913, + name: "ID_Einst_SuLufTg_zeit_0_2_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 914, + name: "ID_Einst_SuLufTg_zeit_0_0_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 915, + name: "ID_Einst_SuLufTg_zeit_0_1_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 916, + name: "ID_Einst_SuLufTg_zeit_0_2_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 917, + name: "ID_Einst_SuLufTg_zeit_0_0_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 918, + name: "ID_Einst_SuLufTg_zeit_0_1_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 919, + name: "ID_Einst_SuLufTg_zeit_0_2_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 920, + name: "ID_Einst_SuLufTg_zeit_0_0_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 921, + name: "ID_Einst_SuLufTg_zeit_0_1_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 922, + name: "ID_Einst_SuLufTg_zeit_0_2_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 923, + name: "ID_Einst_SuLufTg_zeit_0_0_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 924, + name: "ID_Einst_SuLufTg_zeit_0_1_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 925, + name: "ID_Einst_SuLufTg_zeit_0_2_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 926, + name: "ID_Einst_SuLufWo_zeit_1_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 927, + name: "ID_Einst_SuLufWo_zeit_1_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 928, + name: "ID_Einst_SuLufWo_zeit_1_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 929, + name: "ID_Einst_SuLuf25_zeit_1_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 930, + name: "ID_Einst_SuLuf25_zeit_1_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 931, + name: "ID_Einst_SuLuf25_zeit_1_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 932, + name: "ID_Einst_SuLuf25_zeit_1_0_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 933, + name: "ID_Einst_SuLuf25_zeit_1_1_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 934, + name: "ID_Einst_SuLuf25_zeit_1_2_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 935, + name: "ID_Einst_SuLufTg_zeit_1_0_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 936, + name: "ID_Einst_SuLufTg_zeit_1_1_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 937, + name: "ID_Einst_SuLufTg_zeit_1_2_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 938, + name: "ID_Einst_SuLufTg_zeit_1_0_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 939, + name: "ID_Einst_SuLufTg_zeit_1_1_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 940, + name: "ID_Einst_SuLufTg_zeit_1_2_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 941, + name: "ID_Einst_SuLufTg_zeit_1_0_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 942, + name: "ID_Einst_SuLufTg_zeit_1_1_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 943, + name: "ID_Einst_SuLufTg_zeit_1_2_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 944, + name: "ID_Einst_SuLufTg_zeit_1_0_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 945, + name: "ID_Einst_SuLufTg_zeit_1_1_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 946, + name: "ID_Einst_SuLufTg_zeit_1_2_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 947, + name: "ID_Einst_SuLufTg_zeit_1_0_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 948, + name: "ID_Einst_SuLufTg_zeit_1_1_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 949, + name: "ID_Einst_SuLufTg_zeit_1_2_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 950, + name: "ID_Einst_SuLufTg_zeit_1_0_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 951, + name: "ID_Einst_SuLufTg_zeit_1_1_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 952, + name: "ID_Einst_SuLufTg_zeit_1_2_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 953, + name: "ID_Einst_SuLufTg_zeit_1_0_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 954, + name: "ID_Einst_SuLufTg_zeit_1_1_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 955, + name: "ID_Einst_SuLufTg_zeit_1_2_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 956, + name: "ID_FerienModusAktivLueftung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 957, + name: "ID_Einst_BA_Lueftung_saved", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 958, + name: "ID_SU_FrkdLueftung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 959, + name: "ID_SU_FstdLueftung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 960, + name: "ID_Einst_Luf_Feuchteschutz_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 961, + name: "ID_Einst_Luf_Reduziert_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 962, + name: "ID_Einst_Luf_Nennlueftung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 963, + name: "ID_Einst_Luf_Intensivlueftung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 964, + name: "ID_Timer_Fil_4Makt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 965, + name: "ID_Timer_Fil_WoAkt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 966, + name: "ID_Sollwert_KuCft3_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 967, + name: "ID_Sollwert_AtDif3_akt", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 968, + name: "ID_Bitmaske_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 969, + name: "ID_Einst_Lueftungsstufen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 970, + name: "ID_SysEin_Meldung_TDI", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 971, + name: "ID_SysEin_Typ_WZW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 972, + name: "ID_Einst_GLT_aktiviert", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 973, + name: "ID_Einst_BW_max", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 974, + name: "ID_Einst_Sollwert_TRL_Kuehlen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 975, + name: "ID_Einst_Medium_Waermequelle", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 976, + name: "ID_Einst_Photovoltaik_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 977, + name: "ID_Einst_Multispeicher_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 978, + name: "ID_Einst_PKuehlTime_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 979, + name: "ID_Einst_Minimale_Ruecklaufsolltemperatur", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 980, + name: "ID_RBE_Einflussfaktor_RT_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 981, + name: "ID_RBE_Freigabe_Kuehlung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 982, + name: "ID_RBE_Waermeverteilsystem_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 983, + name: "ID_RBE_Zeit_Heizstab_aktiv", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 984, + name: "ID_SEC_ND_Alarmgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 985, + name: "ID_SEC_HD_Alarmgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 986, + name: "ID_SEC_Abtauendtemperatur", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 987, + name: "ID_Einst_Min_RPM_BW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 988, + name: "ID_Einst_Luf_Feuchteschutz_Faktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 989, + name: "ID_Einst_Luf_Reduziert_Faktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 990, + name: "ID_Einst_Luf_Nennlueftung_Faktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 991, + name: "ID_Einst_Luf_Intensivlueftung_Faktor_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 992, + name: "ID_Einst_Freigabe_Zeit_ZWE", + lsb: 0, + width: 32, + class: "timespan", + writeable: "y", + unit: "min", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 993, + name: "ID_Einst_min_VL_Kuehl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 994, + name: "ID_Einst_Warmwasser_Nachheizung", + lsb: 0, + width: 32, + class: "boolean", + writeable: "y", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 995, + name: "ID_Switchoff_file_LWD2_0_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 996, + name: "ID_Switchoff_file_LWD2_1_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 997, + name: "ID_Switchoff_file_LWD2_2_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 998, + name: "ID_Switchoff_file_LWD2_3_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 999, + name: "ID_Switchoff_file_LWD2_4_0", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1000, + name: "ID_Switchoff_file_LWD2_0_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1001, + name: "ID_Switchoff_file_LWD2_1_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1002, + name: "ID_Switchoff_file_LWD2_2_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1003, + name: "ID_Switchoff_file_LWD2_3_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1004, + name: "ID_Switchoff_file_LWD2_4_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1005, + name: "ID_Switchoff_index_LWD2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1006, + name: "ID_Einst_Effizienzpumpe_Nominal_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1007, + name: "ID_Einst_Effizienzpumpe_Minimal_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1008, + name: "ID_Einst_Wm_Versorgung_Korrektur_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1009, + name: "ID_Einst_Wm_Auswertung_Korrektur_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1010, + name: "ID_Einst_isTwin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1011, + name: "ID_Einst_TAmin_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1012, + name: "ID_Einst_TVLmax_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1013, + name: "ID_Einst_TA_EG_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1014, + name: "ID_Einst_TVLmax_EG_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1015, + name: "ID_Waermemenge_Hz_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1016, + name: "ID_Waermemenge_BW_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1017, + name: "ID_Waermemenge_SW_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1018, + name: "ID_Waermemenge_Seit_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1019, + name: "ID_Einst_Entl_Typ_15_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1020, + name: "ID_Einst_WW_Nachheizung_max", + lsb: 0, + width: 32, + class: "timespan", + writeable: "y", + unit: "h", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1021, + name: "ID_Einst_Kuhl_Zeit_Ein_RT", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1022, + name: "ID_Einst_ZWE1_Pos", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1023, + name: "ID_Einst_ZWE2_Pos", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1024, + name: "ID_Einst_ZWE3_Pos", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1025, + name: "ID_Einst_Leistung_ZWE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1026, + name: "ID_WP_SN2_DATUM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1027, + name: "ID_WP_SN2_HEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1028, + name: "ID_WP_SN2_INDEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1029, + name: "ID_CWP_saved2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1030, + name: "ID_Einst_SmartGrid", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1031, + name: "ID_Einst_P155_HDS", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1032, + name: "ID_Einst_P155_PumpHeat_Max", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1033, + name: "ID_Einst_P155_PumpHeatCtrl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1034, + name: "ID_Einst_P155_PumpDHWCtrl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1035, + name: "ID_Einst_P155_PumpDHW_RPM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1036, + name: "ID_Einst_P155_PumpPoolCtrl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1037, + name: "ID_Einst_P155_PumpPool_RPM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1038, + name: "ID_Einst_P155_PumpCool_RPM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1039, + name: "ID_Einst_P155_PumpVBOCtrl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1040, + name: "ID_Einst_P155_PumpVBO_RPM_C", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1041, + name: "ID_Einst_P155_PumpDHW_Max", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1042, + name: "ID_Einst_P155_PumpPool_Max", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1043, + name: "ID_Einst_P155_Sperrband_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1044, + name: "ID_Einst_P155_Leistungsfreigabe", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1045, + name: "ID_Einst_P155_DHW_Freq", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1046, + name: "ID_Einst_SWHUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1047, + name: "ID_Einst_P155_SWB_Freq", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1048, + name: "ID_Einst_MK1_Regelung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1049, + name: "ID_Einst_MK2_Regelung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1050, + name: "ID_Einst_MK3_Regelung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1051, + name: "ID_Einst_PV_WW_Sperrzeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1052, + name: "ID_Einst_Warmwasser_extra", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1053, + name: "ID_Einst_Vorl_akt_Kuehl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1054, + name: "ID_WP_SN3_DATUM", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1055, + name: "ID_WP_SN3_HEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1056, + name: "ID_WP_SN3_INDEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1057, + name: "ID_Einst_Vorlauf_ZUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1058, + name: "ID_Einst_Abtauen_im_Warmwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1059, + name: "ID_Waermemenge_ZWE", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1060, + name: "ID_Waermemenge_Reset", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1061, + name: "ID_Waermemenge_Reset_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1062, + name: "ID_Einst_Brunnenpumpe_min", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1063, + name: "ID_Einst_Brunnenpumpe_max", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1064, + name: "ID_Einst_SmartHomeID", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1065, + name: "ID_Einst_SmartHK", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1066, + name: "ID_Einst_SmartMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1067, + name: "ID_Einst_SmartMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1068, + name: "ID_Einst_SmartMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1069, + name: "ID_Einst_SmartWW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1070, + name: "ID_Einst_SmartDefrost", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1071, + name: "ID_Einst_Empty1071", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1072, + name: "ID_Einst_MinVLMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1073, + name: "ID_Einst_MinVLMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1074, + name: "ID_Einst_MinVLMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1075, + name: "ID_Einst_MaxVLMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1076, + name: "ID_Einst_MaxVLMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1077, + name: "ID_Einst_MaxVLMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1078, + name: "ID_Einst_SmartPlusHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1079, + name: "ID_Einst_SmartMinusHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1080, + name: "ID_Einst_SmartPlusMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1081, + name: "ID_Einst_SmartMinusMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1082, + name: "ID_Einst_SmartPlusMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1083, + name: "ID_Einst_SmartMinusMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1084, + name: "ID_Einst_SmartPlusMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1085, + name: "ID_Einst_SmartMinusMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1086, + name: "Unknown_Parameter_1086", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1087, + name: "Unknown_Parameter_1087", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1087, + name: "SILENT_MODE", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1088, + name: "Unknown_Parameter_1088", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1089, + name: "Unknown_Parameter_1089", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1090, + name: "Unknown_Parameter_1090", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1091, + name: "Unknown_Parameter_1091", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1092, + name: "Unknown_Parameter_1092", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1092, + name: "ID_Einst_SuSilence", + lsb: 0, + width: 32, + class: "selection", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1093, + name: "Unknown_Parameter_1093", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1093, + name: "ID_Einst_SilenceTimer_0", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1094, + name: "Unknown_Parameter_1094", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1094, + name: "ID_Einst_SilenceTimer_1", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1095, + name: "Unknown_Parameter_1095", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1095, + name: "ID_Einst_SilenceTimer_2", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1096, + name: "Unknown_Parameter_1096", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1096, + name: "ID_Einst_SilenceTimer_3", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1097, + name: "Unknown_Parameter_1097", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1097, + name: "ID_Einst_SilenceTimer_4", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1098, + name: "Unknown_Parameter_1098", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1098, + name: "ID_Einst_SilenceTimer_5", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1099, + name: "Unknown_Parameter_1099", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1099, + name: "ID_Einst_SilenceTimer_6", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1100, + name: "Unknown_Parameter_1100", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1100, + name: "ID_Einst_SilenceTimer_7", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1101, + name: "Unknown_Parameter_1101", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1101, + name: "ID_Einst_SilenceTimer_8", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1102, + name: "Unknown_Parameter_1102", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1102, + name: "ID_Einst_SilenceTimer_9", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1103, + name: "Unknown_Parameter_1103", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1103, + name: "ID_Einst_SilenceTimer_10", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1104, + name: "Unknown_Parameter_1104", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1104, + name: "ID_Einst_SilenceTimer_11", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1105, + name: "Unknown_Parameter_1105", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1105, + name: "ID_Einst_SilenceTimer_12", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1106, + name: "Unknown_Parameter_1106", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1106, + name: "ID_Einst_SilenceTimer_13", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1107, + name: "Unknown_Parameter_1107", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1107, + name: "ID_Einst_SilenceTimer_14", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1108, + name: "Unknown_Parameter_1108", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1108, + name: "ID_Einst_SilenceTimer_15", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1109, + name: "Unknown_Parameter_1109", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1109, + name: "ID_Einst_SilenceTimer_16", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1110, + name: "Unknown_Parameter_1110", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1110, + name: "ID_Einst_SilenceTimer_17", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1111, + name: "Unknown_Parameter_1111", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1111, + name: "ID_Einst_SilenceTimer_18", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1112, + name: "Unknown_Parameter_1112", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1112, + name: "ID_Einst_SilenceTimer_19", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1113, + name: "Unknown_Parameter_1113", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1113, + name: "ID_Einst_SilenceTimer_20", + lsb: 0, + width: 32, + class: "timeofday2", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1114, + name: "Unknown_Parameter_1114", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1115, + name: "Unknown_Parameter_1115", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1116, + name: "Unknown_Parameter_1116", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1117, + name: "Unknown_Parameter_1117", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1118, + name: "Unknown_Parameter_1118", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1119, + name: "Unknown_Parameter_1119", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1119, + name: "LAST_DEFROST_TIMESTAMP", + lsb: 0, + width: 32, + class: "timestamp", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1120, + name: "Unknown_Parameter_1120", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1121, + name: "Unknown_Parameter_1121", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1122, + name: "Unknown_Parameter_1122", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1123, + name: "Unknown_Parameter_1123", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1124, + name: "Unknown_Parameter_1124", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1125, + name: "Unknown_Parameter_1125", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1126, + name: "Unknown_Parameter_1126", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1127, + name: "Unknown_Parameter_1127", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1128, + name: "Unknown_Parameter_1128", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1129, + name: "Unknown_Parameter_1129", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1130, + name: "Unknown_Parameter_1130", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1131, + name: "Unknown_Parameter_1131", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1132, + name: "Unknown_Parameter_1132", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1133, + name: "Unknown_Parameter_1133", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1134, + name: "Unknown_Parameter_1134", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1135, + name: "Unknown_Parameter_1135", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1136, + name: "Unknown_Parameter_1136", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1136, + name: "HEAT_ENERGY_INPUT", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1137, + name: "Unknown_Parameter_1137", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1137, + name: "DHW_ENERGY_INPUT", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1138, + name: "Unknown_Parameter_1138", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1139, + name: "Unknown_Parameter_1139", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1139, + name: "COOLING_ENERGY_INPUT", + lsb: 0, + width: 32, + class: "energy", + writeable: "", + unit: "kWh", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1140, + name: "SECOND_HEAT_GENERATOR_AMOUNT_COUNTER", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1140, + name: "Unknown_Parameter_1140", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1141, + name: "Unknown_Parameter_1141", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1142, + name: "Unknown_Parameter_1142", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1143, + name: "Unknown_Parameter_1143", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1144, + name: "Unknown_Parameter_1144", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1145, + name: "Unknown_Parameter_1145", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1146, + name: "Unknown_Parameter_1146", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1147, + name: "Unknown_Parameter_1147", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1148, + name: "Unknown_Parameter_1148", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1148, + name: "HEATING_TARGET_TEMP_ROOM_THERMOSTAT", + lsb: 0, + width: 32, + class: "temperature", + writeable: "y", + unit: "°C", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1149, + name: "Unknown_Parameter_1149", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1150, + name: "Unknown_Parameter_1150", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1151, + name: "Unknown_Parameter_1151", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1152, + name: "Unknown_Parameter_1152", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1153, + name: "Unknown_Parameter_1153", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1154, + name: "Unknown_Parameter_1154", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1155, + name: "Unknown_Parameter_1155", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1156, + name: "Unknown_Parameter_1156", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1157, + name: "Unknown_Parameter_1157", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1158, + name: "POWER_LIMIT_SWITCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1158, + name: "Unknown_Parameter_1158", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1159, + name: "POWER_LIMIT_VALUE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1159, + name: "Unknown_Parameter_1159", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1160, + name: "Unknown_Parameter_1160", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1161, + name: "Unknown_Parameter_1161", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1162, + name: "Unknown_Parameter_1162", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1163, + name: "Unknown_Parameter_1163", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1164, + name: "Unknown_Parameter_1164", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1165, + name: "Unknown_Parameter_1165", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1166, + name: "Unknown_Parameter_1166", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1167, + name: "Unknown_Parameter_1167", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1168, + name: "Unknown_Parameter_1168", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1169, + name: "Unknown_Parameter_1169", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1170, + name: "Unknown_Parameter_1170", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1171, + name: "Unknown_Parameter_1171", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1172, + name: "Unknown_Parameter_1172", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1173, + name: "Unknown_Parameter_1173", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1174, + name: "Unknown_Parameter_1174", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1175, + name: "Unknown_Parameter_1175", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1176, + name: "Unknown_Parameter_1176", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1177, + name: "Unknown_Parameter_1177", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1178, + name: "Unknown_Parameter_1178", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1179, + name: "Unknown_Parameter_1179", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1180, + name: "Unknown_Parameter_1180", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1181, + name: "Unknown_Parameter_1181", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1182, + name: "Unknown_Parameter_1182", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1183, + name: "Unknown_Parameter_1183", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1184, + name: "Unknown_Parameter_1184", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1185, + name: "Unknown_Parameter_1185", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1186, + name: "Unknown_Parameter_1186", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1187, + name: "Unknown_Parameter_1187", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1188, + name: "Unknown_Parameter_1188", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1189, + name: "Unknown_Parameter_1189", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1190, + name: "Unknown_Parameter_1190", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1191, + name: "Unknown_Parameter_1191", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1192, + name: "Unknown_Parameter_1192", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1193, + name: "Unknown_Parameter_1193", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1194, + name: "Unknown_Parameter_1194", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1195, + name: "Unknown_Parameter_1195", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1196, + name: "Unknown_Parameter_1196", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1197, + name: "Unknown_Parameter_1197", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1198, + name: "Unknown_Parameter_1198", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + } +]; \ No newline at end of file diff --git a/docs/scripts.js b/docs/scripts.js new file mode 100644 index 00000000..52cca898 --- /dev/null +++ b/docs/scripts.js @@ -0,0 +1,114 @@ + +// Combine all data sources +let data = [ + ...window.CALCULATION, + ...window.PARAMETER, + ...window.VISIBILITY, + ...window.INPUT, + ...window.HOLDING +]; + +const tableBody = document.querySelector("#table tbody"); +const filterFields = [...document.querySelectorAll("thead input")]; + +// Regex filter function +function matchesFilters(item) { + const fields = { + category: f_category.value.trim(), + index: f_index.value.trim(), + name: f_name.value.trim(), + lsb: f_lsb.value.trim(), + width: f_width.value.trim(), + class: f_class.value.trim(), + unit: f_unit.value.trim(), + writeable: f_writeable.value.trim(), + since: f_since.value.trim(), + until: f_until.value.trim(), + description: f_description.value.trim() + }; + + for (const key in fields) { + const filterValue = fields[key]; + if (!filterValue) continue; + + try { + const regex = new RegExp(filterValue, "i"); + if (!regex.test(String(item[key]))) return false; + } catch (e) { + return false; // invalid Regex -> no match + } + } + + return true; +} + +// hide or show columns +function activateColumnToggle() { + document.querySelectorAll('#columnToggle input').forEach(cb => { + cb.addEventListener('change', () => { + const colIndex = parseInt(cb.dataset.col); + + document.querySelectorAll(`thead tr th:nth-child(${colIndex})`) + .forEach(th => th.classList.toggle('hide-col', !cb.checked)); + + document.querySelectorAll(`tbody tr td:nth-child(${colIndex})`) + .forEach(td => td.classList.toggle('hide-col', !cb.checked)); + }); + }); +} + +// initial visibility +function applyInitialColumnVisibility() { + document.querySelectorAll('#columnToggle input').forEach(cb => { + const colIndex = parseInt(cb.dataset.col); + + if (!cb.checked) { + document.querySelectorAll(`thead tr th:nth-child(${colIndex})`) + .forEach(th => th.classList.add('hide-col')); + + document.querySelectorAll(`tbody tr td:nth-child(${colIndex})`) + .forEach(td => td.classList.add('hide-col')); + } + }); +} + +// Re-render table +function renderTable() { + tableBody.innerHTML = ""; + + data.filter(matchesFilters).forEach(item => { + const row = document.createElement("tr"); + row.innerHTML = ` + ${item.category} + ${item.index} + ${item.name} + ${item.lsb} + ${item.width} + ${item.class} + ${item.unit} + ${item.writeable} + ${item.since} + ${item.until} + ${item.description} + `; + tableBody.appendChild(row); + }); + + applyInitialColumnVisibility(); +} + +// activate filter event +filterFields.forEach(f => f.addEventListener("input", renderTable)); + +// set creation-date +document.getElementById("createdInfo").textContent = + `Generated automatically on ${window.META.createdOn}`; +// set version +document.getElementById("versionInfo").textContent = + `Build version: ${window.META.version}`; + + + +// initial rendering +activateColumnToggle(); +renderTable(); diff --git a/docs/visibility.js b/docs/visibility.js new file mode 100644 index 00000000..f0a1261e --- /dev/null +++ b/docs/visibility.js @@ -0,0 +1,5139 @@ +window.VISIBILITY = [ + { + category: "visibility", + index: 0, + name: "ID_Visi_NieAnzeigen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 1, + name: "ID_Visi_ImmerAnzeigen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 2, + name: "ID_Visi_Heizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 3, + name: "ID_Visi_Brauwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 4, + name: "ID_Visi_Schwimmbad", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 5, + name: "ID_Visi_Kuhlung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 6, + name: "ID_Visi_Lueftung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 7, + name: "ID_Visi_MK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 8, + name: "ID_Visi_MK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 9, + name: "ID_Visi_ThermDesinfekt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 10, + name: "ID_Visi_Zirkulation", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 11, + name: "ID_Visi_KuhlTemp_SolltempMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 12, + name: "ID_Visi_KuhlTemp_SolltempMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 13, + name: "ID_Visi_KuhlTemp_ATDiffMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 14, + name: "ID_Visi_KuhlTemp_ATDiffMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 15, + name: "ID_Visi_Service_Information", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 16, + name: "ID_Visi_Service_Einstellung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 17, + name: "ID_Visi_Service_Sprache", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 18, + name: "ID_Visi_Service_DatumUhrzeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 19, + name: "ID_Visi_Service_Ausheiz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 20, + name: "ID_Visi_Service_Anlagenkonfiguration", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 21, + name: "ID_Visi_Service_IBNAssistant", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 22, + name: "ID_Visi_Service_ParameterIBNZuruck", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 23, + name: "ID_Visi_Temp_Vorlauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 24, + name: "ID_Visi_Temp_Rucklauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 25, + name: "ID_Visi_Temp_RL_Soll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 26, + name: "ID_Visi_Temp_Ruecklext", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 27, + name: "ID_Visi_Temp_Heissgas", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 28, + name: "ID_Visi_Temp_Aussent", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 29, + name: "ID_Visi_Temp_BW_Ist", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 30, + name: "ID_Visi_Temp_BW_Soll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 31, + name: "ID_Visi_Temp_WQ_Ein", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 32, + name: "ID_Visi_Temp_Kaltekreis", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 33, + name: "ID_Visi_Temp_MK1_Vorlauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 34, + name: "ID_Visi_Temp_MK1VL_Soll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 35, + name: "ID_Visi_Temp_Raumstation", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 36, + name: "ID_Visi_Temp_MK2_Vorlauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 37, + name: "ID_Visi_Temp_MK2VL_Soll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 38, + name: "ID_Visi_Temp_Solarkoll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 39, + name: "ID_Visi_Temp_Solarsp", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 40, + name: "ID_Visi_Temp_Ext_Energ", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 41, + name: "ID_Visi_IN_ASD", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 42, + name: "ID_Visi_IN_BWT", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 43, + name: "ID_Visi_IN_EVU", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 44, + name: "ID_Visi_IN_HD", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 45, + name: "ID_Visi_IN_MOT", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 46, + name: "ID_Visi_IN_ND", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 47, + name: "ID_Visi_IN_PEX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 48, + name: "ID_Visi_IN_SWT", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 49, + name: "ID_Visi_OUT_Abtauventil", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 50, + name: "ID_Visi_OUT_BUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 51, + name: "ID_Visi_OUT_FUP1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 52, + name: "ID_Visi_OUT_HUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 53, + name: "ID_Visi_OUT_Mischer1Auf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 54, + name: "ID_Visi_OUT_Mischer1Zu", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 55, + name: "ID_Visi_OUT_Ventilation", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 56, + name: "ID_Visi_OUT_Ventil_BOSUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 57, + name: "ID_Visi_OUT_Verdichter1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 58, + name: "ID_Visi_OUT_Verdichter2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 59, + name: "ID_Visi_OUT_ZIP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 60, + name: "ID_Visi_OUT_ZUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 61, + name: "ID_Visi_OUT_ZWE1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 62, + name: "ID_Visi_OUT_ZWE2_SST", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 63, + name: "ID_Visi_OUT_ZWE3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 64, + name: "ID_Visi_OUT_FUP2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 65, + name: "ID_Visi_OUT_SLP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 66, + name: "ID_Visi_OUT_SUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 67, + name: "ID_Visi_OUT_Mischer2Auf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 68, + name: "ID_Visi_OUT_Mischer2Zu", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 69, + name: "ID_Visi_AblaufZ_WP_Seit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 70, + name: "ID_Visi_AblaufZ_ZWE1_seit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 71, + name: "ID_Visi_AblaufZ_ZWE2_seit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 72, + name: "ID_Visi_AblaufZ_ZWE3_seit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 73, + name: "ID_Visi_AblaufZ_Netzeinv", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 74, + name: "ID_Visi_AblaufZ_SSP_Zeit1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 75, + name: "ID_Visi_AblaufZ_VD_Stand", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 76, + name: "ID_Visi_AblaufZ_HRM_Zeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 77, + name: "ID_Visi_AblaufZ_HRW_Zeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 78, + name: "ID_Visi_AblaufZ_TDI_seit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 79, + name: "ID_Visi_AblaufZ_Sperre_BW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 80, + name: "ID_Visi_Bst_BStdVD1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 81, + name: "ID_Visi_Bst_ImpVD1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 82, + name: "ID_Visi_Bst_dEZVD1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 83, + name: "ID_Visi_Bst_BStdVD2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 84, + name: "ID_Visi_Bst_ImpVD2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 85, + name: "ID_Visi_Bst_dEZVD2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 86, + name: "ID_Visi_Bst_BStdZWE1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 87, + name: "ID_Visi_Bst_BStdZWE2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 88, + name: "ID_Visi_Bst_BStdZWE3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 89, + name: "ID_Visi_Bst_BStdWP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 90, + name: "ID_Visi_Text_Kurzprogramme", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 91, + name: "ID_Visi_Text_Zwangsheizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 92, + name: "ID_Visi_Text_Zwangsbrauchwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 93, + name: "ID_Visi_Text_Abtauen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 94, + name: "ID_Visi_EinstTemp_RucklBegr", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 95, + name: "ID_Visi_EinstTemp_HystereseHR", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 96, + name: "ID_Visi_EinstTemp_TRErhmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 97, + name: "ID_Visi_EinstTemp_Freig2VD", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 98, + name: "ID_Visi_EinstTemp_FreigZWE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 99, + name: "ID_Visi_EinstTemp_Tluftabt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 100, + name: "ID_Visi_EinstTemp_TDISolltemp", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 101, + name: "ID_Visi_EinstTemp_HystereseBW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 102, + name: "ID_Visi_EinstTemp_Vorl2VDBW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 103, + name: "ID_Visi_EinstTemp_TAussenmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 104, + name: "ID_Visi_EinstTemp_TAussenmin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 105, + name: "ID_Visi_EinstTemp_TWQmin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 106, + name: "ID_Visi_EinstTemp_THGmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 107, + name: "ID_Visi_EinstTemp_TLABTEnde", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 108, + name: "ID_Visi_EinstTemp_Absenkbis", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 109, + name: "ID_Visi_EinstTemp_Vorlaufmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 110, + name: "ID_Visi_EinstTemp_TDiffEin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 111, + name: "ID_Visi_EinstTemp_TDiffAus", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 112, + name: "ID_Visi_EinstTemp_TDiffmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 113, + name: "ID_Visi_EinstTemp_TEEHeizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 114, + name: "ID_Visi_EinstTemp_TEEBrauchw", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 115, + name: "ID_Visi_EinstTemp_Vorl2VDSW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 116, + name: "ID_Visi_EinstTemp_VLMaxMk1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 117, + name: "ID_Visi_EinstTemp_VLMaxMk2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 118, + name: "ID_Visi_Priori_Brauchwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 119, + name: "ID_Visi_Priori_Heizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 120, + name: "ID_Visi_Priori_Schwimmbad", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 121, + name: "ID_Visi_SysEin_EVUSperre", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 122, + name: "ID_Visi_SysEin_Raumstation", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 123, + name: "ID_Visi_SysEin_Einbindung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 124, + name: "ID_Visi_SysEin_Mischkreis1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 125, + name: "ID_Visi_SysEin_Mischkreis2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 126, + name: "ID_Visi_SysEin_ZWE1Art", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 127, + name: "ID_Visi_SysEin_ZWE1Fkt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 128, + name: "ID_Visi_SysEin_ZWE2Art", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 129, + name: "ID_Visi_SysEin_ZWE2Fkt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 130, + name: "ID_Visi_SysEin_ZWE3Art", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 131, + name: "ID_Visi_SysEin_ZWE3Fkt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 132, + name: "ID_Visi_SysEin_Stoerung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 133, + name: "ID_Visi_SysEin_Brauchwasser1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 134, + name: "ID_Visi_SysEin_Brauchwasser2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 135, + name: "ID_Visi_SysEin_Brauchwasser3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 136, + name: "ID_Visi_SysEin_Brauchwasser4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 137, + name: "ID_Visi_SysEin_Brauchwasser5", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 138, + name: "ID_Visi_SysEin_BWWPmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 139, + name: "ID_Visi_SysEin_Abtzykmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 140, + name: "ID_Visi_SysEin_Luftabt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 141, + name: "ID_Visi_SysEin_LuftAbtmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 142, + name: "ID_Visi_SysEin_Abtauen1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 143, + name: "ID_Visi_SysEin_Abtauen2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 144, + name: "ID_Visi_SysEin_Pumpenoptim", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 145, + name: "ID_Visi_SysEin_Zusatzpumpe", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 146, + name: "ID_Visi_SysEin_Zugang", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 147, + name: "ID_Visi_SysEin_SoledrDurchf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 148, + name: "ID_Visi_SysEin_UberwachungVD", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 149, + name: "ID_Visi_SysEin_RegelungHK", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 150, + name: "ID_Visi_SysEin_RegelungMK1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 151, + name: "ID_Visi_SysEin_RegelungMK2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 152, + name: "ID_Visi_SysEin_Kuhlung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 153, + name: "ID_Visi_SysEin_Ausheizen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 154, + name: "ID_Visi_SysEin_ElektrAnode", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 155, + name: "ID_Visi_SysEin_SWBBer", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 156, + name: "ID_Visi_SysEin_SWBMin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 157, + name: "ID_Visi_SysEin_Heizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 158, + name: "ID_Visi_SysEin_PeriodeMk1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 159, + name: "ID_Visi_SysEin_LaufzeitMk1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 160, + name: "ID_Visi_SysEin_PeriodeMk2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 161, + name: "ID_Visi_SysEin_LaufzeitMk2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 162, + name: "ID_Visi_SysEin_Heizgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 163, + name: "ID_Visi_Enlt_HUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 164, + name: "ID_Visi_Enlt_ZUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 165, + name: "ID_Visi_Enlt_BUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 166, + name: "ID_Visi_Enlt_Ventilator_BOSUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 167, + name: "ID_Visi_Enlt_MA1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 168, + name: "ID_Visi_Enlt_MZ1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 169, + name: "ID_Visi_Enlt_ZIP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 170, + name: "ID_Visi_Enlt_MA2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 171, + name: "ID_Visi_Enlt_MZ2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 172, + name: "ID_Visi_Enlt_SUP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 173, + name: "ID_Visi_Enlt_SLP", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 174, + name: "ID_Visi_Enlt_FP2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 175, + name: "ID_Visi_Enlt_Laufzeit", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 176, + name: "ID_Visi_Anlgkonf_Heizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 177, + name: "ID_Visi_Anlgkonf_Brauchwarmwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 178, + name: "ID_Visi_Anlgkonf_Schwimmbad", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 179, + name: "ID_Visi_Heizung_Betriebsart", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 180, + name: "ID_Visi_Heizung_TemperaturPlusMinus", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 181, + name: "ID_Visi_Heizung_Heizkurven", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 182, + name: "ID_Visi_Heizung_Zeitschaltprogramm", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 182, + name: "ID_Visi_Heizung_Zeitschlaltprogramm", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 183, + name: "ID_Visi_Heizung_Heizgrenze", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 184, + name: "ID_Visi_Mitteltemperatur", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 185, + name: "ID_Visi_Dataenlogger", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 186, + name: "ID_Visi_Sprachen_DEUTSCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 187, + name: "ID_Visi_Sprachen_ENGLISH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 188, + name: "ID_Visi_Sprachen_FRANCAIS", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 189, + name: "ID_Visi_Sprachen_NORWAY", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 190, + name: "ID_Visi_Sprachen_TCHECH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 191, + name: "ID_Visi_Sprachen_ITALIANO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 192, + name: "ID_Visi_Sprachen_NEDERLANDS", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 193, + name: "ID_Visi_Sprachen_SVENSKA", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 194, + name: "ID_Visi_Sprachen_POLSKI", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 195, + name: "ID_Visi_Sprachen_MAGYARUL", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 196, + name: "ID_Visi_ErrorUSBspeichern", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 197, + name: "ID_Visi_Bst_BStdHz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 198, + name: "ID_Visi_Bst_BStdBW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 199, + name: "ID_Visi_Bst_BStdKue", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 200, + name: "ID_Visi_Service_Systemsteuerung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 201, + name: "ID_Visi_Service_Systemsteuerung_Contrast", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 202, + name: "ID_Visi_Service_Systemsteuerung_Webserver", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 203, + name: "ID_Visi_Service_Systemsteuerung_IPAdresse", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 204, + name: "ID_Visi_Service_Systemsteuerung_Fernwartung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 205, + name: "ID_Visi_Paralleleschaltung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 206, + name: "ID_Visi_SysEin_Paralleleschaltung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 207, + name: "ID_Visi_Sprachen_DANSK", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 208, + name: "ID_Visi_Sprachen_PORTUGES", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 209, + name: "ID_Visi_Heizkurve_Heizung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 210, + name: "ID_Visi_SysEin_Mischkreis3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 211, + name: "ID_Visi_MK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 212, + name: "ID_Visi_Temp_MK3_Vorlauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 213, + name: "ID_Visi_Temp_MK3VL_Soll", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 214, + name: "ID_Visi_OUT_Mischer3Auf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 215, + name: "ID_Visi_OUT_Mischer3Zu", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 216, + name: "ID_Visi_SysEin_RegelungMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 217, + name: "ID_Visi_SysEin_PeriodeMk3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 218, + name: "ID_Visi_SysEin_LaufzeitMk3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 219, + name: "ID_Visi_SysEin_Kuhl_Zeit_Ein", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 220, + name: "ID_Visi_SysEin_Kuhl_Zeit_Aus", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 221, + name: "ID_Visi_AblaufZ_AbtauIn", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 222, + name: "ID_Visi_Waermemenge_WS", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 223, + name: "ID_Visi_Waermemenge_WQ", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 224, + name: "ID_Visi_Enlt_MA3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 225, + name: "ID_Visi_Enlt_MZ3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 226, + name: "ID_Visi_Enlt_FP3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 227, + name: "ID_Visi_OUT_FUP3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 228, + name: "ID_Visi_Temp_Raumstation2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 229, + name: "ID_Visi_Temp_Raumstation3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 230, + name: "ID_Visi_Bst_BStdSW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 231, + name: "ID_Visi_Sprachen_LITAUISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 232, + name: "ID_Visi_Sprachen_ESTNICH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 233, + name: "ID_Visi_SysEin_Fernwartung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 234, + name: "ID_Visi_Sprachen_SLOVENISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 235, + name: "ID_Visi_EinstTemp_TA_EG", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 236, + name: "ID_Visi_Einst_TVLmax_EG", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 237, + name: "ID_Visi_SysEin_PoptNachlauf", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 238, + name: "ID_Visi_RFV_K_Kuehlin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 239, + name: "ID_Visi_SysEin_EffizienzpumpeNom", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 240, + name: "ID_Visi_SysEin_EffizienzpumpeMin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 241, + name: "ID_Visi_SysEin_Effizienzpumpe", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 242, + name: "ID_Visi_SysEin_Waermemenge", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 243, + name: "ID_Visi_Service_WMZ_Effizienz", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 244, + name: "ID_Visi_SysEin_Wm_Versorgung_Korrektur", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 245, + name: "ID_Visi_SysEin_Wm_Auswertung_Korrektur", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 246, + name: "ID_Visi_IN_AnalogIn", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 247, + name: "ID_Visi_Eins_SN_Eingabe", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 248, + name: "ID_Visi_OUT_Analog_1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 249, + name: "ID_Visi_OUT_Analog_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 250, + name: "ID_Visi_Solar", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 251, + name: "ID_Visi_SysEin_Solar", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 252, + name: "ID_Visi_EinstTemp_TDiffKollmax", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 253, + name: "ID_Visi_AblaufZ_HG_Sperre", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 254, + name: "ID_Visi_SysEin_Akt_Kuehlung", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 255, + name: "ID_Visi_SysEin_Vorlauf_VBO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 256, + name: "ID_Visi_Einst_KRHyst", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 257, + name: "ID_Visi_Einst_Akt_Kuehl_Speicher_min", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 258, + name: "ID_Visi_Einst_Akt_Kuehl_Freig_WQE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 259, + name: "ID_Visi_SysEin_AbtZykMin", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 260, + name: "ID_Visi_SysEin_VD2_Zeit_Min", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 261, + name: "ID_Visi_EinstTemp_Hysterese_HR_verkuerzt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 262, + name: "ID_Visi_Einst_Luf_Feuchteschutz_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 263, + name: "ID_Visi_Einst_Luf_Reduziert_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 264, + name: "ID_Visi_Einst_Luf_Nennlueftung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 265, + name: "ID_Visi_Einst_Luf_Intensivlueftung_akt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 266, + name: "ID_Visi_Temperatur_Lueftung_Zuluft", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 267, + name: "ID_Visi_Temperatur_Lueftung_Abluft", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 268, + name: "ID_Visi_OUT_Analog_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 269, + name: "ID_Visi_OUT_Analog_4", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 270, + name: "ID_Visi_IN_Analog_2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 271, + name: "ID_Visi_IN_Analog_3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 272, + name: "ID_Visi_IN_SAX", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 273, + name: "ID_Visi_OUT_VZU", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 274, + name: "ID_Visi_OUT_VAB", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 275, + name: "ID_Visi_OUT_VSK", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 276, + name: "ID_Visi_OUT_FRH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 277, + name: "ID_Visi_KuhlTemp_SolltempMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 278, + name: "ID_Visi_KuhlTemp_ATDiffMK3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 279, + name: "ID_Visi_IN_SPL", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 280, + name: "ID_Visi_SysEin_Lueftungsstufen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 281, + name: "ID_Visi_SysEin_Meldung_TDI", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 282, + name: "ID_Visi_SysEin_Typ_WZW", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 283, + name: "ID_Visi_BACnet", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 284, + name: "ID_Visi_Sprachen_SLOWAKISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 285, + name: "ID_Visi_Sprachen_LETTISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 286, + name: "ID_Visi_Sprachen_FINNISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 287, + name: "ID_Visi_Kalibrierung_LWD", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 288, + name: "ID_Visi_IN_Durchfluss", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 289, + name: "ID_Visi_LIN_ANSAUG_VERDICHTER", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 290, + name: "ID_Visi_LIN_VDH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 291, + name: "ID_Visi_LIN_UH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 292, + name: "ID_Visi_LIN_Druck", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 293, + name: "ID_Visi_Einst_Sollwert_TRL_Kuehlen", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 294, + name: "ID_Visi_Entl_ExVentil", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 295, + name: "ID_Visi_Einst_Medium_Waermequelle", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 296, + name: "ID_Visi_Einst_Multispeicher", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 297, + name: "ID_Visi_Einst_Minimale_Ruecklaufsolltemperatur", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 298, + name: "ID_Visi_Einst_PKuehlTime", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 299, + name: "ID_Visi_Sprachen_TUERKISCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 300, + name: "ID_Visi_RBE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 301, + name: "ID_Visi_Einst_Luf_Stufen_Faktor", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 302, + name: "ID_Visi_Freigabe_Zeit_ZWE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 303, + name: "ID_Visi_Einst_min_VL_Kuehl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 304, + name: "ID_Visi_ZWE1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 305, + name: "ID_Visi_ZWE2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 306, + name: "ID_Visi_ZWE3", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 307, + name: "ID_Visi_SEC", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 308, + name: "ID_Visi_HZIO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 309, + name: "ID_Visi_WPIO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 310, + name: "ID_Visi_LIN_ANSAUG_VERDAMPFER", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 311, + name: "ID_Visi_LIN_MULTI1", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 312, + name: "ID_Visi_LIN_MULTI2", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 313, + name: "ID_Visi_Einst_Leistung_ZWE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 314, + name: "ID_Visi_Sprachen_ESPANOL", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 315, + name: "ID_Visi_Temp_BW_oben", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 316, + name: "ID_Visi_MAXIO", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 317, + name: "ID_Visi_OUT_Abtauwunsch", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 318, + name: "ID_Visi_SmartGrid", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 319, + name: "ID_Visi_Drehzahlgeregelt", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 320, + name: "ID_Visi_P155_Inverter", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 321, + name: "ID_Visi_Leistungsfreigabe", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 322, + name: "ID_Visi_Einst_Vorl_akt_Kuehl", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 323, + name: "ID_Visi_Einst_Abtauen_im_Warmwasser", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 324, + name: "ID_Visi_Waermemenge_ZWE", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 325, + name: "Unknown_Visibility_325", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 326, + name: "Unknown_Visibility_326", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 327, + name: "Unknown_Visibility_327", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 328, + name: "Unknown_Visibility_328", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 329, + name: "Unknown_Visibility_329", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 330, + name: "Unknown_Visibility_330", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 331, + name: "Unknown_Visibility_331", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 332, + name: "Unknown_Visibility_332", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 333, + name: "Unknown_Visibility_333", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 334, + name: "Unknown_Visibility_334", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 335, + name: "Unknown_Visibility_335", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 336, + name: "Unknown_Visibility_336", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 337, + name: "Unknown_Visibility_337", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 338, + name: "Unknown_Visibility_338", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 339, + name: "Unknown_Visibility_339", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 340, + name: "Unknown_Visibility_340", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 341, + name: "Unknown_Visibility_341", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 342, + name: "Unknown_Visibility_342", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 343, + name: "Unknown_Visibility_343", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 344, + name: "Unknown_Visibility_344", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 345, + name: "Unknown_Visibility_345", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 346, + name: "Unknown_Visibility_346", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 347, + name: "Unknown_Visibility_347", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 348, + name: "Unknown_Visibility_348", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 349, + name: "Unknown_Visibility_349", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 350, + name: "Unknown_Visibility_350", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 351, + name: "Unknown_Visibility_351", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 352, + name: "Unknown_Visibility_352", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 353, + name: "Unknown_Visibility_353", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 354, + name: "Unknown_Visibility_354", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 355, + name: "Unknown_Visibility_355", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 355, + name: "Unknown_Parameter_355", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 356, + name: "Unknown_Visibility_356", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 356, + name: "Unknown_Parameter_356", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 357, + name: "ELECTRICAL_POWER_LIMITATION_SWITCH", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 357, + name: "Unknown_Visibility_357", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 357, + name: "Unknown_Parameter_357", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 358, + name: "Unknown_Visibility_358", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 358, + name: "Unknown_Parameter_358", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 359, + name: "Unknown_Visibility_359", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 359, + name: "Unknown_Parameter_359", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 360, + name: "Unknown_Visibility_360", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 360, + name: "Unknown_Parameter_360", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 361, + name: "Unknown_Visibility_361", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 361, + name: "Unknown_Parameter_361", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 362, + name: "Unknown_Visibility_362", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 362, + name: "Unknown_Parameter_362", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 363, + name: "Unknown_Visibility_363", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 363, + name: "Unknown_Parameter_363", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 364, + name: "Unknown_Visibility_364", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 364, + name: "Unknown_Parameter_364", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 365, + name: "Unknown_Visibility_365", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 365, + name: "Unknown_Parameter_365", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 366, + name: "Unknown_Visibility_366", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 366, + name: "Unknown_Parameter_366", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 367, + name: "Unknown_Visibility_367", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 367, + name: "Unknown_Parameter_367", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 368, + name: "Unknown_Visibility_368", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 368, + name: "Unknown_Parameter_368", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 369, + name: "Unknown_Visibility_369", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 369, + name: "Unknown_Parameter_369", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 370, + name: "Unknown_Visibility_370", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 370, + name: "Unknown_Parameter_370", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 371, + name: "Unknown_Visibility_371", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 371, + name: "Unknown_Parameter_371", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 372, + name: "Unknown_Visibility_372", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 372, + name: "Unknown_Parameter_372", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 373, + name: "Unknown_Visibility_373", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 373, + name: "Unknown_Parameter_373", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 374, + name: "Unknown_Visibility_374", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 374, + name: "Unknown_Parameter_374", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 375, + name: "Unknown_Visibility_375", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 375, + name: "Unknown_Parameter_375", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 376, + name: "Unknown_Visibility_376", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 376, + name: "Unknown_Parameter_376", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 377, + name: "Unknown_Visibility_377", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 377, + name: "Unknown_Parameter_377", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 378, + name: "Unknown_Visibility_378", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 378, + name: "Unknown_Parameter_378", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 379, + name: "Unknown_Visibility_379", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 379, + name: "Unknown_Parameter_379", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 380, + name: "Unknown_Visibility_380", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 381, + name: "Unknown_Visibility_381", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 382, + name: "Unknown_Visibility_382", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 383, + name: "Unknown_Visibility_383", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 384, + name: "Unknown_Visibility_384", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 385, + name: "Unknown_Visibility_385", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 386, + name: "Unknown_Visibility_386", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 387, + name: "Unknown_Visibility_387", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 388, + name: "Unknown_Visibility_388", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 389, + name: "Unknown_Visibility_389", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 390, + name: "Unknown_Visibility_390", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 391, + name: "Unknown_Visibility_391", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 392, + name: "Unknown_Visibility_392", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 393, + name: "Unknown_Visibility_393", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 394, + name: "Unknown_Visibility_394", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 395, + name: "Unknown_Visibility_395", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 396, + name: "Unknown_Visibility_396", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 397, + name: "Unknown_Visibility_397", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 398, + name: "Unknown_Visibility_398", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 399, + name: "Unknown_Visibility_399", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 400, + name: "Unknown_Visibility_400", + lsb: 0, + width: 32, + class: "None", + writeable: "", + unit: "", + since: "", + until: "", + description: "" + } +]; \ No newline at end of file diff --git a/luxtronik/definitions/__init__.py b/luxtronik/definitions/__init__.py index f6752239..1b21ec33 100644 --- a/luxtronik/definitions/__init__.py +++ b/luxtronik/definitions/__init__.py @@ -213,6 +213,10 @@ def since(self): def until(self): return self._until + @property + def description(self): + return self._description + def create_field(self): """ Create a data field instance from this definition.