From e2bc2879620747f0acc1a251c6bd7b9914f71862 Mon Sep 17 00:00:00 2001 From: Bouni Date: Thu, 12 Dec 2024 10:15:25 +0100 Subject: [PATCH 01/11] Add a workflow that auto-generate the luxtronik field definition documentation --- .github/workflows/docs.yml | 45 + .github/workflows/scripts/docs/gen-docs.py | 87 + .../scripts/docs/templates/definitions.js | 5 + README.md | 4 +- docs/calculation.js | 3149 ++++ docs/holding.js | 454 + docs/index.html | 122 + docs/input.js | 960 ++ docs/parameter.js | 13500 ++++++++++++++++ docs/scripts.js | 102 + docs/visibility.js | 4414 +++++ luxtronik/definitions/__init__.py | 4 + 12 files changed, 22843 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/docs.yml create mode 100644 .github/workflows/scripts/docs/gen-docs.py create mode 100644 .github/workflows/scripts/docs/templates/definitions.js create mode 100644 docs/calculation.js create mode 100644 docs/holding.js create mode 100644 docs/index.html create mode 100644 docs/input.js create mode 100644 docs/parameter.js create mode 100644 docs/scripts.js create mode 100644 docs/visibility.js 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..5355c8e6 --- /dev/null +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python +import logging +from pathlib import Path +from datetime import datetime +from jinja2 import Environment, FileSystemLoader, select_autoescape + +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_string(string): + return f'"{str(string)}"' + +def get_writeable(writeable): + return get_string("yes" if writeable else "no") + +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): + desc += ("\n" if desc else "") + "\nUser-Options:\n" + "\n".join(d.field_type.options()) + items.append({ + "category": get_string(definitions.name), + "index": d.index, + "name": get_string(d.name), + "lsb": 0 if d.bit_offset is None else d.bit_offset, + "width": d.num_bits, + "fieldtype": get_string(d.field_type.__name__), + "writeable": get_writeable(d.writeable), + "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()) + template = env.get_template("definitions.js") + + data = gather_data() + (BASEPATH.parents[3] / "docs").mkdir(exist_ok=True) + + 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, now=datetime.now())) + +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/README.md b/README.md index 0951a33d..06abe789 100755 --- a/README.md +++ b/README.md @@ -52,9 +52,7 @@ pip install git+https://github.com/Bouni/python-luxtronik.git@main ## DOCUMENTATION -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. +Here you can find our automatically generated [documentation](https://bouni.github.io/python-luxtronik/). Discovered data fields: diff --git a/docs/calculation.js b/docs/calculation.js new file mode 100644 index 00000000..a8c53740 --- /dev/null +++ b/docs/calculation.js @@ -0,0 +1,3149 @@ +window.CALCULATION = [ + { + category: "calculation", + index: 0, + name: "Unknown_Calculation_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 1, + name: "Unknown_Calculation_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 2, + name: "Unknown_Calculation_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 3, + name: "Unknown_Calculation_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 4, + name: "Unknown_Calculation_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 5, + name: "Unknown_Calculation_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 6, + name: "Unknown_Calculation_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 7, + name: "Unknown_Calculation_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 8, + name: "Unknown_Calculation_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 9, + name: "Unknown_Calculation_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 10, + name: "ID_WEB_Temperatur_TVL", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 11, + name: "ID_WEB_Temperatur_TRL", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 12, + name: "ID_WEB_Sollwert_TRL_HZ", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 13, + name: "ID_WEB_Temperatur_TRL_ext", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 14, + name: "ID_WEB_Temperatur_THG", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 15, + name: "ID_WEB_Temperatur_TA", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 16, + name: "ID_WEB_Mitteltemperatur", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 17, + name: "ID_WEB_Temperatur_TBW", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 18, + name: "ID_WEB_Einst_BWS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 19, + name: "ID_WEB_Temperatur_TWE", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 20, + name: "ID_WEB_Temperatur_TWA", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 21, + name: "ID_WEB_Temperatur_TFB1", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 22, + name: "ID_WEB_Sollwert_TVL_MK1", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 23, + name: "ID_WEB_Temperatur_RFV", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 24, + name: "ID_WEB_Temperatur_TFB2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 25, + name: "ID_WEB_Sollwert_TVL_MK2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 26, + name: "ID_WEB_Temperatur_TSK", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 27, + name: "ID_WEB_Temperatur_TSS", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 28, + name: "ID_WEB_Temperatur_TEE", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 29, + name: "ID_WEB_ASDin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 30, + name: "ID_WEB_BWTin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 31, + name: "ID_WEB_EVUin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 32, + name: "ID_WEB_HDin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 33, + name: "ID_WEB_MOTin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 34, + name: "ID_WEB_NDin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 35, + name: "ID_WEB_PEXin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 36, + name: "ID_WEB_SWTin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 37, + name: "ID_WEB_AVout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 38, + name: "ID_WEB_BUPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 39, + name: "ID_WEB_HUPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 40, + name: "ID_WEB_MA1out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 41, + name: "ID_WEB_MZ1out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 42, + name: "ID_WEB_VENout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 43, + name: "ID_WEB_VBOout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 44, + name: "ID_WEB_VD1out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 45, + name: "ID_WEB_VD2out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 46, + name: "ID_WEB_ZIPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 47, + name: "ID_WEB_ZUPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 48, + name: "ID_WEB_ZW1out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 49, + name: "ID_WEB_ZW2SSTout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 50, + name: "ID_WEB_ZW3SSTout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 51, + name: "ID_WEB_FP2out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 52, + name: "ID_WEB_SLPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 53, + name: "ID_WEB_SUPout", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 54, + name: "ID_WEB_MZ2out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 55, + name: "ID_WEB_MA2out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 56, + name: "ID_WEB_Zaehler_BetrZeitVD1", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 57, + name: "ID_WEB_Zaehler_BetrZeitImpVD1", + lsb: 0, + width: 32, + fieldtype: "Count", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 58, + name: "ID_WEB_Zaehler_BetrZeitVD2", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 59, + name: "ID_WEB_Zaehler_BetrZeitImpVD2", + lsb: 0, + width: 32, + fieldtype: "Count", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 60, + name: "ID_WEB_Zaehler_BetrZeitZWE1", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 61, + name: "ID_WEB_Zaehler_BetrZeitZWE2", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 62, + name: "ID_WEB_Zaehler_BetrZeitZWE3", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 63, + name: "ID_WEB_Zaehler_BetrZeitWP", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 64, + name: "ID_WEB_Zaehler_BetrZeitHz", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 65, + name: "ID_WEB_Zaehler_BetrZeitBW", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 66, + name: "ID_WEB_Zaehler_BetrZeitKue", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 67, + name: "ID_WEB_Time_WPein_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 68, + name: "ID_WEB_Time_ZWE1_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 69, + name: "ID_WEB_Time_ZWE2_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 70, + name: "ID_WEB_Timer_EinschVerz", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 71, + name: "ID_WEB_Time_SSPAUS_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 72, + name: "ID_WEB_Time_SSPEIN_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 73, + name: "ID_WEB_Time_VDStd_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 74, + name: "ID_WEB_Time_HRM_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 75, + name: "ID_WEB_Time_HRW_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 76, + name: "ID_WEB_Time_LGS_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 77, + name: "ID_WEB_Time_SBW_akt", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 78, + name: "ID_WEB_Code_WP_akt", + lsb: 0, + width: 32, + fieldtype: "HeatpumpCode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nERC\nSW1\nSW2\nWW1\nWW2\nL1I\nL2I\nL1A\nL2A\nKSW\nKLW\nSWC\nLWC\nL2G\nWZS\nL1I407\nL2I407\nL1A407\nL2A407\nL2G407\nLWC407\nL1AREV\nL2AREV\nWWC1\nWWC2\nL2G404\nWZW\nL1S\nL1H\nL2H\nWZWD\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nWWB_20\nLD5\nLD7\nSW 37_45\nSW 58_69\nSW 29_56\nLD5 (230V)\nLD7 (230 V)\nLD9\nLD5 REV\nLD7 REV\nLD5 REV 230V\nLD7 REV 230V\nLD9 REV 230V\nSW 291\nLW SEC\nHMD 2\nMSW 4\nMSW 6\nMSW 8\nMSW 10\nMSW 12\nMSW 14\nMSW 17\nMSW 19\nMSW 23\nMSW 26\nMSW 30\nMSW 4S\nMSW 6S\nMSW 8S\nMSW 10S\nMSW 12S\nMSW 16S\nMSW2-6S\nMSW4-16\nLD2AG\nLD9V\nMSW3-12\nMSW3-12S\nMSW2-9S\nLW 8\nLW 12\nHZ_HMD\nLW V4\nLW SEC 2\nMSW1-4S\nLP5V\nLP8V" + },{ + category: "calculation", + index: 79, + name: "ID_WEB_BIV_Stufe_akt", + lsb: 0, + width: 32, + fieldtype: "BivalenceLevel", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\none compressor allowed to run\ntwo compressors allowed to run\nadditional heat generator allowed to run" + },{ + category: "calculation", + index: 80, + name: "ID_WEB_WP_BZ_akt", + lsb: 0, + width: 32, + fieldtype: "OperationMode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheating\nhot water\nswimming pool/solar\nevu\ndefrost\nno request\nheating external source\ncooling" + },{ + category: "calculation", + index: 81, + name: "ID_WEB_SoftStand", + lsb: 0, + width: 32, + fieldtype: "Version", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 81, + name: "ID_WEB_SoftStand_0", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 82, + name: "ID_WEB_SoftStand_1", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 83, + name: "ID_WEB_SoftStand_2", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 84, + name: "ID_WEB_SoftStand_3", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 85, + name: "ID_WEB_SoftStand_4", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 86, + name: "ID_WEB_SoftStand_5", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 87, + name: "ID_WEB_SoftStand_6", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 88, + name: "ID_WEB_SoftStand_7", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 89, + name: "ID_WEB_SoftStand_8", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 90, + name: "ID_WEB_SoftStand_9", + lsb: 0, + width: 32, + fieldtype: "Character", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 91, + name: "ID_WEB_AdresseIP_akt", + lsb: 0, + width: 32, + fieldtype: "IPv4Address", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 92, + name: "ID_WEB_SubNetMask_akt", + lsb: 0, + width: 32, + fieldtype: "IPv4Address", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 93, + name: "ID_WEB_Add_Broadcast", + lsb: 0, + width: 32, + fieldtype: "IPv4Address", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 94, + name: "ID_WEB_Add_StdGateway", + lsb: 0, + width: 32, + fieldtype: "IPv4Address", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 95, + name: "ID_WEB_ERROR_Time0", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 96, + name: "ID_WEB_ERROR_Time1", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 97, + name: "ID_WEB_ERROR_Time2", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 98, + name: "ID_WEB_ERROR_Time3", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 99, + name: "ID_WEB_ERROR_Time4", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 100, + name: "ID_WEB_ERROR_Nr0", + lsb: 0, + width: 32, + fieldtype: "Errorcode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "calculation", + index: 101, + name: "ID_WEB_ERROR_Nr1", + lsb: 0, + width: 32, + fieldtype: "Errorcode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "calculation", + index: 102, + name: "ID_WEB_ERROR_Nr2", + lsb: 0, + width: 32, + fieldtype: "Errorcode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "calculation", + index: 103, + name: "ID_WEB_ERROR_Nr3", + lsb: 0, + width: 32, + fieldtype: "Errorcode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "calculation", + index: 104, + name: "ID_WEB_ERROR_Nr4", + lsb: 0, + width: 32, + fieldtype: "Errorcode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "calculation", + index: 105, + name: "ID_WEB_AnzahlFehlerInSpeicher", + lsb: 0, + width: 32, + fieldtype: "Count", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 106, + name: "ID_WEB_Switchoff_file_Nr0", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 107, + name: "ID_WEB_Switchoff_file_Nr1", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 108, + name: "ID_WEB_Switchoff_file_Nr2", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 109, + name: "ID_WEB_Switchoff_file_Nr3", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 110, + name: "ID_WEB_Switchoff_file_Nr4", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 111, + name: "ID_WEB_Switchoff_file_Time0", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 112, + name: "ID_WEB_Switchoff_file_Time1", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 113, + name: "ID_WEB_Switchoff_file_Time2", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 114, + name: "ID_WEB_Switchoff_file_Time3", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 115, + name: "ID_WEB_Switchoff_file_Time4", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 116, + name: "ID_WEB_Comfort_exists", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 117, + name: "ID_WEB_HauptMenuStatus_Zeile1", + lsb: 0, + width: 32, + fieldtype: "MainMenuStatusLine1", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump running\nheatpump idle\nheatpump coming\nerrorcode slot 0\ndefrost\nwaiting on LIN connection\ncompressor heating up\npump forerun" + },{ + category: "calculation", + index: 118, + name: "ID_WEB_HauptMenuStatus_Zeile2", + lsb: 0, + width: 32, + fieldtype: "MainMenuStatusLine2", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nsince\nin" + },{ + category: "calculation", + index: 119, + name: "ID_WEB_HauptMenuStatus_Zeile3", + lsb: 0, + width: 32, + fieldtype: "MainMenuStatusLine3", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheating\nno request\ngrid switch on delay\ncycle lock\nlock time\ndomestic water\ninfo bake out program\ndefrost\npump forerun\nthermal desinfection\ncooling\nswimming pool/solar\nheating external energy source\ndomestic water external energy source\nflow monitoring\nsecond heat generator 1 active" + },{ + category: "calculation", + index: 120, + name: "ID_WEB_HauptMenuStatus_Zeit", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 121, + name: "ID_WEB_HauptMenuAHP_Stufe", + lsb: 0, + width: 32, + fieldtype: "Level", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 122, + name: "ID_WEB_HauptMenuAHP_Temp", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 123, + name: "ID_WEB_HauptMenuAHP_Zeit", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 124, + name: "ID_WEB_SH_BWW", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 125, + name: "ID_WEB_SH_HZ", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 126, + name: "ID_WEB_SH_MK1", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 127, + name: "ID_WEB_SH_MK2", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 128, + name: "ID_WEB_Einst_Kurzrpgramm", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 129, + name: "ID_WEB_StatusSlave_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 130, + name: "ID_WEB_StatusSlave_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 131, + name: "ID_WEB_StatusSlave_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 132, + name: "ID_WEB_StatusSlave_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 133, + name: "ID_WEB_StatusSlave_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 134, + name: "ID_WEB_AktuelleTimeStamp", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 135, + name: "ID_WEB_SH_MK3", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 136, + name: "ID_WEB_Sollwert_TVL_MK3", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 137, + name: "ID_WEB_Temperatur_TFB3", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 138, + name: "ID_WEB_MZ3out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 139, + name: "ID_WEB_MA3out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 140, + name: "ID_WEB_FP3out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 141, + name: "ID_WEB_Time_AbtIn", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 142, + name: "ID_WEB_Temperatur_RFV2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 143, + name: "ID_WEB_Temperatur_RFV3", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 144, + name: "ID_WEB_SH_SW", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 145, + name: "ID_WEB_Zaehler_BetrZeitSW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 146, + name: "ID_WEB_FreigabKuehl", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 147, + name: "ID_WEB_AnalogIn", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 148, + name: "ID_WEB_SonderZeichen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 149, + name: "ID_WEB_SH_ZIP", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 150, + name: "ID_WEB_WebsrvProgrammWerteBeobarten", + lsb: 0, + width: 32, + fieldtype: "Icon", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 151, + name: "ID_WEB_WMZ_Heizung", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 152, + name: "ID_WEB_WMZ_Brauchwasser", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 153, + name: "ID_WEB_WMZ_Schwimmbad", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 154, + name: "ID_WEB_WMZ_Seit", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 155, + name: "ID_WEB_WMZ_Durchfluss", + lsb: 0, + width: 32, + fieldtype: "Flow", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 156, + name: "ID_WEB_AnalogOut1", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 157, + name: "ID_WEB_AnalogOut2", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 158, + name: "ID_WEB_Time_Heissgas", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 159, + name: "ID_WEB_Temp_Lueftung_Zuluft", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 160, + name: "ID_WEB_Temp_Lueftung_Abluft", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 161, + name: "ID_WEB_Zaehler_BetrZeitSolar", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 162, + name: "ID_WEB_AnalogOut3", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 163, + name: "ID_WEB_AnalogOut4", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 164, + name: "ID_WEB_Out_VZU", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 165, + name: "ID_WEB_Out_VAB", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 166, + name: "ID_WEB_Out_VSK", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 167, + name: "ID_WEB_Out_FRH", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 168, + name: "ID_WEB_AnalogIn2", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 169, + name: "ID_WEB_AnalogIn3", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 170, + name: "ID_WEB_SAXin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 171, + name: "ID_WEB_SPLin", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 172, + name: "ID_WEB_Compact_exists", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 173, + name: "ID_WEB_Durchfluss_WQ", + lsb: 0, + width: 32, + fieldtype: "Flow", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 174, + name: "ID_WEB_LIN_exists", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 175, + name: "ID_WEB_LIN_ANSAUG_VERDAMPFER", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 176, + name: "ID_WEB_LIN_ANSAUG_VERDICHTER", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 177, + name: "ID_WEB_LIN_VDH", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 178, + name: "ID_WEB_LIN_UH", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 179, + name: "ID_WEB_LIN_UH_Soll", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 180, + name: "ID_WEB_LIN_HD", + lsb: 0, + width: 32, + fieldtype: "Pressure", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 181, + name: "ID_WEB_LIN_ND", + lsb: 0, + width: 32, + fieldtype: "Pressure", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 182, + name: "ID_WEB_LIN_VDH_out", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 183, + name: "ID_WEB_HZIO_PWM", + lsb: 0, + width: 32, + fieldtype: "Percent2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 184, + name: "ID_WEB_HZIO_VEN", + lsb: 0, + width: 32, + fieldtype: "Speed", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 185, + name: "ID_WEB_HZIO_EVU2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 186, + name: "ID_WEB_HZIO_STB", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 187, + name: "ID_WEB_SEC_Qh_Soll", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 188, + name: "ID_WEB_SEC_Qh_Ist", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 189, + name: "ID_WEB_SEC_TVL_Soll", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 190, + name: "ID_WEB_SEC_Software", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 191, + name: "ID_WEB_SEC_BZ", + lsb: 0, + width: 32, + fieldtype: "SecOperationMode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\noff\ncooling\nheating\nfault\ntransition\ndefrost\nwaiting\nwaiting\ntransition\nstop\nmanual\nsimulation start\nevu lock" + },{ + category: "calculation", + index: 192, + name: "ID_WEB_SEC_VWV", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 193, + name: "ID_WEB_SEC_VD", + lsb: 0, + width: 32, + fieldtype: "Speed", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 194, + name: "ID_WEB_SEC_VerdEVI", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 195, + name: "ID_WEB_SEC_AnsEVI", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 196, + name: "ID_WEB_SEC_UEH_EVI", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 197, + name: "ID_WEB_SEC_UEH_EVI_S", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 198, + name: "ID_WEB_SEC_KondTemp", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 199, + name: "ID_WEB_SEC_FlussigEx", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 200, + name: "ID_WEB_SEC_UK_EEV", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 201, + name: "ID_WEB_SEC_EVI_Druck", + lsb: 0, + width: 32, + fieldtype: "Pressure", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 202, + name: "ID_WEB_SEC_U_Inv", + lsb: 0, + width: 32, + fieldtype: "Voltage", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 203, + name: "ID_WEB_Temperatur_THG_2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 204, + name: "ID_WEB_Temperatur_TWE_2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 205, + name: "ID_WEB_LIN_ANSAUG_VERDAMPFER_2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 206, + name: "ID_WEB_LIN_ANSAUG_VERDICHTER_2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 207, + name: "ID_WEB_LIN_VDH_2", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 208, + name: "ID_WEB_LIN_UH_2", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 209, + name: "ID_WEB_LIN_UH_Soll_2", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 210, + name: "ID_WEB_LIN_HD_2", + lsb: 0, + width: 32, + fieldtype: "Pressure", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 211, + name: "ID_WEB_LIN_ND_2", + lsb: 0, + width: 32, + fieldtype: "Pressure", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 212, + name: "ID_WEB_HDin_2", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 213, + name: "ID_WEB_AVout_2", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 214, + name: "ID_WEB_VBOout_2", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 215, + name: "ID_WEB_VD1out_2", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 216, + name: "ID_WEB_LIN_VDH_out_2", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 217, + name: "ID_WEB_Switchoff2_file_Nr0", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 218, + name: "ID_WEB_Switchoff2_file_Nr1", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 219, + name: "ID_WEB_Switchoff2_file_Nr2", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 220, + name: "ID_WEB_Switchoff2_file_Nr3", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 221, + name: "ID_WEB_Switchoff2_file_Nr4", + lsb: 0, + width: 32, + fieldtype: "SwitchoffFile", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + },{ + category: "calculation", + index: 222, + name: "ID_WEB_Switchoff2_file_Time0", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 223, + name: "ID_WEB_Switchoff2_file_Time1", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 224, + name: "ID_WEB_Switchoff2_file_Time2", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 225, + name: "ID_WEB_Switchoff2_file_Time3", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 226, + name: "ID_WEB_Switchoff2_file_Time4", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 227, + name: "ID_WEB_RBE_RT_Ist", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 228, + name: "ID_WEB_RBE_RT_Soll", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 229, + name: "ID_WEB_Temperatur_BW_oben", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 230, + name: "ID_WEB_Code_WP_akt_2", + lsb: 0, + width: 32, + fieldtype: "HeatpumpCode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nERC\nSW1\nSW2\nWW1\nWW2\nL1I\nL2I\nL1A\nL2A\nKSW\nKLW\nSWC\nLWC\nL2G\nWZS\nL1I407\nL2I407\nL1A407\nL2A407\nL2G407\nLWC407\nL1AREV\nL2AREV\nWWC1\nWWC2\nL2G404\nWZW\nL1S\nL1H\nL2H\nWZWD\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nWWB_20\nLD5\nLD7\nSW 37_45\nSW 58_69\nSW 29_56\nLD5 (230V)\nLD7 (230 V)\nLD9\nLD5 REV\nLD7 REV\nLD5 REV 230V\nLD7 REV 230V\nLD9 REV 230V\nSW 291\nLW SEC\nHMD 2\nMSW 4\nMSW 6\nMSW 8\nMSW 10\nMSW 12\nMSW 14\nMSW 17\nMSW 19\nMSW 23\nMSW 26\nMSW 30\nMSW 4S\nMSW 6S\nMSW 8S\nMSW 10S\nMSW 12S\nMSW 16S\nMSW2-6S\nMSW4-16\nLD2AG\nLD9V\nMSW3-12\nMSW3-12S\nMSW2-9S\nLW 8\nLW 12\nHZ_HMD\nLW V4\nLW SEC 2\nMSW1-4S\nLP5V\nLP8V" + },{ + category: "calculation", + index: 231, + name: "ID_WEB_Freq_VD", + lsb: 0, + width: 32, + fieldtype: "Frequency", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 232, + name: "Unknown_Calculation_232", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 232, + name: "Vapourisation_Temperature", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 233, + name: "Unknown_Calculation_233", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 233, + name: "Liquefaction_Temperature", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 234, + name: "Unknown_Calculation_234", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 235, + name: "Unknown_Calculation_235", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 236, + name: "Unknown_Calculation_236", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 236, + name: "ID_WEB_Freq_VD_Soll", + lsb: 0, + width: 32, + fieldtype: "Frequency", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 237, + name: "Unknown_Calculation_237", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 237, + name: "ID_WEB_Freq_VD_Min", + lsb: 0, + width: 32, + fieldtype: "Frequency", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 238, + name: "Unknown_Calculation_238", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 238, + name: "ID_WEB_Freq_VD_Max", + lsb: 0, + width: 32, + fieldtype: "Frequency", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 239, + name: "Unknown_Calculation_239", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 239, + name: "VBO_Temp_Spread_Soll", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 240, + name: "Unknown_Calculation_240", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 240, + name: "VBO_Temp_Spread_Ist", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 241, + name: "HUP_PWM", + lsb: 0, + width: 32, + fieldtype: "Percent2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 242, + name: "Unknown_Calculation_242", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 242, + name: "HUP_Temp_Spread_Soll", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 243, + name: "Unknown_Calculation_243", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 243, + name: "HUP_Temp_Spread_Ist", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 244, + name: "Unknown_Calculation_244", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 245, + name: "Unknown_Calculation_245", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 246, + name: "Unknown_Calculation_246", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 247, + name: "Unknown_Calculation_247", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 248, + name: "Unknown_Calculation_248", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 249, + name: "Unknown_Calculation_249", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 250, + name: "Unknown_Calculation_250", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 251, + name: "Unknown_Calculation_251", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 252, + name: "Unknown_Calculation_252", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 253, + name: "Unknown_Calculation_253", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 254, + name: "Flow_Rate_254", + lsb: 0, + width: 32, + fieldtype: "Flow", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 255, + name: "Unknown_Calculation_255", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 256, + name: "Unknown_Calculation_256", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 257, + name: "Heat_Output", + lsb: 0, + width: 32, + fieldtype: "Power", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 258, + name: "Unknown_Calculation_258", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 258, + name: "RBE_Version", + lsb: 0, + width: 32, + fieldtype: "MajorMinorVersion", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 259, + name: "Unknown_Calculation_259", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 260, + name: "Unknown_Calculation_260", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 261, + name: "Unknown_Calculation_261", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 262, + name: "Unknown_Calculation_262", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 263, + name: "Unknown_Calculation_263", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 264, + name: "Unknown_Calculation_264", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 265, + name: "Unknown_Calculation_265", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 266, + name: "Unknown_Calculation_266", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 267, + name: "Desired_Room_Temperature", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 268, + name: "AC_Power_Input", + lsb: 0, + width: 32, + fieldtype: "Power", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 269, + name: "Unknown_Calculation_269", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 270, + name: "Unknown_Calculation_270", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 271, + name: "Unknown_Calculation_271", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 272, + name: "Unknown_Calculation_272", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 273, + name: "Unknown_Calculation_273", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "calculation", + index: 274, + name: "Unknown_Calculation_274", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + 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..acb1b5cd --- /dev/null +++ b/docs/holding.js @@ -0,0 +1,454 @@ +window.HOLDING = [ + { + category: "holding", + index: 0, + name: "heating_mode", + lsb: 0, + width: 16, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "CelsiusUInt16", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LpcMode", + writeable: "yes", + 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, + fieldtype: "PowerKW", + writeable: "yes", + 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, + fieldtype: "LockMode", + writeable: "yes", + 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, + fieldtype: "LockMode", + writeable: "yes", + 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, + fieldtype: "LockMode", + writeable: "yes", + 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, + fieldtype: "LockMode", + writeable: "yes", + 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, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.1", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "holding", + index: 65, + name: "heat_overall_mode", + lsb: 0, + width: 16, + fieldtype: "ControlMode", + writeable: "yes", + 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, + fieldtype: "KelvinInt16", + writeable: "yes", + 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, + fieldtype: "LevelMode", + writeable: "yes", + 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, + fieldtype: "OnOffMode", + writeable: "yes", + 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, + fieldtype: "OnOffMode", + writeable: "yes", + 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..b54adb8e --- /dev/null +++ b/docs/index.html @@ -0,0 +1,122 @@ + + + + + +Luxtronik data fields + + + + + +

Luxtronik data fields

+ +
+ + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CategoryIndexNameLSBWidthField TypeWriteableSinceUntilDescription
+ + + + + + + + + + + + + diff --git a/docs/input.js b/docs/input.js new file mode 100644 index 00000000..99591313 --- /dev/null +++ b/docs/input.js @@ -0,0 +1,960 @@ +window.INPUT = [ + { + category: "input", + index: 0, + name: "heatpump_vd1_status", + lsb: 0, + width: 1, + fieldtype: "Bool", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether VD1 is running" + },{ + category: "input", + index: 0, + name: "heatpump_vd2_status", + lsb: 1, + width: 1, + fieldtype: "Bool", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether VD2 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe1_status", + lsb: 2, + width: 1, + fieldtype: "Bool", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE1 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe2_status", + lsb: 3, + width: 1, + fieldtype: "Bool", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE2 is running" + },{ + category: "input", + index: 0, + name: "heatpump_zwe3_status", + lsb: 4, + width: 1, + fieldtype: "Bool", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether ZWE3 is running" + },{ + category: "input", + index: 0, + name: "heatpump_status", + lsb: 0, + width: 16, + fieldtype: "HeatPumpStatus", + writeable: "no", + 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, + fieldtype: "OperationMode", + writeable: "no", + 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\n\nUser-Options:\nheating\nhot water\nswimming pool/solar\nevu\ndefrost\nno request\nheating external source\ncooling" + },{ + category: "input", + index: 3, + name: "heating_status", + lsb: 0, + width: 16, + fieldtype: "ModeStatus", + writeable: "no", + since: "3.90.1", + until: "", + description: "Heating status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + },{ + category: "input", + index: 4, + name: "hot_water_status", + lsb: 0, + width: 16, + fieldtype: "ModeStatus", + writeable: "no", + since: "3.90.1", + until: "", + description: "DHW status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + },{ + category: "input", + index: 6, + name: "cooling_status", + lsb: 0, + width: 16, + fieldtype: "ModeStatus", + writeable: "no", + since: "3.90.1", + until: "", + description: "Cooling status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + },{ + category: "input", + index: 7, + name: "pool_heating_status", + lsb: 0, + width: 16, + fieldtype: "ModeStatus", + writeable: "no", + since: "3.90.1", + until: "", + description: "Pool heating / Solar status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + },{ + category: "input", + index: 100, + name: "return_line_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current return line temperature" + },{ + category: "input", + index: 101, + name: "return_line_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Target return line temperature" + },{ + category: "input", + index: 102, + name: "return_line_ext", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + 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, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Maximum allowed return line temperature" + },{ + category: "input", + index: 104, + name: "return_line_min_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum target return line temperature" + },{ + category: "input", + index: 105, + name: "flow_line_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current flow line temperature" + },{ + category: "input", + index: 106, + name: "room_temperature", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + 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, + fieldtype: "CelsiusInt16", + writeable: "no", + 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, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Measured outdoor temperature" + },{ + category: "input", + index: 109, + name: "outside_temp_average", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.92.0", + until: "", + description: "Average outdoor temperature" + },{ + category: "input", + index: 110, + name: "heat_source_input", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.92.0", + until: "", + description: "Heat source input temperature" + },{ + category: "input", + index: 111, + name: "heat_source_output", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.92.0", + until: "", + description: "Heat source output temperature" + },{ + category: "input", + index: 112, + name: "max_flow_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + since: "3.92.0", + until: "", + description: "Maximum flow temperature" + },{ + category: "input", + index: 113, + name: "unknown_input_113", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 120, + name: "hot_water_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current hot water temperature" + },{ + category: "input", + index: 121, + name: "hot_water_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusUInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Target hot water temperature" + },{ + category: "input", + index: 122, + name: "hot_water_min", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum adjustable hot water temperature" + },{ + category: "input", + index: 123, + name: "hot_water_max", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Maximum adjustable hot water temperature" + },{ + category: "input", + index: 124, + name: "hot_water_limit", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + 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, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 1" + },{ + category: "input", + index: 141, + name: "mc1_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 1" + },{ + category: "input", + index: 142, + name: "mc1_min", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 1" + },{ + category: "input", + index: 143, + name: "mc1_max", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 1" + },{ + category: "input", + index: 150, + name: "mc2_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 2" + },{ + category: "input", + index: 151, + name: "mc2_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 2" + },{ + category: "input", + index: 152, + name: "mc2_min", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 2" + },{ + category: "input", + index: 153, + name: "mc2_max", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 2" + },{ + category: "input", + index: 160, + name: "mc3_temp", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current flow temperature of mixing circuit 3" + },{ + category: "input", + index: 161, + name: "mc3_target", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Desired target temperature of mixing circuit 3" + },{ + category: "input", + index: 162, + name: "mc3_min", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum temperature of mixing circuit 3" + },{ + category: "input", + index: 163, + name: "mc3_max", + lsb: 0, + width: 16, + fieldtype: "CelsiusInt16", + writeable: "no", + since: "3.90.1", + until: "", + description: "Maximum temperature of mixing circuit 3" + },{ + category: "input", + index: 201, + name: "error_number", + lsb: 0, + width: 16, + fieldtype: "Errorcode", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current error number:\n0: no error\nX: error code.\n\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + },{ + category: "input", + index: 202, + name: "buffer_type", + lsb: 0, + width: 16, + fieldtype: "BufferType", + writeable: "no", + since: "3.90.1", + until: "", + description: "Buffer tank configuration:\n0: series buffer\n1: separation buffer\n2: multifunction buffer.\n\nUser-Options:\nseries buffer\nseparation buffer\nmultifunction buffer" + },{ + category: "input", + index: 203, + name: "min_off_time", + lsb: 0, + width: 16, + fieldtype: "Minutes", + writeable: "no", + 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, + fieldtype: "Minutes", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum runtime of the heat pump." + },{ + category: "input", + index: 205, + name: "cooling_configured", + lsb: 0, + width: 16, + fieldtype: "OnOffMode", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether cooling mode is configured:\n0: no\n1: yes.\n\nUser-Options:\nOff\nOn" + },{ + category: "input", + index: 206, + name: "pool_heating_configured", + lsb: 0, + width: 16, + fieldtype: "OnOffMode", + writeable: "no", + since: "3.90.1", + until: "", + description: "Indicates whether pool heating is configured:\n0: no\n1: yes.\n\nUser-Options:\nOff\nOn" + },{ + category: "input", + index: 207, + name: "cooling_release", + lsb: 0, + width: 16, + fieldtype: "OnOffMode", + writeable: "no", + 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).\n\nUser-Options:\nOff\nOn" + },{ + category: "input", + index: 300, + name: "heating_power_actual", + lsb: 0, + width: 16, + fieldtype: "PowerKW", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current heating power." + },{ + category: "input", + index: 301, + name: "electric_power_actual", + lsb: 0, + width: 16, + fieldtype: "PowerKW", + writeable: "no", + since: "3.90.1", + until: "", + description: "Current electrical power consumption." + },{ + category: "input", + index: 302, + name: "electric_power_min_predicted", + lsb: 0, + width: 16, + fieldtype: "PowerKW", + writeable: "no", + since: "3.90.1", + until: "", + description: "Minimum predicted electrical power consumption." + },{ + category: "input", + index: 310, + name: "electric_energy_total", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption (all modes)." + },{ + category: "input", + index: 312, + name: "electric_energy_heating", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for heating." + },{ + category: "input", + index: 314, + name: "electric_energy_dhw", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for DHW." + },{ + category: "input", + index: 316, + name: "electric_energy_cooling", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.90.1", + until: "", + description: "Total electrical energy consumption for cooling." + },{ + category: "input", + index: 318, + name: "electric_energy_pool", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + 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, + fieldtype: "Energy", + writeable: "no", + since: "3.92.0", + until: "", + description: "Total thermal energy production (all modes)." + },{ + category: "input", + index: 322, + name: "thermal_energy_heating", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.92.0", + until: "", + description: "Total thermal energy production for heating." + },{ + category: "input", + index: 324, + name: "thermal_energy_dhw", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.92.0", + until: "", + description: "Total thermal energy production for DHW." + },{ + category: "input", + index: 326, + name: "thermal_energy_cooling", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "3.92.0", + until: "", + description: "Total thermal energy production for cooling." + },{ + category: "input", + index: 328, + name: "thermal_energy_pool", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + 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, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 351, + name: "unknown_input_351", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 352, + name: "unknown_input_352", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 353, + name: "unknown_input_353", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 354, + name: "unknown_input_354", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 355, + name: "unknown_input_355", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 356, + name: "unknown_input_356", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 360, + name: "unknown_input_360", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 361, + name: "unknown_input_361", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 400, + name: "version", + lsb: 0, + width: 16, + fieldtype: "FullVersion", + writeable: "no", + since: "3.90.1", + until: "", + description: "Full firmware version information" + },{ + category: "input", + index: 404, + name: "unknown_input_404", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 405, + name: "unknown_input_405", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 406, + name: "unknown_input_406", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 407, + name: "unknown_input_407", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 408, + name: "unknown_input_408", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 409, + name: "unknown_input_409", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 410, + name: "unknown_input_410", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 411, + name: "unknown_input_411", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 412, + name: "unknown_input_412", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 413, + name: "unknown_input_413", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 416, + name: "unknown_input_416", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 417, + name: "unknown_input_417", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 500, + name: "unknown_input_500", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 501, + name: "unknown_input_501", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + },{ + category: "input", + index: 502, + name: "unknown_input_502", + lsb: 0, + width: 16, + fieldtype: "Unknown", + writeable: "no", + since: "3.92.0", + until: "", + description: "TODO: Function unknown – requires further analysis" + } +]; \ No newline at end of file diff --git a/docs/parameter.js b/docs/parameter.js new file mode 100644 index 00000000..d68e7341 --- /dev/null +++ b/docs/parameter.js @@ -0,0 +1,13500 @@ +window.PARAMETER = [ + { + category: "parameter", + index: 0, + name: "ID_Transfert_LuxNet", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1, + name: "ID_Einst_WK_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 2, + name: "ID_Einst_BWS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 3, + name: "ID_Ba_Hz_akt", + lsb: 0, + width: 32, + fieldtype: "HeatingMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 4, + name: "ID_Ba_Bw_akt", + lsb: 0, + width: 32, + fieldtype: "HotWaterMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 5, + name: "ID_Ba_Al_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 6, + name: "ID_SU_FrkdHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 7, + name: "ID_SU_FrkdBw", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 8, + name: "ID_SU_FrkdAl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 9, + name: "ID_Einst_HReg_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 10, + name: "ID_Einst_HzHwMAt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 11, + name: "ID_Einst_HzHwHKE_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 12, + name: "ID_Einst_HzHKRANH_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 13, + name: "ID_Einst_HzHKRABS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 14, + name: "ID_Einst_HzMK1E_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 15, + name: "ID_Einst_HzMK1ANH_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 16, + name: "ID_Einst_HzMK1ABS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 17, + name: "ID_Einst_HzFtRl_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 18, + name: "ID_Einst_HzFtMK1Vl_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 19, + name: "ID_Einst_SUBW_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 20, + name: "ID_Einst_BwTDI_akt_MO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 21, + name: "ID_Einst_BwTDI_akt_DI", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 22, + name: "ID_Einst_BwTDI_akt_MI", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 23, + name: "ID_Einst_BwTDI_akt_DO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 24, + name: "ID_Einst_BwTDI_akt_FR", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 25, + name: "ID_Einst_BwTDI_akt_SA", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 26, + name: "ID_Einst_BwTDI_akt_SO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 27, + name: "ID_Einst_BwTDI_akt_AL", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 28, + name: "ID_Einst_AnlKonf_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 29, + name: "ID_Einst_Sprache_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 30, + name: "ID_Switchoff_Zahler", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 31, + name: "ID_Switchoff_index", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 32, + name: "ID_Einst_EvuTyp_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 33, + name: "ID_Einst_RFVEinb_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 34, + name: "ID_Einst_AbtZykMax_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 35, + name: "ID_Einst_HREinb_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 36, + name: "ID_Einst_ZWE1Art_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 37, + name: "ID_Einst_ZWE1Fkt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 38, + name: "ID_Einst_ZWE2Art_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 39, + name: "ID_Einst_ZWE2Fkt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 40, + name: "ID_Einst_BWBer_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 41, + name: "ID_Einst_En_Inst", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 42, + name: "ID_Einst_MK1Typ_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 43, + name: "ID_Einst_ABTLuft_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 44, + name: "ID_Einst_TLAbt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 45, + name: "ID_Einst_LAbtTime_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 46, + name: "ID_Einst_ASDTyp_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 47, + name: "ID_Einst_LGST_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 48, + name: "ID_Einst_BwWpTime_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 49, + name: "ID_Einst_Popt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 50, + name: "ID_Einst_Kurzprog_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 51, + name: "ID_Timer_Kurzprog_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 52, + name: "ID_Einst_ManAbt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 53, + name: "ID_Einst_Ahz_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 54, + name: "ID_Einst_TVL_Ahz_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 55, + name: "ID_Einst_TVL_Ahz_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 56, + name: "ID_Einst_TVL_Ahz_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 57, + name: "ID_Einst_TVL_Ahz_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 58, + name: "ID_Einst_TVL_Ahz_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 59, + name: "ID_Einst_TVL_Ahz_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 60, + name: "ID_Einst_TVL_Ahz_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 61, + name: "ID_Einst_TVL_Ahz_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 62, + name: "ID_Einst_TVL_Ahz_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 63, + name: "ID_Einst_TVL_Ahz_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 64, + name: "ID_Einst_TVL_Std_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 65, + name: "ID_Einst_TVL_Std_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 66, + name: "ID_Einst_TVL_Std_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 67, + name: "ID_Einst_TVL_Std_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 68, + name: "ID_Einst_TVL_Std_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 69, + name: "ID_Einst_TVL_Std_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 70, + name: "ID_Einst_TVL_Std_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 71, + name: "ID_Einst_TVL_Std_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 72, + name: "ID_Einst_TVL_Std_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 73, + name: "ID_Einst_TVL_Std_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 74, + name: "ID_Einst_BWS_Hyst_akt", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 75, + name: "ID_Temp_TBW_BwHD_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 76, + name: "ID_Einst_ABT1_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 77, + name: "ID_Einst_LABTpaus_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 78, + name: "ID_AHZ_state_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 79, + name: "ID_Sollwert_TRL_HZ_AHZ", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 80, + name: "ID_AHP_valid_records", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 81, + name: "ID_Timer_AHZ_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 82, + name: "ID_Einst_BWTINP_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 83, + name: "ID_Einst_ZUPTYP_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 84, + name: "ID_Sollwert_TLG_max", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 85, + name: "ID_Einst_BWZIP_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 86, + name: "ID_Einst_ERRmZWE_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 87, + name: "ID_Einst_TRBegr_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 88, + name: "ID_Einst_HRHyst_akt", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 89, + name: "ID_Einst_TRErhmax_akt", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 90, + name: "ID_Einst_ZWEFreig_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 91, + name: "ID_Einst_TAmax_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 92, + name: "ID_Einst_TAmin_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 93, + name: "ID_Einst_TWQmin_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 94, + name: "ID_Einst_THGmax_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 95, + name: "ID_Einst_FRGT2VD_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 96, + name: "ID_Einst_TV2VDBW_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 97, + name: "ID_Einst_SuAll_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 98, + name: "ID_Einst_TAbtEnd_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 99, + name: "ID_Einst_NrKlingel_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 100, + name: "ID_Einst_BWStyp_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 101, + name: "ID_Einst_ABT2_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 102, + name: "ID_Einst_UeVd_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 103, + name: "ID_Einst_RTyp_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 104, + name: "ID_Einst_AhpM_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 105, + name: "ID_Soll_BWS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 106, + name: "ID_Timer_Password", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 107, + name: "ID_Einst_Zugangscode", + lsb: 0, + width: 32, + fieldtype: "AccessLevel", + writeable: "yes", + 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, + fieldtype: "CoolingMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nOff\nAutomatic" + },{ + category: "parameter", + index: 109, + name: "ID_Sollwert_Kuehl1_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 110, + name: "ID_Einst_KuehlFreig_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 111, + name: "ID_Einst_TAbsMin_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 112, + name: "ID_TWQmin_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 113, + name: "ID_CWP_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 114, + name: "ID_Einst_Anode_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 115, + name: "ID_Timer_pexoff_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 116, + name: "ID_Einst_AnlPrio_Hzakt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 117, + name: "ID_Einst_AnlPrio_Bwakt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 118, + name: "ID_Einst_AnlPrio_Swakt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 119, + name: "ID_Ba_Sw_akt", + lsb: 0, + width: 32, + fieldtype: "PoolMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 120, + name: "ID_Einst_RTypMK1_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 121, + name: "ID_Einst_RTypMK2_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 122, + name: "ID_Einst_TDC_Ein_akt", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 123, + name: "ID_Einst_TDC_Aus_akt", + lsb: 0, + width: 32, + fieldtype: "Kelvin", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 124, + name: "ID_Einst_TDC_Max_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 125, + name: "ID_Einst_HysHzExEn_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 126, + name: "ID_Einst_HysBwExEn_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 127, + name: "ID_Einst_ZWE3Art_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 128, + name: "ID_Einst_ZWE3Fkt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 129, + name: "ID_Einst_HzSup_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 130, + name: "ID_Einst_MK2Typ_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 131, + name: "ID_Einst_KuTyp_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 132, + name: "ID_Sollwert_KuCft1_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 133, + name: "ID_Sollwert_KuCft2_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 134, + name: "ID_Sollwert_AtDif1_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 135, + name: "ID_Sollwert_AtDif2_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 136, + name: "ID_SU_FrkdSwb", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 137, + name: "ID_Einst_SwbBer_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 138, + name: "ID_Einst_TV2VDSWB_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 139, + name: "ID_Einst_MinSwan_Time_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 140, + name: "ID_Einst_SuMk2_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 141, + name: "ID_Einst_HzMK2E_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 142, + name: "ID_Einst_HzMK2ANH_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 143, + name: "ID_Einst_HzMK2ABS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 144, + name: "ID_Einst_HzMK2Hgr_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 145, + name: "ID_Einst_HzFtMK2Vl_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 146, + name: "ID_Temp_THG_BwHD_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 147, + name: "ID_Temp_TA_BwHD_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 148, + name: "ID_Einst_BwHup_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 149, + name: "ID_Einst_TVLmax_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 150, + name: "ID_Einst_MK1LzFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 151, + name: "ID_Einst_MK2LzFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 152, + name: "ID_Einst_MK1PerFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 153, + name: "ID_Einst_MK2PerFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 154, + name: "ID_Entl_Zyklus_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 155, + name: "ID_Einst_Entl_time_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 156, + name: "ID_Entl_Pause", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 157, + name: "ID_Entl_timer", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 158, + name: "ID_Einst_Entl_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 159, + name: "ID_Ahz_HLeist_confirmed", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 160, + name: "ID_FirstInit_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 161, + name: "ID_Einst_SuAll_akt2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 162, + name: "ID_Einst_SuAllWo_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 163, + name: "ID_Einst_SuAllWo_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 164, + name: "ID_Einst_SuAllWo_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 165, + name: "ID_Einst_SuAllWo_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 166, + name: "ID_Einst_SuAllWo_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 167, + name: "ID_Einst_SuAllWo_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 168, + name: "ID_Einst_SuAll25_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 169, + name: "ID_Einst_SuAll25_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 170, + name: "ID_Einst_SuAll25_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 171, + name: "ID_Einst_SuAll25_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 172, + name: "ID_Einst_SuAll25_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 173, + name: "ID_Einst_SuAll25_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 174, + name: "ID_Einst_SuAll25_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 175, + name: "ID_Einst_SuAll25_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 176, + name: "ID_Einst_SuAll25_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 177, + name: "ID_Einst_SuAll25_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 178, + name: "ID_Einst_SuAll25_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 179, + name: "ID_Einst_SuAll25_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 180, + name: "ID_Einst_SuAllTg_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 181, + name: "ID_Einst_SuAllTg_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 182, + name: "ID_Einst_SuAllTg_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 183, + name: "ID_Einst_SuAllTg_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 184, + name: "ID_Einst_SuAllTg_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 185, + name: "ID_Einst_SuAllTg_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 186, + name: "ID_Einst_SuAllTg_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 187, + name: "ID_Einst_SuAllTg_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 188, + name: "ID_Einst_SuAllTg_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 189, + name: "ID_Einst_SuAllTg_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 190, + name: "ID_Einst_SuAllTg_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 191, + name: "ID_Einst_SuAllTg_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 192, + name: "ID_Einst_SuAllTg_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 193, + name: "ID_Einst_SuAllTg_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 194, + name: "ID_Einst_SuAllTg_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 195, + name: "ID_Einst_SuAllTg_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 196, + name: "ID_Einst_SuAllTg_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 197, + name: "ID_Einst_SuAllTg_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 198, + name: "ID_Einst_SuAllTg_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 199, + name: "ID_Einst_SuAllTg_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 200, + name: "ID_Einst_SuAllTg_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 201, + name: "ID_Einst_SuAllTg_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 202, + name: "ID_Einst_SuAllTg_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 203, + name: "ID_Einst_SuAllTg_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 204, + name: "ID_Einst_SuAllTg_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 205, + name: "ID_Einst_SuAllTg_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 206, + name: "ID_Einst_SuAllTg_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 207, + name: "ID_Einst_SuAllTg_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 208, + name: "ID_Einst_SuAllTg_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 209, + name: "ID_Einst_SuAllTg_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 210, + name: "ID_Einst_SuAllTg_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 211, + name: "ID_Einst_SuAllTg_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 212, + name: "ID_Einst_SuAllTg_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 213, + name: "ID_Einst_SuAllTg_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 214, + name: "ID_Einst_SuAllTg_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 215, + name: "ID_Einst_SuAllTg_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 216, + name: "ID_Einst_SuAllTg_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 217, + name: "ID_Einst_SuAllTg_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 218, + name: "ID_Einst_SuAllTg_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 219, + name: "ID_Einst_SuAllTg_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 220, + name: "ID_Einst_SuAllTg_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 221, + name: "ID_Einst_SuAllTg_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 222, + name: "ID_Einst_SuHkr_akt", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 223, + name: "ID_Einst_SuHkrW0_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 224, + name: "ID_Einst_SuHkrW0_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 225, + name: "ID_Einst_SuHkrW0_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 226, + name: "ID_Einst_SuHkrW0_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 227, + name: "ID_Einst_SuHkrW0_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 228, + name: "ID_Einst_SuHkrW0_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 229, + name: "ID_Einst_SuHkr25_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 230, + name: "ID_Einst_SuHkr25_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 231, + name: "ID_Einst_SuHkr25_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 232, + name: "ID_Einst_SuHkr25_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 233, + name: "ID_Einst_SuHkr25_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 234, + name: "ID_Einst_SuHkr25_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 235, + name: "ID_Einst_SuHkr25_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 236, + name: "ID_Einst_SuHkr25_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 237, + name: "ID_Einst_SuHkr25_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 238, + name: "ID_Einst_SuHkr25_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 239, + name: "ID_Einst_SuHkr25_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 240, + name: "ID_Einst_SuHkr25_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 241, + name: "ID_Einst_SuHkrTG_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 242, + name: "ID_Einst_SuHkrTG_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 243, + name: "ID_Einst_SuHkrTG_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 244, + name: "ID_Einst_SuHkrTG_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 245, + name: "ID_Einst_SuHkrTG_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 246, + name: "ID_Einst_SuHkrTG_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 247, + name: "ID_Einst_SuHkrTG_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 248, + name: "ID_Einst_SuHkrTG_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 249, + name: "ID_Einst_SuHkrTG_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 250, + name: "ID_Einst_SuHkrTG_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 251, + name: "ID_Einst_SuHkrTG_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 252, + name: "ID_Einst_SuHkrTG_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 253, + name: "ID_Einst_SuHkrTG_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 254, + name: "ID_Einst_SuHkrTG_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 255, + name: "ID_Einst_SuHkrTG_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 256, + name: "ID_Einst_SuHkrTG_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 257, + name: "ID_Einst_SuHkrTG_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 258, + name: "ID_Einst_SuHkrTG_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 259, + name: "ID_Einst_SuHkrTG_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 260, + name: "ID_Einst_SuHkrTG_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 261, + name: "ID_Einst_SuHkrTG_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 262, + name: "ID_Einst_SuHkrTG_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 263, + name: "ID_Einst_SuHkrTG_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 264, + name: "ID_Einst_SuHkrTG_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 265, + name: "ID_Einst_SuHkrTG_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 266, + name: "ID_Einst_SuHkrTG_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 267, + name: "ID_Einst_SuHkrTG_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 268, + name: "ID_Einst_SuHkrTG_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 269, + name: "ID_Einst_SuHkrTG_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 270, + name: "ID_Einst_SuHkrTG_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 271, + name: "ID_Einst_SuHkrTG_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 272, + name: "ID_Einst_SuHkrTG_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 273, + name: "ID_Einst_SuHkrTG_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 274, + name: "ID_Einst_SuHkrTG_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 275, + name: "ID_Einst_SuHkrTG_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 276, + name: "ID_Einst_SuHkrTG_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 277, + name: "ID_Einst_SuHkrTG_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 278, + name: "ID_Einst_SuHkrTG_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 279, + name: "ID_Einst_SuHkrTG_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 280, + name: "ID_Einst_SuHkrTG_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 281, + name: "ID_Einst_SuHkrTG_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 282, + name: "ID_Einst_SuHkrTG_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 283, + name: "ID_Einst_SuMk1_akt", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 284, + name: "ID_Einst_SuMk1W0_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 285, + name: "ID_Einst_SuMk1W0_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 286, + name: "ID_Einst_SuMk1W0_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 287, + name: "ID_Einst_SuMk1W0_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 288, + name: "ID_Einst_SuMk1W0_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 289, + name: "ID_Einst_SuMk1W0_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 290, + name: "ID_Einst_SuMk125_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 291, + name: "ID_Einst_SuMk125_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 292, + name: "ID_Einst_SuMk125_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 293, + name: "ID_Einst_SuMk125_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 294, + name: "ID_Einst_SuMk125_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 295, + name: "ID_Einst_SuMk125_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 296, + name: "ID_Einst_SuMk125_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 297, + name: "ID_Einst_SuMk125_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 298, + name: "ID_Einst_SuMk125_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 299, + name: "ID_Einst_SuMk125_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 300, + name: "ID_Einst_SuMk125_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 301, + name: "ID_Einst_SuMk125_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 302, + name: "ID_Einst_SuMk1TG_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 303, + name: "ID_Einst_SuMk1TG_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 304, + name: "ID_Einst_SuMk1TG_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 305, + name: "ID_Einst_SuMk1TG_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 306, + name: "ID_Einst_SuMk1TG_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 307, + name: "ID_Einst_SuMk1TG_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 308, + name: "ID_Einst_SuMk1TG_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 309, + name: "ID_Einst_SuMk1TG_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 310, + name: "ID_Einst_SuMk1TG_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 311, + name: "ID_Einst_SuMk1TG_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 312, + name: "ID_Einst_SuMk1TG_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 313, + name: "ID_Einst_SuMk1TG_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 314, + name: "ID_Einst_SuMk1TG_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 315, + name: "ID_Einst_SuMk1TG_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 316, + name: "ID_Einst_SuMk1TG_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 317, + name: "ID_Einst_SuMk1TG_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 318, + name: "ID_Einst_SuMk1TG_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 319, + name: "ID_Einst_SuMk1TG_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 320, + name: "ID_Einst_SuMk1TG_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 321, + name: "ID_Einst_SuMk1TG_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 322, + name: "ID_Einst_SuMk1TG_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 323, + name: "ID_Einst_SuMk1TG_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 324, + name: "ID_Einst_SuMk1TG_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 325, + name: "ID_Einst_SuMk1TG_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 326, + name: "ID_Einst_SuMk1TG_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 327, + name: "ID_Einst_SuMk1TG_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 328, + name: "ID_Einst_SuMk1TG_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 329, + name: "ID_Einst_SuMk1TG_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 330, + name: "ID_Einst_SuMk1TG_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 331, + name: "ID_Einst_SuMk1TG_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 332, + name: "ID_Einst_SuMk1TG_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 333, + name: "ID_Einst_SuMk1TG_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 334, + name: "ID_Einst_SuMk1TG_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 335, + name: "ID_Einst_SuMk1TG_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 336, + name: "ID_Einst_SuMk1TG_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 337, + name: "ID_Einst_SuMk1TG_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 338, + name: "ID_Einst_SuMk1TG_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 339, + name: "ID_Einst_SuMk1TG_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 340, + name: "ID_Einst_SuMk1TG_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 341, + name: "ID_Einst_SuMk1TG_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 342, + name: "ID_Einst_SuMk1TG_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 343, + name: "ID_Einst_SuMk1TG_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 344, + name: "ID_Einst_SuMk2_akt2", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 345, + name: "ID_Einst_SuMk2Wo_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 346, + name: "ID_Einst_SuMk2Wo_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 347, + name: "ID_Einst_SuMk2Wo_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 348, + name: "ID_Einst_SuMk2Wo_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 349, + name: "ID_Einst_SuMk2Wo_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 350, + name: "ID_Einst_SuMk2Wo_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 351, + name: "ID_Einst_SuMk225_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 352, + name: "ID_Einst_SuMk225_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 353, + name: "ID_Einst_SuMk225_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 354, + name: "ID_Einst_SuMk225_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 355, + name: "ID_Einst_SuMk225_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 356, + name: "ID_Einst_SuMk225_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 357, + name: "ID_Einst_SuMk225_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 358, + name: "ID_Einst_SuMk225_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 359, + name: "ID_Einst_SuMk225_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 360, + name: "ID_Einst_SuMk225_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 361, + name: "ID_Einst_SuMk225_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 362, + name: "ID_Einst_SuMk225_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 363, + name: "ID_Einst_SuMk2Tg_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 364, + name: "ID_Einst_SuMk2Tg_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 365, + name: "ID_Einst_SuMk2Tg_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 366, + name: "ID_Einst_SuMk2Tg_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 367, + name: "ID_Einst_SuMk2Tg_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 368, + name: "ID_Einst_SuMk2Tg_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 369, + name: "ID_Einst_SuMk2Tg_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 370, + name: "ID_Einst_SuMk2Tg_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 371, + name: "ID_Einst_SuMk2Tg_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 372, + name: "ID_Einst_SuMk2Tg_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 373, + name: "ID_Einst_SuMk2Tg_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 374, + name: "ID_Einst_SuMk2Tg_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 375, + name: "ID_Einst_SuMk2Tg_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 376, + name: "ID_Einst_SuMk2Tg_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 377, + name: "ID_Einst_SuMk2Tg_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 378, + name: "ID_Einst_SuMk2Tg_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 379, + name: "ID_Einst_SuMk2Tg_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 380, + name: "ID_Einst_SuMk2Tg_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 381, + name: "ID_Einst_SuMk2Tg_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 382, + name: "ID_Einst_SuMk2Tg_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 383, + name: "ID_Einst_SuMk2Tg_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 384, + name: "ID_Einst_SuMk2Tg_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 385, + name: "ID_Einst_SuMk2Tg_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 386, + name: "ID_Einst_SuMk2Tg_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 387, + name: "ID_Einst_SuMk2Tg_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 388, + name: "ID_Einst_SuMk2Tg_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 389, + name: "ID_Einst_SuMk2Tg_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 390, + name: "ID_Einst_SuMk2Tg_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 391, + name: "ID_Einst_SuMk2Tg_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 392, + name: "ID_Einst_SuMk2Tg_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 393, + name: "ID_Einst_SuMk2Tg_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 394, + name: "ID_Einst_SuMk2Tg_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 395, + name: "ID_Einst_SuMk2Tg_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 396, + name: "ID_Einst_SuMk2Tg_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 397, + name: "ID_Einst_SuMk2Tg_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 398, + name: "ID_Einst_SuMk2Tg_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 399, + name: "ID_Einst_SuMk2Tg_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 400, + name: "ID_Einst_SuMk2Tg_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 401, + name: "ID_Einst_SuMk2Tg_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 402, + name: "ID_Einst_SuMk2Tg_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 403, + name: "ID_Einst_SuMk2Tg_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 404, + name: "ID_Einst_SuMk2Tg_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 405, + name: "ID_Einst_SUBW_akt2", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 406, + name: "ID_Einst_SuBwWO_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 407, + name: "ID_Einst_SuBwWO_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 408, + name: "ID_Einst_SuBwWO_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 409, + name: "ID_Einst_SuBwWO_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 410, + name: "ID_Einst_SuBwWO_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 411, + name: "ID_Einst_SuBwWO_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 412, + name: "ID_Einst_SuBwWO_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 413, + name: "ID_Einst_SuBwWO_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 414, + name: "ID_Einst_SuBwWO_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 415, + name: "ID_Einst_SuBwWO_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 416, + name: "ID_Einst_SuBw25_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 417, + name: "ID_Einst_SuBw25_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 418, + name: "ID_Einst_SuBw25_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 419, + name: "ID_Einst_SuBw25_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 420, + name: "ID_Einst_SuBw25_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 421, + name: "ID_Einst_SuBw25_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 422, + name: "ID_Einst_SuBw25_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 423, + name: "ID_Einst_SuBw25_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 424, + name: "ID_Einst_SuBw25_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 425, + name: "ID_Einst_SuBw25_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 426, + name: "ID_Einst_SuBw25_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 427, + name: "ID_Einst_SuBw25_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 428, + name: "ID_Einst_SuBw25_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 429, + name: "ID_Einst_SuBw25_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 430, + name: "ID_Einst_SuBw25_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 431, + name: "ID_Einst_SuBw25_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 432, + name: "ID_Einst_SuBw25_zeit_3_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 433, + name: "ID_Einst_SuBw25_zeit_3_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 434, + name: "ID_Einst_SuBw25_zeit_4_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 435, + name: "ID_Einst_SuBw25_zeit_4_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 436, + name: "ID_Einst_SuBwTG_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 437, + name: "ID_Einst_SuBwTG_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 438, + name: "ID_Einst_SuBwTG_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 439, + name: "ID_Einst_SuBwTG_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 440, + name: "ID_Einst_SuBwTG_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 441, + name: "ID_Einst_SuBwTG_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 442, + name: "ID_Einst_SuBwTG_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 443, + name: "ID_Einst_SuBwTG_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 444, + name: "ID_Einst_SuBwTG_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 445, + name: "ID_Einst_SuBwTG_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 446, + name: "ID_Einst_SuBwTG_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 447, + name: "ID_Einst_SuBwTG_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 448, + name: "ID_Einst_SuBwTG_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 449, + name: "ID_Einst_SuBwTG_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 450, + name: "ID_Einst_SuBwTG_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 451, + name: "ID_Einst_SuBwTG_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 452, + name: "ID_Einst_SuBwTG_zeit_3_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 453, + name: "ID_Einst_SuBwTG_zeit_3_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 454, + name: "ID_Einst_SuBwTG_zeit_4_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 455, + name: "ID_Einst_SuBwTG_zeit_4_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 456, + name: "ID_Einst_SuBwTG_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 457, + name: "ID_Einst_SuBwTG_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 458, + name: "ID_Einst_SuBwTG_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 459, + name: "ID_Einst_SuBwTG_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 460, + name: "ID_Einst_SuBwTG_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 461, + name: "ID_Einst_SuBwTG_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 462, + name: "ID_Einst_SuBwTG_zeit_3_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 463, + name: "ID_Einst_SuBwTG_zeit_3_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 464, + name: "ID_Einst_SuBwTG_zeit_4_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 465, + name: "ID_Einst_SuBwTG_zeit_4_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 466, + name: "ID_Einst_SuBwTG_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 467, + name: "ID_Einst_SuBwTG_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 468, + name: "ID_Einst_SuBwTG_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 469, + name: "ID_Einst_SuBwTG_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 470, + name: "ID_Einst_SuBwTG_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 471, + name: "ID_Einst_SuBwTG_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 472, + name: "ID_Einst_SuBwTG_zeit_3_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 473, + name: "ID_Einst_SuBwTG_zeit_3_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 474, + name: "ID_Einst_SuBwTG_zeit_4_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 475, + name: "ID_Einst_SuBwTG_zeit_4_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 476, + name: "ID_Einst_SuBwTG_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 477, + name: "ID_Einst_SuBwTG_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 478, + name: "ID_Einst_SuBwTG_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 479, + name: "ID_Einst_SuBwTG_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 480, + name: "ID_Einst_SuBwTG_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 481, + name: "ID_Einst_SuBwTG_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 482, + name: "ID_Einst_SuBwTG_zeit_3_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 483, + name: "ID_Einst_SuBwTG_zeit_3_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 484, + name: "ID_Einst_SuBwTG_zeit_4_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 485, + name: "ID_Einst_SuBwTG_zeit_4_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 486, + name: "ID_Einst_SuBwTG_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 487, + name: "ID_Einst_SuBwTG_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 488, + name: "ID_Einst_SuBwTG_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 489, + name: "ID_Einst_SuBwTG_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 490, + name: "ID_Einst_SuBwTG_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 491, + name: "ID_Einst_SuBwTG_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 492, + name: "ID_Einst_SuBwTG_zeit_3_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 493, + name: "ID_Einst_SuBwTG_zeit_3_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 494, + name: "ID_Einst_SuBwTG_zeit_4_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 495, + name: "ID_Einst_SuBwTG_zeit_4_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 496, + name: "ID_Einst_SuBwTG_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 497, + name: "ID_Einst_SuBwTG_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 498, + name: "ID_Einst_SuBwTG_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 499, + name: "ID_Einst_SuBwTG_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 500, + name: "ID_Einst_SuBwTG_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 501, + name: "ID_Einst_SuBwTG_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 502, + name: "ID_Einst_SuBwTG_zeit_3_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 503, + name: "ID_Einst_SuBwTG_zeit_3_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 504, + name: "ID_Einst_SuBwTG_zeit_4_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 505, + name: "ID_Einst_SuBwTG_zeit_4_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 506, + name: "ID_Einst_SuZIP_akt", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 507, + name: "ID_Einst_SuZIPWo_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 508, + name: "ID_Einst_SuZIPWo_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 509, + name: "ID_Einst_SuZIPWo_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 510, + name: "ID_Einst_SuZIPWo_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 511, + name: "ID_Einst_SuZIPWo_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 512, + name: "ID_Einst_SuZIPWo_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 513, + name: "ID_Einst_SuZIPWo_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 514, + name: "ID_Einst_SuZIPWo_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 515, + name: "ID_Einst_SuZIPWo_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 516, + name: "ID_Einst_SuZIPWo_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 517, + name: "ID_Einst_SuZIP25_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 518, + name: "ID_Einst_SuZIP25_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 519, + name: "ID_Einst_SuZIP25_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 520, + name: "ID_Einst_SuZIP25_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 521, + name: "ID_Einst_SuZIP25_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 522, + name: "ID_Einst_SuZIP25_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 523, + name: "ID_Einst_SuZIP25_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 524, + name: "ID_Einst_SuZIP25_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 525, + name: "ID_Einst_SuZIP25_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 526, + name: "ID_Einst_SuZIP25_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 527, + name: "ID_Einst_SuZIP25_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 528, + name: "ID_Einst_SuZIP25_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 529, + name: "ID_Einst_SuZIP25_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 530, + name: "ID_Einst_SuZIP25_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 531, + name: "ID_Einst_SuZIP25_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 532, + name: "ID_Einst_SuZIP25_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 533, + name: "ID_Einst_SuZIP25_zeit_3_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 534, + name: "ID_Einst_SuZIP25_zeit_3_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 535, + name: "ID_Einst_SuZIP25_zeit_4_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 536, + name: "ID_Einst_SuZIP25_zeit_4_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 537, + name: "ID_Einst_SuZIPTg_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 538, + name: "ID_Einst_SuZIPTg_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 539, + name: "ID_Einst_SuZIPTg_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 540, + name: "ID_Einst_SuZIPTg_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 541, + name: "ID_Einst_SuZIPTg_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 542, + name: "ID_Einst_SuZIPTg_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 543, + name: "ID_Einst_SuZIPTg_zeit_3_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 544, + name: "ID_Einst_SuZIPTg_zeit_3_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 545, + name: "ID_Einst_SuZIPTg_zeit_4_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 546, + name: "ID_Einst_SuZIPTg_zeit_4_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 547, + name: "ID_Einst_SuZIPTg_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 548, + name: "ID_Einst_SuZIPTg_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 549, + name: "ID_Einst_SuZIPTg_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 550, + name: "ID_Einst_SuZIPTg_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 551, + name: "ID_Einst_SuZIPTg_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 552, + name: "ID_Einst_SuZIPTg_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 553, + name: "ID_Einst_SuZIPTg_zeit_3_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 554, + name: "ID_Einst_SuZIPTg_zeit_3_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 555, + name: "ID_Einst_SuZIPTg_zeit_4_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 556, + name: "ID_Einst_SuZIPTg_zeit_4_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 557, + name: "ID_Einst_SuZIPTg_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 558, + name: "ID_Einst_SuZIPTg_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 559, + name: "ID_Einst_SuZIPTg_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 560, + name: "ID_Einst_SuZIPTg_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 561, + name: "ID_Einst_SuZIPTg_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 562, + name: "ID_Einst_SuZIPTg_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 563, + name: "ID_Einst_SuZIPTg_zeit_3_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 564, + name: "ID_Einst_SuZIPTg_zeit_3_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 565, + name: "ID_Einst_SuZIPTg_zeit_4_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 566, + name: "ID_Einst_SuZIPTg_zeit_4_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 567, + name: "ID_Einst_SuZIPTg_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 568, + name: "ID_Einst_SuZIPTg_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 569, + name: "ID_Einst_SuZIPTg_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 570, + name: "ID_Einst_SuZIPTg_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 571, + name: "ID_Einst_SuZIPTg_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 572, + name: "ID_Einst_SuZIPTg_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 573, + name: "ID_Einst_SuZIPTg_zeit_3_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 574, + name: "ID_Einst_SuZIPTg_zeit_3_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 575, + name: "ID_Einst_SuZIPTg_zeit_4_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 576, + name: "ID_Einst_SuZIPTg_zeit_4_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 577, + name: "ID_Einst_SuZIPTg_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 578, + name: "ID_Einst_SuZIPTg_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 579, + name: "ID_Einst_SuZIPTg_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 580, + name: "ID_Einst_SuZIPTg_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 581, + name: "ID_Einst_SuZIPTg_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 582, + name: "ID_Einst_SuZIPTg_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 583, + name: "ID_Einst_SuZIPTg_zeit_3_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 584, + name: "ID_Einst_SuZIPTg_zeit_3_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 585, + name: "ID_Einst_SuZIPTg_zeit_4_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 586, + name: "ID_Einst_SuZIPTg_zeit_4_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 587, + name: "ID_Einst_SuZIPTg_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 588, + name: "ID_Einst_SuZIPTg_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 589, + name: "ID_Einst_SuZIPTg_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 590, + name: "ID_Einst_SuZIPTg_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 591, + name: "ID_Einst_SuZIPTg_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 592, + name: "ID_Einst_SuZIPTg_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 593, + name: "ID_Einst_SuZIPTg_zeit_3_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 594, + name: "ID_Einst_SuZIPTg_zeit_3_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 595, + name: "ID_Einst_SuZIPTg_zeit_4_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 596, + name: "ID_Einst_SuZIPTg_zeit_4_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 597, + name: "ID_Einst_SuZIPTg_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 598, + name: "ID_Einst_SuZIPTg_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 599, + name: "ID_Einst_SuZIPTg_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 600, + name: "ID_Einst_SuZIPTg_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 601, + name: "ID_Einst_SuZIPTg_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 602, + name: "ID_Einst_SuZIPTg_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 603, + name: "ID_Einst_SuZIPTg_zeit_3_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 604, + name: "ID_Einst_SuZIPTg_zeit_3_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 605, + name: "ID_Einst_SuZIPTg_zeit_4_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 606, + name: "ID_Einst_SuZIPTg_zeit_4_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 607, + name: "ID_Einst_SuSwb_akt", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 608, + name: "ID_Einst_SuSwbWo_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 609, + name: "ID_Einst_SuSwbWo_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 610, + name: "ID_Einst_SuSwbWo_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 611, + name: "ID_Einst_SuSwbWo_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 612, + name: "ID_Einst_SuSwbWo_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 613, + name: "ID_Einst_SuSwbWo_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 614, + name: "ID_Einst_SuSwb25_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 615, + name: "ID_Einst_SuSwb25_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 616, + name: "ID_Einst_SuSwb25_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 617, + name: "ID_Einst_SuSwb25_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 618, + name: "ID_Einst_SuSwb25_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 619, + name: "ID_Einst_SuSwb25_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 620, + name: "ID_Einst_SuSwb25_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 621, + name: "ID_Einst_SuSwb25_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 622, + name: "ID_Einst_SuSwb25_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 623, + name: "ID_Einst_SuSwb25_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 624, + name: "ID_Einst_SuSwb25_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 625, + name: "ID_Einst_SuSwb25_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 626, + name: "ID_Einst_SuSwbTg_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 627, + name: "ID_Einst_SuSwbTg_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 628, + name: "ID_Einst_SuSwbTg_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 629, + name: "ID_Einst_SuSwbTg_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 630, + name: "ID_Einst_SuSwbTg_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 631, + name: "ID_Einst_SuSwbTg_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 632, + name: "ID_Einst_SuSwbTg_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 633, + name: "ID_Einst_SuSwbTg_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 634, + name: "ID_Einst_SuSwbTg_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 635, + name: "ID_Einst_SuSwbTg_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 636, + name: "ID_Einst_SuSwbTg_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 637, + name: "ID_Einst_SuSwbTg_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 638, + name: "ID_Einst_SuSwbTg_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 639, + name: "ID_Einst_SuSwbTg_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 640, + name: "ID_Einst_SuSwbTg_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 641, + name: "ID_Einst_SuSwbTg_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 642, + name: "ID_Einst_SuSwbTg_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 643, + name: "ID_Einst_SuSwbTg_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 644, + name: "ID_Einst_SuSwbTg_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 645, + name: "ID_Einst_SuSwbTg_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 646, + name: "ID_Einst_SuSwbTg_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 647, + name: "ID_Einst_SuSwbTg_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 648, + name: "ID_Einst_SuSwbTg_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 649, + name: "ID_Einst_SuSwbTg_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 650, + name: "ID_Einst_SuSwbTg_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 651, + name: "ID_Einst_SuSwbTg_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 652, + name: "ID_Einst_SuSwbTg_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 653, + name: "ID_Einst_SuSwbTg_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 654, + name: "ID_Einst_SuSwbTg_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 655, + name: "ID_Einst_SuSwbTg_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 656, + name: "ID_Einst_SuSwbTg_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 657, + name: "ID_Einst_SuSwbTg_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 658, + name: "ID_Einst_SuSwbTg_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 659, + name: "ID_Einst_SuSwbTg_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 660, + name: "ID_Einst_SuSwbTg_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 661, + name: "ID_Einst_SuSwbTg_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 662, + name: "ID_Einst_SuSwbTg_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 663, + name: "ID_Einst_SuSwbTg_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 664, + name: "ID_Einst_SuSwbTg_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 665, + name: "ID_Einst_SuSwbTg_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 666, + name: "ID_Einst_SuSwbTg_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 667, + name: "ID_Einst_SuSwbTg_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 668, + name: "ID_Zaehler_BetrZeitWP", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 669, + name: "ID_Zaehler_BetrZeitVD1", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 670, + name: "ID_Zaehler_BetrZeitVD2", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 671, + name: "ID_Zaehler_BetrZeitZWE1", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 672, + name: "ID_Zaehler_BetrZeitZWE2", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 673, + name: "ID_Zaehler_BetrZeitZWE3", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 674, + name: "ID_Zaehler_BetrZeitImpVD1", + lsb: 0, + width: 32, + fieldtype: "Count", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 675, + name: "ID_Zaehler_BetrZeitImpVD2", + lsb: 0, + width: 32, + fieldtype: "Count", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 676, + name: "ID_Zaehler_BetrZeitEZMVD1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 677, + name: "ID_Zaehler_BetrZeitEZMVD2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 678, + name: "ID_Einst_Entl_Typ_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 679, + name: "ID_Einst_Entl_Typ_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 680, + name: "ID_Einst_Entl_Typ_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 681, + name: "ID_Einst_Entl_Typ_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 682, + name: "ID_Einst_Entl_Typ_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 683, + name: "ID_Einst_Entl_Typ_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 684, + name: "ID_Einst_Entl_Typ_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 685, + name: "ID_Einst_Entl_Typ_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 686, + name: "ID_Einst_Entl_Typ_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 687, + name: "ID_Einst_Entl_Typ_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 688, + name: "ID_Einst_Entl_Typ_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 689, + name: "ID_Einst_Entl_Typ_11", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 690, + name: "ID_Einst_Entl_Typ_12", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 691, + name: "ID_Einst_Vorl_max_MK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 692, + name: "ID_Einst_Vorl_max_MK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 693, + name: "ID_SU_FrkdMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 694, + name: "ID_SU_FrkdMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 695, + name: "ID_Ba_Hz_MK1_akt", + lsb: 0, + width: 32, + fieldtype: "MixedCircuitMode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 696, + name: "ID_Ba_Hz_MK2_akt", + lsb: 0, + width: 32, + fieldtype: "MixedCircuitMode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 697, + name: "ID_Einst_Zirk_Ein_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 698, + name: "ID_Einst_Zirk_Aus_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 699, + name: "ID_Einst_Heizgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 700, + name: "ID_Einst_Heizgrenze_Temp", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 701, + name: "ID_VariablenIBNgespeichert", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 702, + name: "ID_SchonIBNAssistant", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 703, + name: "ID_Heizgrenze_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 704, + name: "ID_Heizgrenze_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 705, + name: "ID_Heizgrenze_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 706, + name: "ID_Heizgrenze_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 707, + name: "ID_Heizgrenze_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 708, + name: "ID_Heizgrenze_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 709, + name: "ID_Heizgrenze_6", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 710, + name: "ID_Heizgrenze_7", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 711, + name: "ID_Heizgrenze_8", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 712, + name: "ID_Heizgrenze_9", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 713, + name: "ID_Heizgrenze_10", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 714, + name: "ID_Heizgrenze_11", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 715, + name: "ID_SchemenIBNgewahlt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 716, + name: "ID_Switchoff_file_0_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 717, + name: "ID_Switchoff_file_1_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 718, + name: "ID_Switchoff_file_2_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 719, + name: "ID_Switchoff_file_3_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 720, + name: "ID_Switchoff_file_4_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 721, + name: "ID_Switchoff_file_0_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 722, + name: "ID_Switchoff_file_1_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 723, + name: "ID_Switchoff_file_2_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 724, + name: "ID_Switchoff_file_3_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 725, + name: "ID_Switchoff_file_4_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 726, + name: "ID_DauerDatenLoggerAktiv", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 727, + name: "ID_Laufvar_Heizgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 728, + name: "ID_Zaehler_BetrZeitHz", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 729, + name: "ID_Zaehler_BetrZeitBW", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 730, + name: "ID_Zaehler_BetrZeitKue", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 731, + name: "ID_SU_FstdHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 732, + name: "ID_SU_FstdBw", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 733, + name: "ID_SU_FstdSwb", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 734, + name: "ID_SU_FstdMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 735, + name: "ID_SU_FstdMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 736, + name: "ID_FerienAbsenkungHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 737, + name: "ID_FerienAbsenkungMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 738, + name: "ID_FerienAbsenkungMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 739, + name: "ID_FerienModusAktivHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 740, + name: "ID_FerienModusAktivBw", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 741, + name: "ID_FerienModusAktivSwb", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 742, + name: "ID_FerienModusAktivMk1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 743, + name: "ID_FerienModusAktivMk2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 744, + name: "ID_DisplayContrast_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 745, + name: "ID_Ba_Hz_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 746, + name: "ID_Ba_Bw_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 747, + name: "ID_Ba_Sw_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 748, + name: "ID_Ba_Hz_MK1_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 749, + name: "ID_Ba_Hz_MK2_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 750, + name: "ID_AdresseIP_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 751, + name: "ID_SubNetMask_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 752, + name: "ID_Add_Broadcast_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 753, + name: "ID_Add_StdGateway_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 754, + name: "ID_DHCPServerAktiv_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 755, + name: "ID_WebserverPasswort_1_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 756, + name: "ID_WebserverPasswort_2_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 757, + name: "ID_WebserverPasswort_3_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 758, + name: "ID_WebserverPasswort_4_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 759, + name: "ID_WebserverPasswort_5_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 760, + name: "ID_WebserverPasswort_6_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 761, + name: "ID_WebServerWerteBekommen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 762, + name: "ID_Einst_ParBetr_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 763, + name: "ID_Einst_WpAnz_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 764, + name: "ID_Einst_PhrTime_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 765, + name: "ID_Einst_HysPar_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 766, + name: "ID_IP_PB_Slave_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 767, + name: "ID_IP_PB_Slave_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 768, + name: "ID_IP_PB_Slave_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 769, + name: "ID_IP_PB_Slave_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 770, + name: "ID_IP_PB_Slave_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 771, + name: "ID_IP_PB_Slave_5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 772, + name: "ID_Einst_BwHup_akt_backup", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 773, + name: "ID_Einst_SuMk3_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 774, + name: "ID_Einst_HzMK3E_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 775, + name: "ID_Einst_HzMK3ANH_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 776, + name: "ID_Einst_HzMK3ABS_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 777, + name: "ID_Einst_HzMK3Hgr_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 778, + name: "ID_Einst_HzFtMK3Vl_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 779, + name: "ID_Ba_Hz_MK3_akt", + lsb: 0, + width: 32, + fieldtype: "MixedCircuitMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 780, + name: "ID_Einst_MK3Typ_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 781, + name: "ID_Einst_RTypMK3_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 782, + name: "ID_Einst_MK3LzFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 783, + name: "ID_Einst_MK3PerFaktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 784, + name: "ID_FerienModusAktivMk3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 785, + name: "ID_SU_FrkdMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 786, + name: "ID_FerienAbsenkungMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 787, + name: "ID_SU_FstdMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 788, + name: "ID_Einst_SuMk3_akt2", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 789, + name: "ID_Einst_SuMk3Wo_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 790, + name: "ID_Einst_SuMk3Wo_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 791, + name: "ID_Einst_SuMk3Wo_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 792, + name: "ID_Einst_SuMk3Wo_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 793, + name: "ID_Einst_SuMk3Wo_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 794, + name: "ID_Einst_SuMk3Wo_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 795, + name: "ID_Einst_SuMk325_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 796, + name: "ID_Einst_SuMk325_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 797, + name: "ID_Einst_SuMk325_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 798, + name: "ID_Einst_SuMk325_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 799, + name: "ID_Einst_SuMk325_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 800, + name: "ID_Einst_SuMk325_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 801, + name: "ID_Einst_SuMk325_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 802, + name: "ID_Einst_SuMk325_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 803, + name: "ID_Einst_SuMk325_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 804, + name: "ID_Einst_SuMk325_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 805, + name: "ID_Einst_SuMk325_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 806, + name: "ID_Einst_SuMk325_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 807, + name: "ID_Einst_SuMk3Tg_zeit_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 808, + name: "ID_Einst_SuMk3Tg_zeit_0_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 809, + name: "ID_Einst_SuMk3Tg_zeit_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 810, + name: "ID_Einst_SuMk3Tg_zeit_1_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 811, + name: "ID_Einst_SuMk3Tg_zeit_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 812, + name: "ID_Einst_SuMk3Tg_zeit_2_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 813, + name: "ID_Einst_SuMk3Tg_zeit_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 814, + name: "ID_Einst_SuMk3Tg_zeit_0_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 815, + name: "ID_Einst_SuMk3Tg_zeit_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 816, + name: "ID_Einst_SuMk3Tg_zeit_1_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 817, + name: "ID_Einst_SuMk3Tg_zeit_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 818, + name: "ID_Einst_SuMk3Tg_zeit_2_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 819, + name: "ID_Einst_SuMk3Tg_zeit_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 820, + name: "ID_Einst_SuMk3Tg_zeit_0_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 821, + name: "ID_Einst_SuMk3Tg_zeit_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 822, + name: "ID_Einst_SuMk3Tg_zeit_1_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 823, + name: "ID_Einst_SuMk3Tg_zeit_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 824, + name: "ID_Einst_SuMk3Tg_zeit_2_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 825, + name: "ID_Einst_SuMk3Tg_zeit_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 826, + name: "ID_Einst_SuMk3Tg_zeit_0_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 827, + name: "ID_Einst_SuMk3Tg_zeit_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 828, + name: "ID_Einst_SuMk3Tg_zeit_1_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 829, + name: "ID_Einst_SuMk3Tg_zeit_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 830, + name: "ID_Einst_SuMk3Tg_zeit_2_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 831, + name: "ID_Einst_SuMk3Tg_zeit_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 832, + name: "ID_Einst_SuMk3Tg_zeit_0_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 833, + name: "ID_Einst_SuMk3Tg_zeit_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 834, + name: "ID_Einst_SuMk3Tg_zeit_1_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 835, + name: "ID_Einst_SuMk3Tg_zeit_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 836, + name: "ID_Einst_SuMk3Tg_zeit_2_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 837, + name: "ID_Einst_SuMk3Tg_zeit_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 838, + name: "ID_Einst_SuMk3Tg_zeit_0_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 839, + name: "ID_Einst_SuMk3Tg_zeit_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 840, + name: "ID_Einst_SuMk3Tg_zeit_1_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 841, + name: "ID_Einst_SuMk3Tg_zeit_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 842, + name: "ID_Einst_SuMk3Tg_zeit_2_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 843, + name: "ID_Einst_SuMk3Tg_zeit_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 844, + name: "ID_Einst_SuMk3Tg_zeit_0_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 845, + name: "ID_Einst_SuMk3Tg_zeit_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 846, + name: "ID_Einst_SuMk3Tg_zeit_1_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 847, + name: "ID_Einst_SuMk3Tg_zeit_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 848, + name: "ID_Einst_SuMk3Tg_zeit_2_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 849, + name: "ID_Ba_Hz_MK3_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 850, + name: "ID_Einst_Kuhl_Zeit_Ein_akt", + lsb: 0, + width: 32, + fieldtype: "Hours", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 851, + name: "ID_Einst_Kuhl_Zeit_Aus_akt", + lsb: 0, + width: 32, + fieldtype: "Hours", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 852, + name: "ID_Waermemenge_Seit", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 853, + name: "ID_Waermemenge_WQ", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 854, + name: "ID_Waermemenge_Hz", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 855, + name: "ID_Waermemenge_WQ_ges", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 856, + name: "ID_Einst_Entl_Typ_13", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 857, + name: "ID_Einst_Entl_Typ_14", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 858, + name: "ID_Einst_Entl_Typ_15", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 859, + name: "ID_Zaehler_BetrZeitSW", + lsb: 0, + width: 32, + fieldtype: "Seconds", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 860, + name: "ID_Einst_Fernwartung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 861, + name: "ID_AdresseIPServ_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 862, + name: "ID_Einst_TA_EG_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 863, + name: "ID_Einst_TVLmax_EG_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 864, + name: "ID_Einst_Popt_Nachlauf_akt", + lsb: 0, + width: 32, + fieldtype: "Minutes", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 865, + name: "ID_FernwartungVertrag_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 866, + name: "ID_FernwartungAktuZeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 867, + name: "ID_Einst_Effizienzpumpe_Nominal_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 868, + name: "ID_Einst_Effizienzpumpe_Minimal_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 869, + name: "ID_Einst_Effizienzpumpe_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 870, + name: "ID_Einst_Waermemenge_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 871, + name: "ID_Einst_Wm_Versorgung_Korrektur_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 872, + name: "ID_Einst_Wm_Auswertung_Korrektur_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 873, + name: "ID_SoftwareUpdateJetztGemacht_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 874, + name: "ID_WP_SerienNummer_DATUM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 875, + name: "ID_WP_SerienNummer_HEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 876, + name: "ID_WP_SerienNummer_INDEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 877, + name: "ID_ProgWerteWebSrvBeobarten", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 878, + name: "ID_Waermemenge_BW", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 879, + name: "ID_Waermemenge_SW", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 880, + name: "ID_Waermemenge_Datum", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 881, + name: "ID_Einst_Solar_akt", + lsb: 0, + width: 32, + fieldtype: "SolarMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 882, + name: "ID_BSTD_Solar", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 883, + name: "ID_Einst_TDC_Koll_Max_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 884, + name: "ID_Einst_Akt_Kuehlung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 885, + name: "ID_Einst_Vorlauf_VBO_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 886, + name: "ID_Einst_KRHyst_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 887, + name: "ID_Einst_Akt_Kuehl_Speicher_min_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 888, + name: "ID_Einst_Akt_Kuehl_Freig_WQE_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 889, + name: "ID_NDAB_WW_Anzahl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 890, + name: "ID_NDS_WW_KD_Quitt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 891, + name: "ID_Einst_AbtZykMin_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 892, + name: "ID_Einst_VD2_Zeit_Min_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 893, + name: "ID_Einst_Hysterese_HR_verkuerzt_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 894, + name: "ID_Einst_BA_Lueftung_akt", + lsb: 0, + width: 32, + fieldtype: "VentilationMode", + writeable: "yes", + since: "", + until: "", + description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + },{ + category: "parameter", + index: 895, + name: "ID_Einst_SuLuf_akt", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 896, + name: "ID_Einst_SuLufWo_zeit_0_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 897, + name: "ID_Einst_SuLufWo_zeit_0_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 898, + name: "ID_Einst_SuLufWo_zeit_0_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 899, + name: "ID_Einst_SuLuf25_zeit_0_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 900, + name: "ID_Einst_SuLuf25_zeit_0_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 901, + name: "ID_Einst_SuLuf25_zeit_0_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 902, + name: "ID_Einst_SuLuf25_zeit_0_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 903, + name: "ID_Einst_SuLuf25_zeit_0_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 904, + name: "ID_Einst_SuLuf25_zeit_0_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 905, + name: "ID_Einst_SuLufTg_zeit_0_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 906, + name: "ID_Einst_SuLufTg_zeit_0_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 907, + name: "ID_Einst_SuLufTg_zeit_0_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 908, + name: "ID_Einst_SuLufTg_zeit_0_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 909, + name: "ID_Einst_SuLufTg_zeit_0_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 910, + name: "ID_Einst_SuLufTg_zeit_0_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 911, + name: "ID_Einst_SuLufTg_zeit_0_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 912, + name: "ID_Einst_SuLufTg_zeit_0_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 913, + name: "ID_Einst_SuLufTg_zeit_0_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 914, + name: "ID_Einst_SuLufTg_zeit_0_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 915, + name: "ID_Einst_SuLufTg_zeit_0_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 916, + name: "ID_Einst_SuLufTg_zeit_0_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 917, + name: "ID_Einst_SuLufTg_zeit_0_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 918, + name: "ID_Einst_SuLufTg_zeit_0_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 919, + name: "ID_Einst_SuLufTg_zeit_0_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 920, + name: "ID_Einst_SuLufTg_zeit_0_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 921, + name: "ID_Einst_SuLufTg_zeit_0_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 922, + name: "ID_Einst_SuLufTg_zeit_0_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 923, + name: "ID_Einst_SuLufTg_zeit_0_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 924, + name: "ID_Einst_SuLufTg_zeit_0_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 925, + name: "ID_Einst_SuLufTg_zeit_0_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 926, + name: "ID_Einst_SuLufWo_zeit_1_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 927, + name: "ID_Einst_SuLufWo_zeit_1_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 928, + name: "ID_Einst_SuLufWo_zeit_1_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 929, + name: "ID_Einst_SuLuf25_zeit_1_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 930, + name: "ID_Einst_SuLuf25_zeit_1_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 931, + name: "ID_Einst_SuLuf25_zeit_1_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 932, + name: "ID_Einst_SuLuf25_zeit_1_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 933, + name: "ID_Einst_SuLuf25_zeit_1_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 934, + name: "ID_Einst_SuLuf25_zeit_1_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 935, + name: "ID_Einst_SuLufTg_zeit_1_0_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 936, + name: "ID_Einst_SuLufTg_zeit_1_1_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 937, + name: "ID_Einst_SuLufTg_zeit_1_2_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 938, + name: "ID_Einst_SuLufTg_zeit_1_0_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 939, + name: "ID_Einst_SuLufTg_zeit_1_1_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 940, + name: "ID_Einst_SuLufTg_zeit_1_2_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 941, + name: "ID_Einst_SuLufTg_zeit_1_0_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 942, + name: "ID_Einst_SuLufTg_zeit_1_1_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 943, + name: "ID_Einst_SuLufTg_zeit_1_2_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 944, + name: "ID_Einst_SuLufTg_zeit_1_0_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 945, + name: "ID_Einst_SuLufTg_zeit_1_1_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 946, + name: "ID_Einst_SuLufTg_zeit_1_2_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 947, + name: "ID_Einst_SuLufTg_zeit_1_0_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 948, + name: "ID_Einst_SuLufTg_zeit_1_1_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 949, + name: "ID_Einst_SuLufTg_zeit_1_2_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 950, + name: "ID_Einst_SuLufTg_zeit_1_0_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 951, + name: "ID_Einst_SuLufTg_zeit_1_1_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 952, + name: "ID_Einst_SuLufTg_zeit_1_2_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 953, + name: "ID_Einst_SuLufTg_zeit_1_0_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 954, + name: "ID_Einst_SuLufTg_zeit_1_1_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 955, + name: "ID_Einst_SuLufTg_zeit_1_2_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 956, + name: "ID_FerienModusAktivLueftung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 957, + name: "ID_Einst_BA_Lueftung_saved", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 958, + name: "ID_SU_FrkdLueftung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 959, + name: "ID_SU_FstdLueftung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 960, + name: "ID_Einst_Luf_Feuchteschutz_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 961, + name: "ID_Einst_Luf_Reduziert_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 962, + name: "ID_Einst_Luf_Nennlueftung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 963, + name: "ID_Einst_Luf_Intensivlueftung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 964, + name: "ID_Timer_Fil_4Makt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 965, + name: "ID_Timer_Fil_WoAkt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 966, + name: "ID_Sollwert_KuCft3_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 967, + name: "ID_Sollwert_AtDif3_akt", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 968, + name: "ID_Bitmaske_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 969, + name: "ID_Einst_Lueftungsstufen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 970, + name: "ID_SysEin_Meldung_TDI", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 971, + name: "ID_SysEin_Typ_WZW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 972, + name: "ID_Einst_GLT_aktiviert", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 973, + name: "ID_Einst_BW_max", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 974, + name: "ID_Einst_Sollwert_TRL_Kuehlen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 975, + name: "ID_Einst_Medium_Waermequelle", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 976, + name: "ID_Einst_Photovoltaik_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 977, + name: "ID_Einst_Multispeicher_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 978, + name: "ID_Einst_PKuehlTime_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 979, + name: "ID_Einst_Minimale_Ruecklaufsolltemperatur", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 980, + name: "ID_RBE_Einflussfaktor_RT_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 981, + name: "ID_RBE_Freigabe_Kuehlung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 982, + name: "ID_RBE_Waermeverteilsystem_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 983, + name: "ID_RBE_Zeit_Heizstab_aktiv", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 984, + name: "ID_SEC_ND_Alarmgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 985, + name: "ID_SEC_HD_Alarmgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 986, + name: "ID_SEC_Abtauendtemperatur", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 987, + name: "ID_Einst_Min_RPM_BW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 988, + name: "ID_Einst_Luf_Feuchteschutz_Faktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 989, + name: "ID_Einst_Luf_Reduziert_Faktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 990, + name: "ID_Einst_Luf_Nennlueftung_Faktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 991, + name: "ID_Einst_Luf_Intensivlueftung_Faktor_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 992, + name: "ID_Einst_Freigabe_Zeit_ZWE", + lsb: 0, + width: 32, + fieldtype: "Minutes", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 993, + name: "ID_Einst_min_VL_Kuehl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 994, + name: "ID_Einst_Warmwasser_Nachheizung", + lsb: 0, + width: 32, + fieldtype: "Bool", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 995, + name: "ID_Switchoff_file_LWD2_0_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 996, + name: "ID_Switchoff_file_LWD2_1_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 997, + name: "ID_Switchoff_file_LWD2_2_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 998, + name: "ID_Switchoff_file_LWD2_3_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 999, + name: "ID_Switchoff_file_LWD2_4_0", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1000, + name: "ID_Switchoff_file_LWD2_0_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1001, + name: "ID_Switchoff_file_LWD2_1_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1002, + name: "ID_Switchoff_file_LWD2_2_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1003, + name: "ID_Switchoff_file_LWD2_3_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1004, + name: "ID_Switchoff_file_LWD2_4_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1005, + name: "ID_Switchoff_index_LWD2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1006, + name: "ID_Einst_Effizienzpumpe_Nominal_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1007, + name: "ID_Einst_Effizienzpumpe_Minimal_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1008, + name: "ID_Einst_Wm_Versorgung_Korrektur_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1009, + name: "ID_Einst_Wm_Auswertung_Korrektur_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1010, + name: "ID_Einst_isTwin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1011, + name: "ID_Einst_TAmin_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1012, + name: "ID_Einst_TVLmax_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1013, + name: "ID_Einst_TA_EG_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1014, + name: "ID_Einst_TVLmax_EG_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1015, + name: "ID_Waermemenge_Hz_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1016, + name: "ID_Waermemenge_BW_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1017, + name: "ID_Waermemenge_SW_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1018, + name: "ID_Waermemenge_Seit_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1019, + name: "ID_Einst_Entl_Typ_15_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1020, + name: "ID_Einst_WW_Nachheizung_max", + lsb: 0, + width: 32, + fieldtype: "Hours2", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1021, + name: "ID_Einst_Kuhl_Zeit_Ein_RT", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1022, + name: "ID_Einst_ZWE1_Pos", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1023, + name: "ID_Einst_ZWE2_Pos", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1024, + name: "ID_Einst_ZWE3_Pos", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1025, + name: "ID_Einst_Leistung_ZWE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1026, + name: "ID_WP_SN2_DATUM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1027, + name: "ID_WP_SN2_HEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1028, + name: "ID_WP_SN2_INDEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1029, + name: "ID_CWP_saved2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1030, + name: "ID_Einst_SmartGrid", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1031, + name: "ID_Einst_P155_HDS", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1032, + name: "ID_Einst_P155_PumpHeat_Max", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1033, + name: "ID_Einst_P155_PumpHeatCtrl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1034, + name: "ID_Einst_P155_PumpDHWCtrl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1035, + name: "ID_Einst_P155_PumpDHW_RPM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1036, + name: "ID_Einst_P155_PumpPoolCtrl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1037, + name: "ID_Einst_P155_PumpPool_RPM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1038, + name: "ID_Einst_P155_PumpCool_RPM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1039, + name: "ID_Einst_P155_PumpVBOCtrl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1040, + name: "ID_Einst_P155_PumpVBO_RPM_C", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1041, + name: "ID_Einst_P155_PumpDHW_Max", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1042, + name: "ID_Einst_P155_PumpPool_Max", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1043, + name: "ID_Einst_P155_Sperrband_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1044, + name: "ID_Einst_P155_Leistungsfreigabe", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1045, + name: "ID_Einst_P155_DHW_Freq", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1046, + name: "ID_Einst_SWHUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1047, + name: "ID_Einst_P155_SWB_Freq", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1048, + name: "ID_Einst_MK1_Regelung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1049, + name: "ID_Einst_MK2_Regelung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1050, + name: "ID_Einst_MK3_Regelung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1051, + name: "ID_Einst_PV_WW_Sperrzeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1052, + name: "ID_Einst_Warmwasser_extra", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1053, + name: "ID_Einst_Vorl_akt_Kuehl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1054, + name: "ID_WP_SN3_DATUM", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1055, + name: "ID_WP_SN3_HEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1056, + name: "ID_WP_SN3_INDEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1057, + name: "ID_Einst_Vorlauf_ZUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1058, + name: "ID_Einst_Abtauen_im_Warmwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1059, + name: "ID_Waermemenge_ZWE", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1060, + name: "ID_Waermemenge_Reset", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1061, + name: "ID_Waermemenge_Reset_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1062, + name: "ID_Einst_Brunnenpumpe_min", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1063, + name: "ID_Einst_Brunnenpumpe_max", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1064, + name: "ID_Einst_SmartHomeID", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1065, + name: "ID_Einst_SmartHK", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1066, + name: "ID_Einst_SmartMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1067, + name: "ID_Einst_SmartMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1068, + name: "ID_Einst_SmartMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1069, + name: "ID_Einst_SmartWW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1070, + name: "ID_Einst_SmartDefrost", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1071, + name: "ID_Einst_Empty1071", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1072, + name: "ID_Einst_MinVLMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1073, + name: "ID_Einst_MinVLMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1074, + name: "ID_Einst_MinVLMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1075, + name: "ID_Einst_MaxVLMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1076, + name: "ID_Einst_MaxVLMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1077, + name: "ID_Einst_MaxVLMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1078, + name: "ID_Einst_SmartPlusHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1079, + name: "ID_Einst_SmartMinusHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1080, + name: "ID_Einst_SmartPlusMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1081, + name: "ID_Einst_SmartMinusMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1082, + name: "ID_Einst_SmartPlusMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1083, + name: "ID_Einst_SmartMinusMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1084, + name: "ID_Einst_SmartPlusMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1085, + name: "ID_Einst_SmartMinusMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1086, + name: "Unknown_Parameter_1086", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1087, + name: "Unknown_Parameter_1087", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1087, + name: "SILENT_MODE", + lsb: 0, + width: 32, + fieldtype: "OnOffMode", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nOff\nOn" + },{ + category: "parameter", + index: 1088, + name: "Unknown_Parameter_1088", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1089, + name: "Unknown_Parameter_1089", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1090, + name: "Unknown_Parameter_1090", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1091, + name: "Unknown_Parameter_1091", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1092, + name: "Unknown_Parameter_1092", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1092, + name: "ID_Einst_SuSilence", + lsb: 0, + width: 32, + fieldtype: "TimerProgram", + writeable: "no", + since: "", + until: "", + description: "\nUser-Options:\nweek\n5+2\ndays" + },{ + category: "parameter", + index: 1093, + name: "Unknown_Parameter_1093", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1093, + name: "ID_Einst_SilenceTimer_0", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1094, + name: "Unknown_Parameter_1094", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1094, + name: "ID_Einst_SilenceTimer_1", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1095, + name: "Unknown_Parameter_1095", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1095, + name: "ID_Einst_SilenceTimer_2", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1096, + name: "Unknown_Parameter_1096", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1096, + name: "ID_Einst_SilenceTimer_3", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1097, + name: "Unknown_Parameter_1097", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1097, + name: "ID_Einst_SilenceTimer_4", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1098, + name: "Unknown_Parameter_1098", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1098, + name: "ID_Einst_SilenceTimer_5", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1099, + name: "Unknown_Parameter_1099", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1099, + name: "ID_Einst_SilenceTimer_6", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1100, + name: "Unknown_Parameter_1100", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1100, + name: "ID_Einst_SilenceTimer_7", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1101, + name: "Unknown_Parameter_1101", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1101, + name: "ID_Einst_SilenceTimer_8", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1102, + name: "Unknown_Parameter_1102", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1102, + name: "ID_Einst_SilenceTimer_9", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1103, + name: "Unknown_Parameter_1103", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1103, + name: "ID_Einst_SilenceTimer_10", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1104, + name: "Unknown_Parameter_1104", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1104, + name: "ID_Einst_SilenceTimer_11", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1105, + name: "Unknown_Parameter_1105", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1105, + name: "ID_Einst_SilenceTimer_12", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1106, + name: "Unknown_Parameter_1106", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1106, + name: "ID_Einst_SilenceTimer_13", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1107, + name: "Unknown_Parameter_1107", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1107, + name: "ID_Einst_SilenceTimer_14", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1108, + name: "Unknown_Parameter_1108", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1108, + name: "ID_Einst_SilenceTimer_15", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1109, + name: "Unknown_Parameter_1109", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1109, + name: "ID_Einst_SilenceTimer_16", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1110, + name: "Unknown_Parameter_1110", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1110, + name: "ID_Einst_SilenceTimer_17", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1111, + name: "Unknown_Parameter_1111", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1111, + name: "ID_Einst_SilenceTimer_18", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1112, + name: "Unknown_Parameter_1112", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1112, + name: "ID_Einst_SilenceTimer_19", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1113, + name: "Unknown_Parameter_1113", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1113, + name: "ID_Einst_SilenceTimer_20", + lsb: 0, + width: 32, + fieldtype: "TimeOfDay2", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1114, + name: "Unknown_Parameter_1114", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1115, + name: "Unknown_Parameter_1115", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1116, + name: "Unknown_Parameter_1116", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1117, + name: "Unknown_Parameter_1117", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1118, + name: "Unknown_Parameter_1118", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1119, + name: "Unknown_Parameter_1119", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1119, + name: "LAST_DEFROST_TIMESTAMP", + lsb: 0, + width: 32, + fieldtype: "Timestamp", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1120, + name: "Unknown_Parameter_1120", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1121, + name: "Unknown_Parameter_1121", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1122, + name: "Unknown_Parameter_1122", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1123, + name: "Unknown_Parameter_1123", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1124, + name: "Unknown_Parameter_1124", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1125, + name: "Unknown_Parameter_1125", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1126, + name: "Unknown_Parameter_1126", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1127, + name: "Unknown_Parameter_1127", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1128, + name: "Unknown_Parameter_1128", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1129, + name: "Unknown_Parameter_1129", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1130, + name: "Unknown_Parameter_1130", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1131, + name: "Unknown_Parameter_1131", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1132, + name: "Unknown_Parameter_1132", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1133, + name: "Unknown_Parameter_1133", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1134, + name: "Unknown_Parameter_1134", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1135, + name: "Unknown_Parameter_1135", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1136, + name: "Unknown_Parameter_1136", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1136, + name: "HEAT_ENERGY_INPUT", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1137, + name: "Unknown_Parameter_1137", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1137, + name: "DHW_ENERGY_INPUT", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1138, + name: "Unknown_Parameter_1138", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1139, + name: "Unknown_Parameter_1139", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1139, + name: "COOLING_ENERGY_INPUT", + lsb: 0, + width: 32, + fieldtype: "Energy", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1140, + name: "SECOND_HEAT_GENERATOR_AMOUNT_COUNTER", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1141, + name: "Unknown_Parameter_1141", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1142, + name: "Unknown_Parameter_1142", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1143, + name: "Unknown_Parameter_1143", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1144, + name: "Unknown_Parameter_1144", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1145, + name: "Unknown_Parameter_1145", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1146, + name: "Unknown_Parameter_1146", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1147, + name: "Unknown_Parameter_1147", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1148, + name: "Unknown_Parameter_1148", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1148, + name: "HEATING_TARGET_TEMP_ROOM_THERMOSTAT", + lsb: 0, + width: 32, + fieldtype: "Celsius", + writeable: "yes", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1149, + name: "Unknown_Parameter_1149", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1150, + name: "Unknown_Parameter_1150", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1151, + name: "Unknown_Parameter_1151", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1152, + name: "Unknown_Parameter_1152", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1153, + name: "Unknown_Parameter_1153", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1154, + name: "Unknown_Parameter_1154", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1155, + name: "Unknown_Parameter_1155", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1156, + name: "Unknown_Parameter_1156", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1157, + name: "Unknown_Parameter_1157", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1158, + name: "POWER_LIMIT_SWITCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1159, + name: "POWER_LIMIT_VALUE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1160, + name: "Unknown_Parameter_1160", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1161, + name: "Unknown_Parameter_1161", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1162, + name: "Unknown_Parameter_1162", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1163, + name: "Unknown_Parameter_1163", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1164, + name: "Unknown_Parameter_1164", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1165, + name: "Unknown_Parameter_1165", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1166, + name: "Unknown_Parameter_1166", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1167, + name: "Unknown_Parameter_1167", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1168, + name: "Unknown_Parameter_1168", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1169, + name: "Unknown_Parameter_1169", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1170, + name: "Unknown_Parameter_1170", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1171, + name: "Unknown_Parameter_1171", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1172, + name: "Unknown_Parameter_1172", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1173, + name: "Unknown_Parameter_1173", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1174, + name: "Unknown_Parameter_1174", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1175, + name: "Unknown_Parameter_1175", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1176, + name: "Unknown_Parameter_1176", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1177, + name: "Unknown_Parameter_1177", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1178, + name: "Unknown_Parameter_1178", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1179, + name: "Unknown_Parameter_1179", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1180, + name: "Unknown_Parameter_1180", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1181, + name: "Unknown_Parameter_1181", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1182, + name: "Unknown_Parameter_1182", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1183, + name: "Unknown_Parameter_1183", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1184, + name: "Unknown_Parameter_1184", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1185, + name: "Unknown_Parameter_1185", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1186, + name: "Unknown_Parameter_1186", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1187, + name: "Unknown_Parameter_1187", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1188, + name: "Unknown_Parameter_1188", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1189, + name: "Unknown_Parameter_1189", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1190, + name: "Unknown_Parameter_1190", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1191, + name: "Unknown_Parameter_1191", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1192, + name: "Unknown_Parameter_1192", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1193, + name: "Unknown_Parameter_1193", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1194, + name: "Unknown_Parameter_1194", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1195, + name: "Unknown_Parameter_1195", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1196, + name: "Unknown_Parameter_1196", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1197, + name: "Unknown_Parameter_1197", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "parameter", + index: 1198, + name: "Unknown_Parameter_1198", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + 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..e1676b99 --- /dev/null +++ b/docs/scripts.js @@ -0,0 +1,102 @@ +// Combine all data sources +let data = [ + ...window.VISIBILITY, + ...window.PARAMETER, + ...window.CALCULATION, + ...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(), + fieldtype: f_fieldtype.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.fieldtype} + ${item.writeable} + ${item.since} + ${item.until} + ${item.description} + `; + tableBody.appendChild(row); + }); + + applyInitialColumnVisibility(); +} + +// activate filter event +filterFields.forEach(f => f.addEventListener("input", renderTable)); + +// initial rendering +activateColumnToggle(); +renderTable(); diff --git a/docs/visibility.js b/docs/visibility.js new file mode 100644 index 00000000..7608aea5 --- /dev/null +++ b/docs/visibility.js @@ -0,0 +1,4414 @@ +window.VISIBILITY = [ + { + category: "visibility", + index: 0, + name: "ID_Visi_NieAnzeigen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 1, + name: "ID_Visi_ImmerAnzeigen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 2, + name: "ID_Visi_Heizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 3, + name: "ID_Visi_Brauwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 4, + name: "ID_Visi_Schwimmbad", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 5, + name: "ID_Visi_Kuhlung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 6, + name: "ID_Visi_Lueftung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 7, + name: "ID_Visi_MK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 8, + name: "ID_Visi_MK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 9, + name: "ID_Visi_ThermDesinfekt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 10, + name: "ID_Visi_Zirkulation", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 11, + name: "ID_Visi_KuhlTemp_SolltempMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 12, + name: "ID_Visi_KuhlTemp_SolltempMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 13, + name: "ID_Visi_KuhlTemp_ATDiffMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 14, + name: "ID_Visi_KuhlTemp_ATDiffMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 15, + name: "ID_Visi_Service_Information", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 16, + name: "ID_Visi_Service_Einstellung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 17, + name: "ID_Visi_Service_Sprache", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 18, + name: "ID_Visi_Service_DatumUhrzeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 19, + name: "ID_Visi_Service_Ausheiz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 20, + name: "ID_Visi_Service_Anlagenkonfiguration", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 21, + name: "ID_Visi_Service_IBNAssistant", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 22, + name: "ID_Visi_Service_ParameterIBNZuruck", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 23, + name: "ID_Visi_Temp_Vorlauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 24, + name: "ID_Visi_Temp_Rucklauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 25, + name: "ID_Visi_Temp_RL_Soll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 26, + name: "ID_Visi_Temp_Ruecklext", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 27, + name: "ID_Visi_Temp_Heissgas", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 28, + name: "ID_Visi_Temp_Aussent", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 29, + name: "ID_Visi_Temp_BW_Ist", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 30, + name: "ID_Visi_Temp_BW_Soll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 31, + name: "ID_Visi_Temp_WQ_Ein", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 32, + name: "ID_Visi_Temp_Kaltekreis", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 33, + name: "ID_Visi_Temp_MK1_Vorlauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 34, + name: "ID_Visi_Temp_MK1VL_Soll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 35, + name: "ID_Visi_Temp_Raumstation", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 36, + name: "ID_Visi_Temp_MK2_Vorlauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 37, + name: "ID_Visi_Temp_MK2VL_Soll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 38, + name: "ID_Visi_Temp_Solarkoll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 39, + name: "ID_Visi_Temp_Solarsp", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 40, + name: "ID_Visi_Temp_Ext_Energ", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 41, + name: "ID_Visi_IN_ASD", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 42, + name: "ID_Visi_IN_BWT", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 43, + name: "ID_Visi_IN_EVU", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 44, + name: "ID_Visi_IN_HD", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 45, + name: "ID_Visi_IN_MOT", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 46, + name: "ID_Visi_IN_ND", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 47, + name: "ID_Visi_IN_PEX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 48, + name: "ID_Visi_IN_SWT", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 49, + name: "ID_Visi_OUT_Abtauventil", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 50, + name: "ID_Visi_OUT_BUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 51, + name: "ID_Visi_OUT_FUP1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 52, + name: "ID_Visi_OUT_HUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 53, + name: "ID_Visi_OUT_Mischer1Auf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 54, + name: "ID_Visi_OUT_Mischer1Zu", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 55, + name: "ID_Visi_OUT_Ventilation", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 56, + name: "ID_Visi_OUT_Ventil_BOSUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 57, + name: "ID_Visi_OUT_Verdichter1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 58, + name: "ID_Visi_OUT_Verdichter2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 59, + name: "ID_Visi_OUT_ZIP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 60, + name: "ID_Visi_OUT_ZUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 61, + name: "ID_Visi_OUT_ZWE1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 62, + name: "ID_Visi_OUT_ZWE2_SST", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 63, + name: "ID_Visi_OUT_ZWE3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 64, + name: "ID_Visi_OUT_FUP2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 65, + name: "ID_Visi_OUT_SLP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 66, + name: "ID_Visi_OUT_SUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 67, + name: "ID_Visi_OUT_Mischer2Auf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 68, + name: "ID_Visi_OUT_Mischer2Zu", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 69, + name: "ID_Visi_AblaufZ_WP_Seit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 70, + name: "ID_Visi_AblaufZ_ZWE1_seit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 71, + name: "ID_Visi_AblaufZ_ZWE2_seit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 72, + name: "ID_Visi_AblaufZ_ZWE3_seit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 73, + name: "ID_Visi_AblaufZ_Netzeinv", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 74, + name: "ID_Visi_AblaufZ_SSP_Zeit1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 75, + name: "ID_Visi_AblaufZ_VD_Stand", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 76, + name: "ID_Visi_AblaufZ_HRM_Zeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 77, + name: "ID_Visi_AblaufZ_HRW_Zeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 78, + name: "ID_Visi_AblaufZ_TDI_seit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 79, + name: "ID_Visi_AblaufZ_Sperre_BW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 80, + name: "ID_Visi_Bst_BStdVD1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 81, + name: "ID_Visi_Bst_ImpVD1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 82, + name: "ID_Visi_Bst_dEZVD1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 83, + name: "ID_Visi_Bst_BStdVD2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 84, + name: "ID_Visi_Bst_ImpVD2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 85, + name: "ID_Visi_Bst_dEZVD2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 86, + name: "ID_Visi_Bst_BStdZWE1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 87, + name: "ID_Visi_Bst_BStdZWE2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 88, + name: "ID_Visi_Bst_BStdZWE3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 89, + name: "ID_Visi_Bst_BStdWP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 90, + name: "ID_Visi_Text_Kurzprogramme", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 91, + name: "ID_Visi_Text_Zwangsheizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 92, + name: "ID_Visi_Text_Zwangsbrauchwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 93, + name: "ID_Visi_Text_Abtauen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 94, + name: "ID_Visi_EinstTemp_RucklBegr", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 95, + name: "ID_Visi_EinstTemp_HystereseHR", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 96, + name: "ID_Visi_EinstTemp_TRErhmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 97, + name: "ID_Visi_EinstTemp_Freig2VD", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 98, + name: "ID_Visi_EinstTemp_FreigZWE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 99, + name: "ID_Visi_EinstTemp_Tluftabt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 100, + name: "ID_Visi_EinstTemp_TDISolltemp", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 101, + name: "ID_Visi_EinstTemp_HystereseBW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 102, + name: "ID_Visi_EinstTemp_Vorl2VDBW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 103, + name: "ID_Visi_EinstTemp_TAussenmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 104, + name: "ID_Visi_EinstTemp_TAussenmin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 105, + name: "ID_Visi_EinstTemp_TWQmin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 106, + name: "ID_Visi_EinstTemp_THGmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 107, + name: "ID_Visi_EinstTemp_TLABTEnde", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 108, + name: "ID_Visi_EinstTemp_Absenkbis", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 109, + name: "ID_Visi_EinstTemp_Vorlaufmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 110, + name: "ID_Visi_EinstTemp_TDiffEin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 111, + name: "ID_Visi_EinstTemp_TDiffAus", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 112, + name: "ID_Visi_EinstTemp_TDiffmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 113, + name: "ID_Visi_EinstTemp_TEEHeizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 114, + name: "ID_Visi_EinstTemp_TEEBrauchw", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 115, + name: "ID_Visi_EinstTemp_Vorl2VDSW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 116, + name: "ID_Visi_EinstTemp_VLMaxMk1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 117, + name: "ID_Visi_EinstTemp_VLMaxMk2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 118, + name: "ID_Visi_Priori_Brauchwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 119, + name: "ID_Visi_Priori_Heizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 120, + name: "ID_Visi_Priori_Schwimmbad", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 121, + name: "ID_Visi_SysEin_EVUSperre", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 122, + name: "ID_Visi_SysEin_Raumstation", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 123, + name: "ID_Visi_SysEin_Einbindung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 124, + name: "ID_Visi_SysEin_Mischkreis1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 125, + name: "ID_Visi_SysEin_Mischkreis2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 126, + name: "ID_Visi_SysEin_ZWE1Art", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 127, + name: "ID_Visi_SysEin_ZWE1Fkt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 128, + name: "ID_Visi_SysEin_ZWE2Art", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 129, + name: "ID_Visi_SysEin_ZWE2Fkt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 130, + name: "ID_Visi_SysEin_ZWE3Art", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 131, + name: "ID_Visi_SysEin_ZWE3Fkt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 132, + name: "ID_Visi_SysEin_Stoerung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 133, + name: "ID_Visi_SysEin_Brauchwasser1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 134, + name: "ID_Visi_SysEin_Brauchwasser2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 135, + name: "ID_Visi_SysEin_Brauchwasser3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 136, + name: "ID_Visi_SysEin_Brauchwasser4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 137, + name: "ID_Visi_SysEin_Brauchwasser5", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 138, + name: "ID_Visi_SysEin_BWWPmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 139, + name: "ID_Visi_SysEin_Abtzykmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 140, + name: "ID_Visi_SysEin_Luftabt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 141, + name: "ID_Visi_SysEin_LuftAbtmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 142, + name: "ID_Visi_SysEin_Abtauen1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 143, + name: "ID_Visi_SysEin_Abtauen2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 144, + name: "ID_Visi_SysEin_Pumpenoptim", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 145, + name: "ID_Visi_SysEin_Zusatzpumpe", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 146, + name: "ID_Visi_SysEin_Zugang", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 147, + name: "ID_Visi_SysEin_SoledrDurchf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 148, + name: "ID_Visi_SysEin_UberwachungVD", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 149, + name: "ID_Visi_SysEin_RegelungHK", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 150, + name: "ID_Visi_SysEin_RegelungMK1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 151, + name: "ID_Visi_SysEin_RegelungMK2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 152, + name: "ID_Visi_SysEin_Kuhlung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 153, + name: "ID_Visi_SysEin_Ausheizen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 154, + name: "ID_Visi_SysEin_ElektrAnode", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 155, + name: "ID_Visi_SysEin_SWBBer", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 156, + name: "ID_Visi_SysEin_SWBMin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 157, + name: "ID_Visi_SysEin_Heizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 158, + name: "ID_Visi_SysEin_PeriodeMk1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 159, + name: "ID_Visi_SysEin_LaufzeitMk1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 160, + name: "ID_Visi_SysEin_PeriodeMk2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 161, + name: "ID_Visi_SysEin_LaufzeitMk2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 162, + name: "ID_Visi_SysEin_Heizgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 163, + name: "ID_Visi_Enlt_HUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 164, + name: "ID_Visi_Enlt_ZUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 165, + name: "ID_Visi_Enlt_BUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 166, + name: "ID_Visi_Enlt_Ventilator_BOSUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 167, + name: "ID_Visi_Enlt_MA1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 168, + name: "ID_Visi_Enlt_MZ1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 169, + name: "ID_Visi_Enlt_ZIP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 170, + name: "ID_Visi_Enlt_MA2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 171, + name: "ID_Visi_Enlt_MZ2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 172, + name: "ID_Visi_Enlt_SUP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 173, + name: "ID_Visi_Enlt_SLP", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 174, + name: "ID_Visi_Enlt_FP2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 175, + name: "ID_Visi_Enlt_Laufzeit", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 176, + name: "ID_Visi_Anlgkonf_Heizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 177, + name: "ID_Visi_Anlgkonf_Brauchwarmwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 178, + name: "ID_Visi_Anlgkonf_Schwimmbad", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 179, + name: "ID_Visi_Heizung_Betriebsart", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 180, + name: "ID_Visi_Heizung_TemperaturPlusMinus", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 181, + name: "ID_Visi_Heizung_Heizkurven", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 182, + name: "ID_Visi_Heizung_Zeitschaltprogramm", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 183, + name: "ID_Visi_Heizung_Heizgrenze", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 184, + name: "ID_Visi_Mitteltemperatur", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 185, + name: "ID_Visi_Dataenlogger", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 186, + name: "ID_Visi_Sprachen_DEUTSCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 187, + name: "ID_Visi_Sprachen_ENGLISH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 188, + name: "ID_Visi_Sprachen_FRANCAIS", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 189, + name: "ID_Visi_Sprachen_NORWAY", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 190, + name: "ID_Visi_Sprachen_TCHECH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 191, + name: "ID_Visi_Sprachen_ITALIANO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 192, + name: "ID_Visi_Sprachen_NEDERLANDS", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 193, + name: "ID_Visi_Sprachen_SVENSKA", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 194, + name: "ID_Visi_Sprachen_POLSKI", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 195, + name: "ID_Visi_Sprachen_MAGYARUL", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 196, + name: "ID_Visi_ErrorUSBspeichern", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 197, + name: "ID_Visi_Bst_BStdHz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 198, + name: "ID_Visi_Bst_BStdBW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 199, + name: "ID_Visi_Bst_BStdKue", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 200, + name: "ID_Visi_Service_Systemsteuerung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 201, + name: "ID_Visi_Service_Systemsteuerung_Contrast", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 202, + name: "ID_Visi_Service_Systemsteuerung_Webserver", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 203, + name: "ID_Visi_Service_Systemsteuerung_IPAdresse", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 204, + name: "ID_Visi_Service_Systemsteuerung_Fernwartung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 205, + name: "ID_Visi_Paralleleschaltung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 206, + name: "ID_Visi_SysEin_Paralleleschaltung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 207, + name: "ID_Visi_Sprachen_DANSK", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 208, + name: "ID_Visi_Sprachen_PORTUGES", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 209, + name: "ID_Visi_Heizkurve_Heizung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 210, + name: "ID_Visi_SysEin_Mischkreis3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 211, + name: "ID_Visi_MK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 212, + name: "ID_Visi_Temp_MK3_Vorlauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 213, + name: "ID_Visi_Temp_MK3VL_Soll", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 214, + name: "ID_Visi_OUT_Mischer3Auf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 215, + name: "ID_Visi_OUT_Mischer3Zu", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 216, + name: "ID_Visi_SysEin_RegelungMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 217, + name: "ID_Visi_SysEin_PeriodeMk3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 218, + name: "ID_Visi_SysEin_LaufzeitMk3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 219, + name: "ID_Visi_SysEin_Kuhl_Zeit_Ein", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 220, + name: "ID_Visi_SysEin_Kuhl_Zeit_Aus", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 221, + name: "ID_Visi_AblaufZ_AbtauIn", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 222, + name: "ID_Visi_Waermemenge_WS", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 223, + name: "ID_Visi_Waermemenge_WQ", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 224, + name: "ID_Visi_Enlt_MA3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 225, + name: "ID_Visi_Enlt_MZ3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 226, + name: "ID_Visi_Enlt_FP3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 227, + name: "ID_Visi_OUT_FUP3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 228, + name: "ID_Visi_Temp_Raumstation2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 229, + name: "ID_Visi_Temp_Raumstation3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 230, + name: "ID_Visi_Bst_BStdSW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 231, + name: "ID_Visi_Sprachen_LITAUISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 232, + name: "ID_Visi_Sprachen_ESTNICH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 233, + name: "ID_Visi_SysEin_Fernwartung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 234, + name: "ID_Visi_Sprachen_SLOVENISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 235, + name: "ID_Visi_EinstTemp_TA_EG", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 236, + name: "ID_Visi_Einst_TVLmax_EG", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 237, + name: "ID_Visi_SysEin_PoptNachlauf", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 238, + name: "ID_Visi_RFV_K_Kuehlin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 239, + name: "ID_Visi_SysEin_EffizienzpumpeNom", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 240, + name: "ID_Visi_SysEin_EffizienzpumpeMin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 241, + name: "ID_Visi_SysEin_Effizienzpumpe", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 242, + name: "ID_Visi_SysEin_Waermemenge", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 243, + name: "ID_Visi_Service_WMZ_Effizienz", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 244, + name: "ID_Visi_SysEin_Wm_Versorgung_Korrektur", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 245, + name: "ID_Visi_SysEin_Wm_Auswertung_Korrektur", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 246, + name: "ID_Visi_IN_AnalogIn", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 247, + name: "ID_Visi_Eins_SN_Eingabe", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 248, + name: "ID_Visi_OUT_Analog_1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 249, + name: "ID_Visi_OUT_Analog_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 250, + name: "ID_Visi_Solar", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 251, + name: "ID_Visi_SysEin_Solar", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 252, + name: "ID_Visi_EinstTemp_TDiffKollmax", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 253, + name: "ID_Visi_AblaufZ_HG_Sperre", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 254, + name: "ID_Visi_SysEin_Akt_Kuehlung", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 255, + name: "ID_Visi_SysEin_Vorlauf_VBO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 256, + name: "ID_Visi_Einst_KRHyst", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 257, + name: "ID_Visi_Einst_Akt_Kuehl_Speicher_min", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 258, + name: "ID_Visi_Einst_Akt_Kuehl_Freig_WQE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 259, + name: "ID_Visi_SysEin_AbtZykMin", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 260, + name: "ID_Visi_SysEin_VD2_Zeit_Min", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 261, + name: "ID_Visi_EinstTemp_Hysterese_HR_verkuerzt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 262, + name: "ID_Visi_Einst_Luf_Feuchteschutz_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 263, + name: "ID_Visi_Einst_Luf_Reduziert_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 264, + name: "ID_Visi_Einst_Luf_Nennlueftung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 265, + name: "ID_Visi_Einst_Luf_Intensivlueftung_akt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 266, + name: "ID_Visi_Temperatur_Lueftung_Zuluft", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 267, + name: "ID_Visi_Temperatur_Lueftung_Abluft", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 268, + name: "ID_Visi_OUT_Analog_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 269, + name: "ID_Visi_OUT_Analog_4", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 270, + name: "ID_Visi_IN_Analog_2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 271, + name: "ID_Visi_IN_Analog_3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 272, + name: "ID_Visi_IN_SAX", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 273, + name: "ID_Visi_OUT_VZU", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 274, + name: "ID_Visi_OUT_VAB", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 275, + name: "ID_Visi_OUT_VSK", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 276, + name: "ID_Visi_OUT_FRH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 277, + name: "ID_Visi_KuhlTemp_SolltempMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 278, + name: "ID_Visi_KuhlTemp_ATDiffMK3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 279, + name: "ID_Visi_IN_SPL", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 280, + name: "ID_Visi_SysEin_Lueftungsstufen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 281, + name: "ID_Visi_SysEin_Meldung_TDI", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 282, + name: "ID_Visi_SysEin_Typ_WZW", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 283, + name: "ID_Visi_BACnet", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 284, + name: "ID_Visi_Sprachen_SLOWAKISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 285, + name: "ID_Visi_Sprachen_LETTISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 286, + name: "ID_Visi_Sprachen_FINNISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 287, + name: "ID_Visi_Kalibrierung_LWD", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 288, + name: "ID_Visi_IN_Durchfluss", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 289, + name: "ID_Visi_LIN_ANSAUG_VERDICHTER", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 290, + name: "ID_Visi_LIN_VDH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 291, + name: "ID_Visi_LIN_UH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 292, + name: "ID_Visi_LIN_Druck", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 293, + name: "ID_Visi_Einst_Sollwert_TRL_Kuehlen", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 294, + name: "ID_Visi_Entl_ExVentil", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 295, + name: "ID_Visi_Einst_Medium_Waermequelle", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 296, + name: "ID_Visi_Einst_Multispeicher", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 297, + name: "ID_Visi_Einst_Minimale_Ruecklaufsolltemperatur", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 298, + name: "ID_Visi_Einst_PKuehlTime", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 299, + name: "ID_Visi_Sprachen_TUERKISCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 300, + name: "ID_Visi_RBE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 301, + name: "ID_Visi_Einst_Luf_Stufen_Faktor", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 302, + name: "ID_Visi_Freigabe_Zeit_ZWE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 303, + name: "ID_Visi_Einst_min_VL_Kuehl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 304, + name: "ID_Visi_ZWE1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 305, + name: "ID_Visi_ZWE2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 306, + name: "ID_Visi_ZWE3", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 307, + name: "ID_Visi_SEC", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 308, + name: "ID_Visi_HZIO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 309, + name: "ID_Visi_WPIO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 310, + name: "ID_Visi_LIN_ANSAUG_VERDAMPFER", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 311, + name: "ID_Visi_LIN_MULTI1", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 312, + name: "ID_Visi_LIN_MULTI2", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 313, + name: "ID_Visi_Einst_Leistung_ZWE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 314, + name: "ID_Visi_Sprachen_ESPANOL", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 315, + name: "ID_Visi_Temp_BW_oben", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 316, + name: "ID_Visi_MAXIO", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 317, + name: "ID_Visi_OUT_Abtauwunsch", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 318, + name: "ID_Visi_SmartGrid", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 319, + name: "ID_Visi_Drehzahlgeregelt", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 320, + name: "ID_Visi_P155_Inverter", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 321, + name: "ID_Visi_Leistungsfreigabe", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 322, + name: "ID_Visi_Einst_Vorl_akt_Kuehl", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 323, + name: "ID_Visi_Einst_Abtauen_im_Warmwasser", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 324, + name: "ID_Visi_Waermemenge_ZWE", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 325, + name: "Unknown_Visibility_325", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 326, + name: "Unknown_Visibility_326", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 327, + name: "Unknown_Visibility_327", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 328, + name: "Unknown_Visibility_328", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 329, + name: "Unknown_Visibility_329", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 330, + name: "Unknown_Visibility_330", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 331, + name: "Unknown_Visibility_331", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 332, + name: "Unknown_Visibility_332", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 333, + name: "Unknown_Visibility_333", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 334, + name: "Unknown_Visibility_334", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 335, + name: "Unknown_Visibility_335", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 336, + name: "Unknown_Visibility_336", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 337, + name: "Unknown_Visibility_337", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 338, + name: "Unknown_Visibility_338", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 339, + name: "Unknown_Visibility_339", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 340, + name: "Unknown_Visibility_340", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 341, + name: "Unknown_Visibility_341", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 342, + name: "Unknown_Visibility_342", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 343, + name: "Unknown_Visibility_343", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 344, + name: "Unknown_Visibility_344", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 345, + name: "Unknown_Visibility_345", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 346, + name: "Unknown_Visibility_346", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 347, + name: "Unknown_Visibility_347", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 348, + name: "Unknown_Visibility_348", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 349, + name: "Unknown_Visibility_349", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 350, + name: "Unknown_Visibility_350", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 351, + name: "Unknown_Visibility_351", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 352, + name: "Unknown_Visibility_352", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 353, + name: "Unknown_Visibility_353", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 354, + name: "Unknown_Visibility_354", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 355, + name: "Unknown_Visibility_355", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 356, + name: "Unknown_Visibility_356", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 357, + name: "ELECTRICAL_POWER_LIMITATION_SWITCH", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 358, + name: "Unknown_Visibility_358", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 359, + name: "Unknown_Visibility_359", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 360, + name: "Unknown_Visibility_360", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 361, + name: "Unknown_Visibility_361", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 362, + name: "Unknown_Visibility_362", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 363, + name: "Unknown_Visibility_363", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 364, + name: "Unknown_Visibility_364", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 365, + name: "Unknown_Visibility_365", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 366, + name: "Unknown_Visibility_366", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 367, + name: "Unknown_Visibility_367", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 368, + name: "Unknown_Visibility_368", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 369, + name: "Unknown_Visibility_369", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 370, + name: "Unknown_Visibility_370", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 371, + name: "Unknown_Visibility_371", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 372, + name: "Unknown_Visibility_372", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 373, + name: "Unknown_Visibility_373", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 374, + name: "Unknown_Visibility_374", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 375, + name: "Unknown_Visibility_375", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 376, + name: "Unknown_Visibility_376", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 377, + name: "Unknown_Visibility_377", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 378, + name: "Unknown_Visibility_378", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 379, + name: "Unknown_Visibility_379", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 380, + name: "Unknown_Visibility_380", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 381, + name: "Unknown_Visibility_381", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 382, + name: "Unknown_Visibility_382", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 383, + name: "Unknown_Visibility_383", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 384, + name: "Unknown_Visibility_384", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 385, + name: "Unknown_Visibility_385", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 386, + name: "Unknown_Visibility_386", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 387, + name: "Unknown_Visibility_387", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 388, + name: "Unknown_Visibility_388", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 389, + name: "Unknown_Visibility_389", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 390, + name: "Unknown_Visibility_390", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 391, + name: "Unknown_Visibility_391", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 392, + name: "Unknown_Visibility_392", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 393, + name: "Unknown_Visibility_393", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 394, + name: "Unknown_Visibility_394", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 395, + name: "Unknown_Visibility_395", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 396, + name: "Unknown_Visibility_396", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 397, + name: "Unknown_Visibility_397", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 398, + name: "Unknown_Visibility_398", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 399, + name: "Unknown_Visibility_399", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + since: "", + until: "", + description: "" + },{ + category: "visibility", + index: 400, + name: "Unknown_Visibility_400", + lsb: 0, + width: 32, + fieldtype: "Unknown", + writeable: "no", + 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. From d61c5cb3a3f00717afc2af6804dc07cb132e8033 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:38:45 +0100 Subject: [PATCH 02/11] Update the content of the html file - Replaced field_type with datatype_class as "class" - Use "y/ " instead of "yes/no" for field writable - Add a unit field --- .github/workflows/scripts/docs/gen-docs.py | 8 +- docs/calculation.js | 1488 +++-- docs/holding.js | 253 +- docs/index.html | 38 +- docs/input.js | 527 +- docs/parameter.js | 6189 ++++++++++++-------- docs/scripts.js | 6 +- docs/visibility.js | 2329 +++++--- 8 files changed, 6691 insertions(+), 4147 deletions(-) diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py index 5355c8e6..20a71abb 100644 --- a/.github/workflows/scripts/docs/gen-docs.py +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -29,7 +29,10 @@ def get_string(string): return f'"{str(string)}"' def get_writeable(writeable): - return get_string("yes" if writeable else "no") + 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]))) @@ -49,8 +52,9 @@ def get_items(definitions): "name": get_string(d.name), "lsb": 0 if d.bit_offset is None else d.bit_offset, "width": d.num_bits, - "fieldtype": get_string(d.field_type.__name__), + "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), diff --git a/docs/calculation.js b/docs/calculation.js index a8c53740..8ffd3430 100644 --- a/docs/calculation.js +++ b/docs/calculation.js @@ -5,8 +5,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -16,8 +17,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -27,8 +29,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -38,8 +41,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -49,8 +53,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -60,8 +65,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -71,8 +77,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -82,8 +89,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -93,8 +101,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -104,8 +113,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -115,8 +125,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TVL", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -126,8 +137,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TRL", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -137,8 +149,9 @@ window.CALCULATION = [ name: "ID_WEB_Sollwert_TRL_HZ", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -148,8 +161,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TRL_ext", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -159,8 +173,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_THG", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -170,8 +185,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TA", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -181,8 +197,9 @@ window.CALCULATION = [ name: "ID_WEB_Mitteltemperatur", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -192,8 +209,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TBW", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -203,8 +221,9 @@ window.CALCULATION = [ name: "ID_WEB_Einst_BWS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -214,8 +233,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TWE", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -225,8 +245,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TWA", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -236,8 +257,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TFB1", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -247,8 +269,9 @@ window.CALCULATION = [ name: "ID_WEB_Sollwert_TVL_MK1", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -258,8 +281,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_RFV", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -269,8 +293,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TFB2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -280,8 +305,9 @@ window.CALCULATION = [ name: "ID_WEB_Sollwert_TVL_MK2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -291,8 +317,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TSK", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -302,8 +329,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TSS", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -313,8 +341,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TEE", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -324,8 +353,9 @@ window.CALCULATION = [ name: "ID_WEB_ASDin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -335,8 +365,9 @@ window.CALCULATION = [ name: "ID_WEB_BWTin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -346,8 +377,9 @@ window.CALCULATION = [ name: "ID_WEB_EVUin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -357,8 +389,9 @@ window.CALCULATION = [ name: "ID_WEB_HDin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -368,8 +401,9 @@ window.CALCULATION = [ name: "ID_WEB_MOTin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -379,8 +413,9 @@ window.CALCULATION = [ name: "ID_WEB_NDin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -390,8 +425,9 @@ window.CALCULATION = [ name: "ID_WEB_PEXin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -401,8 +437,9 @@ window.CALCULATION = [ name: "ID_WEB_SWTin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -412,8 +449,9 @@ window.CALCULATION = [ name: "ID_WEB_AVout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -423,8 +461,9 @@ window.CALCULATION = [ name: "ID_WEB_BUPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -434,8 +473,9 @@ window.CALCULATION = [ name: "ID_WEB_HUPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -445,8 +485,9 @@ window.CALCULATION = [ name: "ID_WEB_MA1out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -456,8 +497,9 @@ window.CALCULATION = [ name: "ID_WEB_MZ1out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -467,8 +509,9 @@ window.CALCULATION = [ name: "ID_WEB_VENout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -478,8 +521,9 @@ window.CALCULATION = [ name: "ID_WEB_VBOout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -489,8 +533,9 @@ window.CALCULATION = [ name: "ID_WEB_VD1out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -500,8 +545,9 @@ window.CALCULATION = [ name: "ID_WEB_VD2out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -511,8 +557,9 @@ window.CALCULATION = [ name: "ID_WEB_ZIPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -522,8 +569,9 @@ window.CALCULATION = [ name: "ID_WEB_ZUPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -533,8 +581,9 @@ window.CALCULATION = [ name: "ID_WEB_ZW1out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -544,8 +593,9 @@ window.CALCULATION = [ name: "ID_WEB_ZW2SSTout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -555,8 +605,9 @@ window.CALCULATION = [ name: "ID_WEB_ZW3SSTout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -566,8 +617,9 @@ window.CALCULATION = [ name: "ID_WEB_FP2out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -577,8 +629,9 @@ window.CALCULATION = [ name: "ID_WEB_SLPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -588,8 +641,9 @@ window.CALCULATION = [ name: "ID_WEB_SUPout", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -599,8 +653,9 @@ window.CALCULATION = [ name: "ID_WEB_MZ2out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -610,8 +665,9 @@ window.CALCULATION = [ name: "ID_WEB_MA2out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -621,8 +677,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitVD1", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -632,8 +689,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitImpVD1", lsb: 0, width: 32, - fieldtype: "Count", - writeable: "no", + class: "count", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -643,8 +701,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitVD2", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -654,8 +713,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitImpVD2", lsb: 0, width: 32, - fieldtype: "Count", - writeable: "no", + class: "count", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -665,8 +725,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitZWE1", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -676,8 +737,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitZWE2", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -687,8 +749,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitZWE3", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -698,8 +761,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitWP", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -709,8 +773,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitHz", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -720,8 +785,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitBW", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -731,8 +797,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitKue", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -742,8 +809,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_WPein_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -753,8 +821,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_ZWE1_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -764,8 +833,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_ZWE2_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -775,8 +845,9 @@ window.CALCULATION = [ name: "ID_WEB_Timer_EinschVerz", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -786,8 +857,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_SSPAUS_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -797,8 +869,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_SSPEIN_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -808,8 +881,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_VDStd_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -819,8 +893,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_HRM_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -830,8 +905,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_HRW_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -841,8 +917,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_LGS_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -852,8 +929,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_SBW_akt", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -863,41 +941,45 @@ window.CALCULATION = [ name: "ID_WEB_Code_WP_akt", lsb: 0, width: 32, - fieldtype: "HeatpumpCode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nERC\nSW1\nSW2\nWW1\nWW2\nL1I\nL2I\nL1A\nL2A\nKSW\nKLW\nSWC\nLWC\nL2G\nWZS\nL1I407\nL2I407\nL1A407\nL2A407\nL2G407\nLWC407\nL1AREV\nL2AREV\nWWC1\nWWC2\nL2G404\nWZW\nL1S\nL1H\nL2H\nWZWD\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nWWB_20\nLD5\nLD7\nSW 37_45\nSW 58_69\nSW 29_56\nLD5 (230V)\nLD7 (230 V)\nLD9\nLD5 REV\nLD7 REV\nLD5 REV 230V\nLD7 REV 230V\nLD9 REV 230V\nSW 291\nLW SEC\nHMD 2\nMSW 4\nMSW 6\nMSW 8\nMSW 10\nMSW 12\nMSW 14\nMSW 17\nMSW 19\nMSW 23\nMSW 26\nMSW 30\nMSW 4S\nMSW 6S\nMSW 8S\nMSW 10S\nMSW 12S\nMSW 16S\nMSW2-6S\nMSW4-16\nLD2AG\nLD9V\nMSW3-12\nMSW3-12S\nMSW2-9S\nLW 8\nLW 12\nHZ_HMD\nLW V4\nLW SEC 2\nMSW1-4S\nLP5V\nLP8V" + description: "" },{ category: "calculation", index: 79, name: "ID_WEB_BIV_Stufe_akt", lsb: 0, width: 32, - fieldtype: "BivalenceLevel", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\none compressor allowed to run\ntwo compressors allowed to run\nadditional heat generator allowed to run" + description: "" },{ category: "calculation", index: 80, name: "ID_WEB_WP_BZ_akt", lsb: 0, width: 32, - fieldtype: "OperationMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheating\nhot water\nswimming pool/solar\nevu\ndefrost\nno request\nheating external source\ncooling" + description: "" },{ category: "calculation", index: 81, name: "ID_WEB_SoftStand", lsb: 0, width: 32, - fieldtype: "Version", - writeable: "no", + class: "version", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -907,8 +989,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_0", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -918,8 +1001,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_1", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -929,8 +1013,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_2", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -940,8 +1025,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_3", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -951,8 +1037,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_4", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -962,8 +1049,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_5", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -973,8 +1061,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_6", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -984,8 +1073,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_7", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -995,8 +1085,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_8", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1006,8 +1097,9 @@ window.CALCULATION = [ name: "ID_WEB_SoftStand_9", lsb: 0, width: 32, - fieldtype: "Character", - writeable: "no", + class: "character", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1017,8 +1109,9 @@ window.CALCULATION = [ name: "ID_WEB_AdresseIP_akt", lsb: 0, width: 32, - fieldtype: "IPv4Address", - writeable: "no", + class: "ipv4_address", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1028,8 +1121,9 @@ window.CALCULATION = [ name: "ID_WEB_SubNetMask_akt", lsb: 0, width: 32, - fieldtype: "IPv4Address", - writeable: "no", + class: "ipv4_address", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1039,8 +1133,9 @@ window.CALCULATION = [ name: "ID_WEB_Add_Broadcast", lsb: 0, width: 32, - fieldtype: "IPv4Address", - writeable: "no", + class: "ipv4_address", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1050,8 +1145,9 @@ window.CALCULATION = [ name: "ID_WEB_Add_StdGateway", lsb: 0, width: 32, - fieldtype: "IPv4Address", - writeable: "no", + class: "ipv4_address", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1061,8 +1157,9 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Time0", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1072,8 +1169,9 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Time1", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1083,8 +1181,9 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Time2", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1094,8 +1193,9 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Time3", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1105,8 +1205,9 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Time4", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1116,63 +1217,69 @@ window.CALCULATION = [ name: "ID_WEB_ERROR_Nr0", lsb: 0, width: 32, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "" },{ category: "calculation", index: 101, name: "ID_WEB_ERROR_Nr1", lsb: 0, width: 32, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "" },{ category: "calculation", index: 102, name: "ID_WEB_ERROR_Nr2", lsb: 0, width: 32, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "" },{ category: "calculation", index: 103, name: "ID_WEB_ERROR_Nr3", lsb: 0, width: 32, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "" },{ category: "calculation", index: 104, name: "ID_WEB_ERROR_Nr4", lsb: 0, width: 32, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "" },{ category: "calculation", index: 105, name: "ID_WEB_AnzahlFehlerInSpeicher", lsb: 0, width: 32, - fieldtype: "Count", - writeable: "no", + class: "count", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1182,63 +1289,69 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff_file_Nr0", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 107, name: "ID_WEB_Switchoff_file_Nr1", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 108, name: "ID_WEB_Switchoff_file_Nr2", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 109, name: "ID_WEB_Switchoff_file_Nr3", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 110, name: "ID_WEB_Switchoff_file_Nr4", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 111, name: "ID_WEB_Switchoff_file_Time0", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1248,8 +1361,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff_file_Time1", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1259,8 +1373,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff_file_Time2", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1270,8 +1385,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff_file_Time3", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1281,8 +1397,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff_file_Time4", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1292,8 +1409,9 @@ window.CALCULATION = [ name: "ID_WEB_Comfort_exists", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1303,41 +1421,45 @@ window.CALCULATION = [ name: "ID_WEB_HauptMenuStatus_Zeile1", lsb: 0, width: 32, - fieldtype: "MainMenuStatusLine1", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump running\nheatpump idle\nheatpump coming\nerrorcode slot 0\ndefrost\nwaiting on LIN connection\ncompressor heating up\npump forerun" + description: "" },{ category: "calculation", index: 118, name: "ID_WEB_HauptMenuStatus_Zeile2", lsb: 0, width: 32, - fieldtype: "MainMenuStatusLine2", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nsince\nin" + description: "" },{ category: "calculation", index: 119, name: "ID_WEB_HauptMenuStatus_Zeile3", lsb: 0, width: 32, - fieldtype: "MainMenuStatusLine3", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheating\nno request\ngrid switch on delay\ncycle lock\nlock time\ndomestic water\ninfo bake out program\ndefrost\npump forerun\nthermal desinfection\ncooling\nswimming pool/solar\nheating external energy source\ndomestic water external energy source\nflow monitoring\nsecond heat generator 1 active" + description: "" },{ category: "calculation", index: 120, name: "ID_WEB_HauptMenuStatus_Zeit", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -1347,8 +1469,9 @@ window.CALCULATION = [ name: "ID_WEB_HauptMenuAHP_Stufe", lsb: 0, width: 32, - fieldtype: "Level", - writeable: "no", + class: "level", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1358,8 +1481,9 @@ window.CALCULATION = [ name: "ID_WEB_HauptMenuAHP_Temp", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1369,8 +1493,9 @@ window.CALCULATION = [ name: "ID_WEB_HauptMenuAHP_Zeit", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -1380,8 +1505,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_BWW", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1391,8 +1517,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_HZ", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1402,8 +1529,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_MK1", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1413,8 +1541,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_MK2", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1424,8 +1553,9 @@ window.CALCULATION = [ name: "ID_WEB_Einst_Kurzrpgramm", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1435,8 +1565,9 @@ window.CALCULATION = [ name: "ID_WEB_StatusSlave_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1446,8 +1577,9 @@ window.CALCULATION = [ name: "ID_WEB_StatusSlave_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1457,8 +1589,9 @@ window.CALCULATION = [ name: "ID_WEB_StatusSlave_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1468,8 +1601,9 @@ window.CALCULATION = [ name: "ID_WEB_StatusSlave_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1479,8 +1613,9 @@ window.CALCULATION = [ name: "ID_WEB_StatusSlave_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1490,8 +1625,9 @@ window.CALCULATION = [ name: "ID_WEB_AktuelleTimeStamp", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1501,8 +1637,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_MK3", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1512,8 +1649,9 @@ window.CALCULATION = [ name: "ID_WEB_Sollwert_TVL_MK3", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1523,8 +1661,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TFB3", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1534,8 +1673,9 @@ window.CALCULATION = [ name: "ID_WEB_MZ3out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1545,8 +1685,9 @@ window.CALCULATION = [ name: "ID_WEB_MA3out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1556,8 +1697,9 @@ window.CALCULATION = [ name: "ID_WEB_FP3out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1567,8 +1709,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_AbtIn", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -1578,8 +1721,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_RFV2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1589,8 +1733,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_RFV3", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1600,8 +1745,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_SW", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1611,8 +1757,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitSW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1622,8 +1769,9 @@ window.CALCULATION = [ name: "ID_WEB_FreigabKuehl", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1633,8 +1781,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogIn", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1644,8 +1793,9 @@ window.CALCULATION = [ name: "ID_WEB_SonderZeichen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1655,8 +1805,9 @@ window.CALCULATION = [ name: "ID_WEB_SH_ZIP", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1666,8 +1817,9 @@ window.CALCULATION = [ name: "ID_WEB_WebsrvProgrammWerteBeobarten", lsb: 0, width: 32, - fieldtype: "Icon", - writeable: "no", + class: "icon", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1677,8 +1829,9 @@ window.CALCULATION = [ name: "ID_WEB_WMZ_Heizung", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -1688,8 +1841,9 @@ window.CALCULATION = [ name: "ID_WEB_WMZ_Brauchwasser", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -1699,8 +1853,9 @@ window.CALCULATION = [ name: "ID_WEB_WMZ_Schwimmbad", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -1710,8 +1865,9 @@ window.CALCULATION = [ name: "ID_WEB_WMZ_Seit", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -1721,8 +1877,9 @@ window.CALCULATION = [ name: "ID_WEB_WMZ_Durchfluss", lsb: 0, width: 32, - fieldtype: "Flow", - writeable: "no", + class: "flow", + writeable: "", + unit: "l/h", since: "", until: "", description: "" @@ -1732,8 +1889,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogOut1", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1743,8 +1901,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogOut2", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1754,8 +1913,9 @@ window.CALCULATION = [ name: "ID_WEB_Time_Heissgas", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -1765,8 +1925,9 @@ window.CALCULATION = [ name: "ID_WEB_Temp_Lueftung_Zuluft", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1776,8 +1937,9 @@ window.CALCULATION = [ name: "ID_WEB_Temp_Lueftung_Abluft", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1787,8 +1949,9 @@ window.CALCULATION = [ name: "ID_WEB_Zaehler_BetrZeitSolar", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -1798,8 +1961,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogOut3", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1809,8 +1973,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogOut4", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1820,8 +1985,9 @@ window.CALCULATION = [ name: "ID_WEB_Out_VZU", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1831,8 +1997,9 @@ window.CALCULATION = [ name: "ID_WEB_Out_VAB", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1842,8 +2009,9 @@ window.CALCULATION = [ name: "ID_WEB_Out_VSK", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1853,8 +2021,9 @@ window.CALCULATION = [ name: "ID_WEB_Out_FRH", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1864,8 +2033,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogIn2", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1875,8 +2045,9 @@ window.CALCULATION = [ name: "ID_WEB_AnalogIn3", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -1886,8 +2057,9 @@ window.CALCULATION = [ name: "ID_WEB_SAXin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1897,8 +2069,9 @@ window.CALCULATION = [ name: "ID_WEB_SPLin", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1908,8 +2081,9 @@ window.CALCULATION = [ name: "ID_WEB_Compact_exists", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1919,8 +2093,9 @@ window.CALCULATION = [ name: "ID_WEB_Durchfluss_WQ", lsb: 0, width: 32, - fieldtype: "Flow", - writeable: "no", + class: "flow", + writeable: "", + unit: "l/h", since: "", until: "", description: "" @@ -1930,8 +2105,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_exists", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1941,8 +2117,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ANSAUG_VERDAMPFER", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1952,8 +2129,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ANSAUG_VERDICHTER", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1963,8 +2141,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_VDH", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1974,8 +2153,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_UH", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -1985,8 +2165,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_UH_Soll", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -1996,8 +2177,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_HD", lsb: 0, width: 32, - fieldtype: "Pressure", - writeable: "no", + class: "pressure", + writeable: "", + unit: "bar", since: "", until: "", description: "" @@ -2007,8 +2189,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ND", lsb: 0, width: 32, - fieldtype: "Pressure", - writeable: "no", + class: "pressure", + writeable: "", + unit: "bar", since: "", until: "", description: "" @@ -2018,8 +2201,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_VDH_out", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2029,8 +2213,9 @@ window.CALCULATION = [ name: "ID_WEB_HZIO_PWM", lsb: 0, width: 32, - fieldtype: "Percent2", - writeable: "no", + class: "percent", + writeable: "", + unit: "%", since: "", until: "", description: "" @@ -2040,8 +2225,9 @@ window.CALCULATION = [ name: "ID_WEB_HZIO_VEN", lsb: 0, width: 32, - fieldtype: "Speed", - writeable: "no", + class: "speed", + writeable: "", + unit: "rpm", since: "", until: "", description: "" @@ -2051,8 +2237,9 @@ window.CALCULATION = [ name: "ID_WEB_HZIO_EVU2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2062,8 +2249,9 @@ window.CALCULATION = [ name: "ID_WEB_HZIO_STB", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2073,8 +2261,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_Qh_Soll", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -2084,8 +2273,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_Qh_Ist", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -2095,8 +2285,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_TVL_Soll", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2106,8 +2297,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_Software", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2117,19 +2309,21 @@ window.CALCULATION = [ name: "ID_WEB_SEC_BZ", lsb: 0, width: 32, - fieldtype: "SecOperationMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\noff\ncooling\nheating\nfault\ntransition\ndefrost\nwaiting\nwaiting\ntransition\nstop\nmanual\nsimulation start\nevu lock" + description: "" },{ category: "calculation", index: 192, name: "ID_WEB_SEC_VWV", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2139,8 +2333,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_VD", lsb: 0, width: 32, - fieldtype: "Speed", - writeable: "no", + class: "speed", + writeable: "", + unit: "rpm", since: "", until: "", description: "" @@ -2150,8 +2345,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_VerdEVI", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2161,8 +2357,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_AnsEVI", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2172,8 +2369,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_UEH_EVI", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2183,8 +2381,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_UEH_EVI_S", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2194,8 +2393,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_KondTemp", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2205,8 +2405,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_FlussigEx", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2216,8 +2417,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_UK_EEV", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2227,8 +2429,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_EVI_Druck", lsb: 0, width: 32, - fieldtype: "Pressure", - writeable: "no", + class: "pressure", + writeable: "", + unit: "bar", since: "", until: "", description: "" @@ -2238,8 +2441,9 @@ window.CALCULATION = [ name: "ID_WEB_SEC_U_Inv", lsb: 0, width: 32, - fieldtype: "Voltage", - writeable: "no", + class: "voltage", + writeable: "", + unit: "V", since: "", until: "", description: "" @@ -2249,8 +2453,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_THG_2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2260,8 +2465,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_TWE_2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2271,8 +2477,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ANSAUG_VERDAMPFER_2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2282,8 +2489,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ANSAUG_VERDICHTER_2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2293,8 +2501,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_VDH_2", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2304,8 +2513,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_UH_2", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2315,8 +2525,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_UH_Soll_2", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2326,8 +2537,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_HD_2", lsb: 0, width: 32, - fieldtype: "Pressure", - writeable: "no", + class: "pressure", + writeable: "", + unit: "bar", since: "", until: "", description: "" @@ -2337,8 +2549,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_ND_2", lsb: 0, width: 32, - fieldtype: "Pressure", - writeable: "no", + class: "pressure", + writeable: "", + unit: "bar", since: "", until: "", description: "" @@ -2348,8 +2561,9 @@ window.CALCULATION = [ name: "ID_WEB_HDin_2", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2359,8 +2573,9 @@ window.CALCULATION = [ name: "ID_WEB_AVout_2", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2370,8 +2585,9 @@ window.CALCULATION = [ name: "ID_WEB_VBOout_2", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2381,8 +2597,9 @@ window.CALCULATION = [ name: "ID_WEB_VD1out_2", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2392,8 +2609,9 @@ window.CALCULATION = [ name: "ID_WEB_LIN_VDH_out_2", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2403,63 +2621,69 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff2_file_Nr0", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 218, name: "ID_WEB_Switchoff2_file_Nr1", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 219, name: "ID_WEB_Switchoff2_file_Nr2", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 220, name: "ID_WEB_Switchoff2_file_Nr3", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 221, name: "ID_WEB_Switchoff2_file_Nr4", lsb: 0, width: 32, - fieldtype: "SwitchoffFile", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nheatpump error\nsystem error\noperation mode second heat generator\nevu lock\nair defrost\nmaximal usage temperature\nminimal usage temperature\nlower usage limit\nno request\nexternal energy source\nflow rate\nlow pressure pause\nsuperheating pause\ninverter pause\ndesuperheater pause\noperation mode for switching over\nother shutdown\nmin.flow cooling\nPV max\nhot gas pause\noverheating hot gas pause\nno request\nmin. heat source out cooling\nLPC\nrestart" + description: "" },{ category: "calculation", index: 222, name: "ID_WEB_Switchoff2_file_Time0", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2469,8 +2693,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff2_file_Time1", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2480,8 +2705,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff2_file_Time2", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2491,8 +2717,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff2_file_Time3", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2502,8 +2729,9 @@ window.CALCULATION = [ name: "ID_WEB_Switchoff2_file_Time4", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2513,8 +2741,9 @@ window.CALCULATION = [ name: "ID_WEB_RBE_RT_Ist", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2524,8 +2753,9 @@ window.CALCULATION = [ name: "ID_WEB_RBE_RT_Soll", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2535,8 +2765,9 @@ window.CALCULATION = [ name: "ID_WEB_Temperatur_BW_oben", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2546,19 +2777,21 @@ window.CALCULATION = [ name: "ID_WEB_Code_WP_akt_2", lsb: 0, width: 32, - fieldtype: "HeatpumpCode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nERC\nSW1\nSW2\nWW1\nWW2\nL1I\nL2I\nL1A\nL2A\nKSW\nKLW\nSWC\nLWC\nL2G\nWZS\nL1I407\nL2I407\nL1A407\nL2A407\nL2G407\nLWC407\nL1AREV\nL2AREV\nWWC1\nWWC2\nL2G404\nWZW\nL1S\nL1H\nL2H\nWZWD\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nERC\nWWB_20\nLD5\nLD7\nSW 37_45\nSW 58_69\nSW 29_56\nLD5 (230V)\nLD7 (230 V)\nLD9\nLD5 REV\nLD7 REV\nLD5 REV 230V\nLD7 REV 230V\nLD9 REV 230V\nSW 291\nLW SEC\nHMD 2\nMSW 4\nMSW 6\nMSW 8\nMSW 10\nMSW 12\nMSW 14\nMSW 17\nMSW 19\nMSW 23\nMSW 26\nMSW 30\nMSW 4S\nMSW 6S\nMSW 8S\nMSW 10S\nMSW 12S\nMSW 16S\nMSW2-6S\nMSW4-16\nLD2AG\nLD9V\nMSW3-12\nMSW3-12S\nMSW2-9S\nLW 8\nLW 12\nHZ_HMD\nLW V4\nLW SEC 2\nMSW1-4S\nLP5V\nLP8V" + description: "" },{ category: "calculation", index: 231, name: "ID_WEB_Freq_VD", lsb: 0, width: 32, - fieldtype: "Frequency", - writeable: "no", + class: "frequency", + writeable: "", + unit: "Hz", since: "", until: "", description: "" @@ -2568,8 +2801,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_232", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2579,8 +2813,9 @@ window.CALCULATION = [ name: "Vapourisation_Temperature", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2590,8 +2825,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_233", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2601,8 +2837,9 @@ window.CALCULATION = [ name: "Liquefaction_Temperature", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -2612,8 +2849,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_234", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2623,8 +2861,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_235", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2634,8 +2873,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_236", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2645,8 +2885,9 @@ window.CALCULATION = [ name: "ID_WEB_Freq_VD_Soll", lsb: 0, width: 32, - fieldtype: "Frequency", - writeable: "no", + class: "frequency", + writeable: "", + unit: "Hz", since: "", until: "", description: "" @@ -2656,8 +2897,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_237", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2667,8 +2909,9 @@ window.CALCULATION = [ name: "ID_WEB_Freq_VD_Min", lsb: 0, width: 32, - fieldtype: "Frequency", - writeable: "no", + class: "frequency", + writeable: "", + unit: "Hz", since: "", until: "", description: "" @@ -2678,8 +2921,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_238", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2689,8 +2933,9 @@ window.CALCULATION = [ name: "ID_WEB_Freq_VD_Max", lsb: 0, width: 32, - fieldtype: "Frequency", - writeable: "no", + class: "frequency", + writeable: "", + unit: "Hz", since: "", until: "", description: "" @@ -2700,8 +2945,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_239", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2711,8 +2957,9 @@ window.CALCULATION = [ name: "VBO_Temp_Spread_Soll", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2722,8 +2969,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_240", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2733,8 +2981,9 @@ window.CALCULATION = [ name: "VBO_Temp_Spread_Ist", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2744,8 +2993,21 @@ window.CALCULATION = [ name: "HUP_PWM", lsb: 0, width: 32, - fieldtype: "Percent2", - writeable: "no", + 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: "" @@ -2755,8 +3017,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_242", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2766,8 +3029,9 @@ window.CALCULATION = [ name: "HUP_Temp_Spread_Soll", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2777,8 +3041,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_243", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2788,8 +3053,9 @@ window.CALCULATION = [ name: "HUP_Temp_Spread_Ist", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -2799,8 +3065,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_244", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2810,8 +3077,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_245", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2821,8 +3089,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_246", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2832,8 +3101,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_247", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2843,8 +3113,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_248", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2854,8 +3125,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_249", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2865,8 +3137,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_250", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2876,8 +3149,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_251", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2887,8 +3161,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_252", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2898,8 +3173,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_253", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2909,8 +3185,9 @@ window.CALCULATION = [ name: "Flow_Rate_254", lsb: 0, width: 32, - fieldtype: "Flow", - writeable: "no", + class: "flow", + writeable: "", + unit: "l/h", since: "", until: "", description: "" @@ -2920,8 +3197,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_255", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2931,8 +3209,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_256", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2942,8 +3221,9 @@ window.CALCULATION = [ name: "Heat_Output", lsb: 0, width: 32, - fieldtype: "Power", - writeable: "no", + class: "power", + writeable: "", + unit: "W", since: "", until: "", description: "" @@ -2953,8 +3233,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_258", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2964,8 +3245,9 @@ window.CALCULATION = [ name: "RBE_Version", lsb: 0, width: 32, - fieldtype: "MajorMinorVersion", - writeable: "no", + class: "version", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2975,8 +3257,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_259", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2986,8 +3269,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_260", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2997,8 +3281,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_261", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3008,8 +3293,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_262", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3019,8 +3305,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_263", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3030,8 +3317,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_264", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3041,8 +3329,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_265", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3052,8 +3341,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_266", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3063,8 +3353,9 @@ window.CALCULATION = [ name: "Desired_Room_Temperature", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -3074,8 +3365,9 @@ window.CALCULATION = [ name: "AC_Power_Input", lsb: 0, width: 32, - fieldtype: "Power", - writeable: "no", + class: "power", + writeable: "", + unit: "W", since: "", until: "", description: "" @@ -3085,8 +3377,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_269", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3096,8 +3389,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_270", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3107,8 +3401,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_271", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3118,8 +3413,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_272", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3129,8 +3425,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_273", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3140,8 +3437,9 @@ window.CALCULATION = [ name: "Unknown_Calculation_274", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" diff --git a/docs/holding.js b/docs/holding.js index acb1b5cd..92fc4b5e 100644 --- a/docs/holding.js +++ b/docs/holding.js @@ -5,8 +5,9 @@ window.HOLDING = [ name: "heating_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -16,8 +17,9 @@ window.HOLDING = [ name: "heating_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -27,8 +29,9 @@ window.HOLDING = [ name: "heating_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -38,8 +41,9 @@ window.HOLDING = [ name: "heating_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -49,8 +53,21 @@ window.HOLDING = [ name: "hot_water_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -60,8 +77,21 @@ window.HOLDING = [ name: "hot_water_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -71,8 +101,21 @@ window.HOLDING = [ name: "hot_water_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -82,8 +125,21 @@ window.HOLDING = [ name: "hot_water_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -93,8 +149,9 @@ window.HOLDING = [ name: "mc1_heat_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -104,8 +161,9 @@ window.HOLDING = [ name: "mc1_heat_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -115,8 +173,9 @@ window.HOLDING = [ name: "mc1_heat_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -126,8 +185,9 @@ window.HOLDING = [ name: "mc1_heat_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -137,8 +197,9 @@ window.HOLDING = [ name: "mc1_cool_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -148,8 +209,9 @@ window.HOLDING = [ name: "mc1_cool_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -159,8 +221,9 @@ window.HOLDING = [ name: "mc1_cool_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -170,8 +233,9 @@ window.HOLDING = [ name: "mc2_heat_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -181,8 +245,9 @@ window.HOLDING = [ name: "mc2_heat_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -192,8 +257,9 @@ window.HOLDING = [ name: "mc2_heat_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -203,8 +269,9 @@ window.HOLDING = [ name: "mc2_heat_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -214,8 +281,9 @@ window.HOLDING = [ name: "mc2_cool_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -225,8 +293,9 @@ window.HOLDING = [ name: "mc2_cool_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -236,8 +305,9 @@ window.HOLDING = [ name: "mc2_cool_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -247,8 +317,9 @@ window.HOLDING = [ name: "mc3_heat_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -258,8 +329,9 @@ window.HOLDING = [ name: "mc3_heat_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -269,8 +341,9 @@ window.HOLDING = [ name: "mc3_heat_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -280,8 +353,9 @@ window.HOLDING = [ name: "mc3_heat_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -291,8 +365,9 @@ window.HOLDING = [ name: "mc3_cool_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -302,8 +377,9 @@ window.HOLDING = [ name: "mc3_cool_setpoint", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "yes", + 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." @@ -313,8 +389,9 @@ window.HOLDING = [ name: "mc3_cool_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + 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." @@ -324,8 +401,9 @@ window.HOLDING = [ name: "lpc_mode", lsb: 0, width: 16, - fieldtype: "LpcMode", - writeable: "yes", + 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" @@ -335,8 +413,9 @@ window.HOLDING = [ name: "pc_limit", lsb: 0, width: 16, - fieldtype: "PowerKW", - writeable: "yes", + 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." @@ -346,8 +425,9 @@ window.HOLDING = [ name: "lock_heating", lsb: 0, width: 16, - fieldtype: "LockMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "3.92.0", until: "", description: "Lock state for the heating function\n\nUser-Options:\nOff\nOn" @@ -357,8 +437,9 @@ window.HOLDING = [ name: "lock_hot_water", lsb: 0, width: 16, - fieldtype: "LockMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "3.92.0", until: "", description: "Lock state for the hot water system\n\nUser-Options:\nOff\nOn" @@ -368,8 +449,9 @@ window.HOLDING = [ name: "lock_cooling", lsb: 0, width: 16, - fieldtype: "LockMode", - writeable: "yes", + 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" @@ -379,8 +461,9 @@ window.HOLDING = [ name: "lock_swimming_pool", lsb: 0, width: 16, - fieldtype: "LockMode", - writeable: "yes", + 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" @@ -390,8 +473,9 @@ window.HOLDING = [ name: "unknown_holding_60", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.1", until: "", description: "TODO: Function unknown – requires further analysis" @@ -401,8 +485,9 @@ window.HOLDING = [ name: "heat_overall_mode", lsb: 0, width: 16, - fieldtype: "ControlMode", - writeable: "yes", + 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" @@ -412,8 +497,9 @@ window.HOLDING = [ name: "heat_overall_offset", lsb: 0, width: 16, - fieldtype: "KelvinInt16", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "K", since: "3.92.0", until: "", description: "Temperature correction in Kelvin for all heating functions" @@ -423,8 +509,9 @@ window.HOLDING = [ name: "heat_overall_level", lsb: 0, width: 16, - fieldtype: "LevelMode", - writeable: "yes", + 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" @@ -434,8 +521,9 @@ window.HOLDING = [ name: "circulation", lsb: 0, width: 16, - fieldtype: "OnOffMode", - writeable: "yes", + 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" @@ -445,8 +533,9 @@ window.HOLDING = [ name: "hot_water_extra", lsb: 0, width: 16, - fieldtype: "OnOffMode", - writeable: "yes", + 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" diff --git a/docs/index.html b/docs/index.html index b54adb8e..c0f20490 100644 --- a/docs/index.html +++ b/docs/index.html @@ -46,16 +46,17 @@ white-space: pre-wrap; } - th:nth-child(1), td:nth-child(1) { width: 10%; } /* Category */ - th:nth-child(2), td:nth-child(2) { width: 8%; } /* Index */ - th:nth-child(3), td:nth-child(3) { width: 12%; } /* Name */ - th:nth-child(4), td:nth-child(4) { width: 6%; } /* LSB */ - th:nth-child(5), td:nth-child(5) { width: 6%; } /* Width */ - th:nth-child(6), td:nth-child(6) { width: 8%; } /* Field Type */ - th:nth-child(7), td:nth-child(7) { width: 8%; } /* Writeable */ - th:nth-child(8), td:nth-child(8) { width: 8%; } /* Since */ - th:nth-child(9), td:nth-child(9) { width: 9%; } /* Until */ - th:nth-child(10), td:nth-child(10) { width: 25%; } /* Description */ + th:nth-child(1), td:nth-child(1) { width: 10%; } /* Category */ + th:nth-child(2), td:nth-child(2) { width: 7%; } /* Index */ + th:nth-child(3), td:nth-child(3) { width: 12%; } /* Name */ + th:nth-child(4), td:nth-child(4) { width: 5%; } /* LSB */ + th:nth-child(5), td:nth-child(5) { width: 5%; } /* Width */ + th:nth-child(6), td:nth-child(6) { width: 7%; } /* Class */ + th:nth-child(7), td:nth-child(7) { width: 7%; } /* Unit */ + th:nth-child(8), td:nth-child(8) { width: 7%; } /* Writeable */ + th:nth-child(9), td:nth-child(9) { width: 7%; } /* Since */ + th:nth-child(10), td:nth-child(10) { width: 8%; } /* Until */ + th:nth-child(11), td:nth-child(11) { width: 25%; } /* Description */ @@ -70,11 +71,12 @@

Luxtronik data fields

- - - - - + + + + + + @@ -85,7 +87,8 @@

Luxtronik data fields

- + + @@ -97,7 +100,8 @@

Luxtronik data fields

- + + diff --git a/docs/input.js b/docs/input.js index 99591313..31a1277f 100644 --- a/docs/input.js +++ b/docs/input.js @@ -5,8 +5,9 @@ window.INPUT = [ name: "heatpump_vd1_status", lsb: 0, width: 1, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Indicates whether VD1 is running" @@ -16,8 +17,9 @@ window.INPUT = [ name: "heatpump_vd2_status", lsb: 1, width: 1, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Indicates whether VD2 is running" @@ -27,8 +29,9 @@ window.INPUT = [ name: "heatpump_zwe1_status", lsb: 2, width: 1, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Indicates whether ZWE1 is running" @@ -38,8 +41,9 @@ window.INPUT = [ name: "heatpump_zwe2_status", lsb: 3, width: 1, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Indicates whether ZWE2 is running" @@ -49,8 +53,9 @@ window.INPUT = [ name: "heatpump_zwe3_status", lsb: 4, width: 1, - fieldtype: "Bool", - writeable: "no", + class: "boolean", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Indicates whether ZWE3 is running" @@ -60,8 +65,9 @@ window.INPUT = [ name: "heatpump_status", lsb: 0, width: 16, - fieldtype: "HeatPumpStatus", - writeable: "no", + 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" @@ -71,63 +77,81 @@ window.INPUT = [ name: "operation_mode", lsb: 0, width: 16, - fieldtype: "OperationMode", - writeable: "no", + 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\n\nUser-Options:\nheating\nhot water\nswimming pool/solar\nevu\ndefrost\nno request\nheating external source\ncooling" + 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, - fieldtype: "ModeStatus", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Heating status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + description: "Heating status:\n0: Off\n1: No demand\n2: Demand\n3: Active" },{ category: "input", index: 4, name: "hot_water_status", lsb: 0, width: 16, - fieldtype: "ModeStatus", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "DHW status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + 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, - fieldtype: "ModeStatus", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Cooling status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + description: "Cooling status:\n0: Off\n1: No demand\n2: Demand\n3: Active" },{ category: "input", index: 7, name: "pool_heating_status", lsb: 0, width: 16, - fieldtype: "ModeStatus", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Pool heating / Solar status:\n0: Off\n1: No demand\n2: Demand\n3: Active\n\nUser-Options:\nDisabled\nNo request\nRequested\nRunning" + 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, - fieldtype: "CelsiusUInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current return line temperature" @@ -137,8 +161,9 @@ window.INPUT = [ name: "return_line_target", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Target return line temperature" @@ -148,8 +173,9 @@ window.INPUT = [ name: "return_line_ext", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current value of the external return temperature sensor" @@ -159,8 +185,9 @@ window.INPUT = [ name: "return_line_limit", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Maximum allowed return line temperature" @@ -170,8 +197,9 @@ window.INPUT = [ name: "return_line_min_target", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Minimum target return line temperature" @@ -181,8 +209,9 @@ window.INPUT = [ name: "flow_line_temp", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current flow line temperature" @@ -192,8 +221,9 @@ window.INPUT = [ name: "room_temperature", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current room temperature. Requires accessory RBE+ room control unit." @@ -203,8 +233,9 @@ window.INPUT = [ name: "heating_limit", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + 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." @@ -214,8 +245,9 @@ window.INPUT = [ name: "outside_temp", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Measured outdoor temperature" @@ -225,8 +257,9 @@ window.INPUT = [ name: "outside_temp_average", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.92.0", until: "", description: "Average outdoor temperature" @@ -236,8 +269,9 @@ window.INPUT = [ name: "heat_source_input", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.92.0", until: "", description: "Heat source input temperature" @@ -247,8 +281,9 @@ window.INPUT = [ name: "heat_source_output", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.92.0", until: "", description: "Heat source output temperature" @@ -258,8 +293,9 @@ window.INPUT = [ name: "max_flow_temp", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.92.0", until: "", description: "Maximum flow temperature" @@ -269,8 +305,9 @@ window.INPUT = [ name: "unknown_input_113", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -280,8 +317,21 @@ window.INPUT = [ name: "hot_water_temp", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + 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" @@ -291,8 +341,21 @@ window.INPUT = [ name: "hot_water_target", lsb: 0, width: 16, - fieldtype: "CelsiusUInt16", - writeable: "no", + 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" @@ -302,8 +365,21 @@ window.INPUT = [ name: "hot_water_min", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + 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" @@ -313,8 +389,21 @@ window.INPUT = [ name: "hot_water_max", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + 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" @@ -324,8 +413,21 @@ window.INPUT = [ name: "hot_water_limit", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + 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." @@ -335,8 +437,9 @@ window.INPUT = [ name: "mc1_temp", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current flow temperature of mixing circuit 1" @@ -346,8 +449,9 @@ window.INPUT = [ name: "mc1_target", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Desired target temperature of mixing circuit 1" @@ -357,8 +461,9 @@ window.INPUT = [ name: "mc1_min", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Minimum temperature of mixing circuit 1" @@ -368,8 +473,9 @@ window.INPUT = [ name: "mc1_max", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Maximum temperature of mixing circuit 1" @@ -379,8 +485,9 @@ window.INPUT = [ name: "mc2_temp", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current flow temperature of mixing circuit 2" @@ -390,8 +497,9 @@ window.INPUT = [ name: "mc2_target", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Desired target temperature of mixing circuit 2" @@ -401,8 +509,9 @@ window.INPUT = [ name: "mc2_min", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Minimum temperature of mixing circuit 2" @@ -412,8 +521,9 @@ window.INPUT = [ name: "mc2_max", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Maximum temperature of mixing circuit 2" @@ -423,8 +533,9 @@ window.INPUT = [ name: "mc3_temp", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Current flow temperature of mixing circuit 3" @@ -434,8 +545,9 @@ window.INPUT = [ name: "mc3_target", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Desired target temperature of mixing circuit 3" @@ -445,8 +557,9 @@ window.INPUT = [ name: "mc3_min", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Minimum temperature of mixing circuit 3" @@ -456,8 +569,9 @@ window.INPUT = [ name: "mc3_max", lsb: 0, width: 16, - fieldtype: "CelsiusInt16", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "3.90.1", until: "", description: "Maximum temperature of mixing circuit 3" @@ -467,30 +581,33 @@ window.INPUT = [ name: "error_number", lsb: 0, width: 16, - fieldtype: "Errorcode", - writeable: "no", + class: "errorcode", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Current error number:\n0: no error\nX: error code.\n\nUser-Options:\nno error\nsensor external return\nerror low pressure\nlow pressure blockade\nfrost protection\nerror hot gas\nmotor protection\nmotor protection BSUP\nencoding heat pump\nsensor return\nsensor flow\nsensor hot gas\nsensor outdoor temp.\nsensor DHW\nsensor heat source in\nhot gas DHW\nhigh pressure switch-off\nerror high pressure\nflow rate\nmax. outdoor temp.\nmin. outdoor temp.\nmin. heat source temp.\nlow pressure switch-off\ntemp. difference heating\ntemp. difference DHW\ntemp. difference defrosting\nerror DHW\nsensor mixing circuit 1\nbrine pressure\nsensor heat source out\nerror phase sequence\ncapacity screed heating\ninterruption TDI\nerror cooling\nerror electrical anode\nelectrical anode DHW\nsensor external energy\nsensor solar panel\nsensor solar tank\nsensor mixing circuit 2\nsensor mixing circuit 3\nsensor return external\nphase sequence monitoring\npower supply / flow\nconnection to slave lost\nconnection to master lost\nlow pressure block\nerror defrosting\nfault TDI\nerror defrosting\nLIN-connection lost\nsuction compressor\nsuction evaporator\ncompressor oil sump\noverheating\noperating limits-compressor\nSTL immersion heater\nflow rate control\npump control\nlow overheat\nhigh overheat\nOL too low condensation\nOL too high condensation\nOL too low evaporation\nexpansion valve EVI\noperating limits-compressor\nexpansion valve\nsensor low pressure\nsensor high pressure\nsensor EVI\nsensor liquid ahead exp. valve\nsensor EVi suction gas\ncommunication SEC - Inverter\ninverter blocked\nSEC-Board defect\ncommunication SEC - Inverter\nVD alert\nserious inverter error\nLIN/encoding not found\nserious inverter error\nModbus inverter\nLIN-connection lost\nserious inverter error\novervoltage\nundervoltage\nsafety shutdown\nMLRH is not supported\nModbus fan\nModbus ASB\nsafety stop desuperheater\nswitch box fan\nswitch box fan\nsensor switch box\nsensor desuperheater\nModbus SEC\nLost modbus connection" + description: "Current error number:\n0: no error\nX: error code." },{ category: "input", index: 202, name: "buffer_type", lsb: 0, width: 16, - fieldtype: "BufferType", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Buffer tank configuration:\n0: series buffer\n1: separation buffer\n2: multifunction buffer.\n\nUser-Options:\nseries buffer\nseparation buffer\nmultifunction buffer" + 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, - fieldtype: "Minutes", - writeable: "no", + class: "timespan", + writeable: "", + unit: "min", since: "3.90.1", until: "", description: "Minimum off-time before heat pump may restart." @@ -500,8 +617,9 @@ window.INPUT = [ name: "min_run_time", lsb: 0, width: 16, - fieldtype: "Minutes", - writeable: "no", + class: "timespan", + writeable: "", + unit: "min", since: "3.90.1", until: "", description: "Minimum runtime of the heat pump." @@ -511,41 +629,45 @@ window.INPUT = [ name: "cooling_configured", lsb: 0, width: 16, - fieldtype: "OnOffMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Indicates whether cooling mode is configured:\n0: no\n1: yes.\n\nUser-Options:\nOff\nOn" + description: "Indicates whether cooling mode is configured:\n0: no\n1: yes." },{ category: "input", index: 206, name: "pool_heating_configured", lsb: 0, width: 16, - fieldtype: "OnOffMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "3.90.1", until: "", - description: "Indicates whether pool heating is configured:\n0: no\n1: yes.\n\nUser-Options:\nOff\nOn" + description: "Indicates whether pool heating is configured:\n0: no\n1: yes." },{ category: "input", index: 207, name: "cooling_release", lsb: 0, width: 16, - fieldtype: "OnOffMode", - writeable: "no", + 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).\n\nUser-Options:\nOff\nOn" + 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, - fieldtype: "PowerKW", - writeable: "no", + class: "power", + writeable: "", + unit: "kW", since: "3.90.1", until: "", description: "Current heating power." @@ -555,8 +677,9 @@ window.INPUT = [ name: "electric_power_actual", lsb: 0, width: 16, - fieldtype: "PowerKW", - writeable: "no", + class: "power", + writeable: "", + unit: "kW", since: "3.90.1", until: "", description: "Current electrical power consumption." @@ -566,8 +689,9 @@ window.INPUT = [ name: "electric_power_min_predicted", lsb: 0, width: 16, - fieldtype: "PowerKW", - writeable: "no", + class: "power", + writeable: "", + unit: "kW", since: "3.90.1", until: "", description: "Minimum predicted electrical power consumption." @@ -577,8 +701,9 @@ window.INPUT = [ name: "electric_energy_total", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.90.1", until: "", description: "Total electrical energy consumption (all modes)." @@ -588,8 +713,9 @@ window.INPUT = [ name: "electric_energy_heating", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.90.1", until: "", description: "Total electrical energy consumption for heating." @@ -599,8 +725,9 @@ window.INPUT = [ name: "electric_energy_dhw", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.90.1", until: "", description: "Total electrical energy consumption for DHW." @@ -610,8 +737,9 @@ window.INPUT = [ name: "electric_energy_cooling", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.90.1", until: "", description: "Total electrical energy consumption for cooling." @@ -621,8 +749,9 @@ window.INPUT = [ name: "electric_energy_pool", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.90.1", until: "", description: "Total electrical energy consumption for pool heating / solar." @@ -632,8 +761,9 @@ window.INPUT = [ name: "thermal_energy_total", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.92.0", until: "", description: "Total thermal energy production (all modes)." @@ -643,8 +773,9 @@ window.INPUT = [ name: "thermal_energy_heating", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.92.0", until: "", description: "Total thermal energy production for heating." @@ -654,8 +785,9 @@ window.INPUT = [ name: "thermal_energy_dhw", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.92.0", until: "", description: "Total thermal energy production for DHW." @@ -665,8 +797,9 @@ window.INPUT = [ name: "thermal_energy_cooling", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.92.0", until: "", description: "Total thermal energy production for cooling." @@ -676,8 +809,9 @@ window.INPUT = [ name: "thermal_energy_pool", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "3.92.0", until: "", description: "Total thermal energy production for pool heating / solar." @@ -687,8 +821,9 @@ window.INPUT = [ name: "unknown_input_350", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -698,8 +833,9 @@ window.INPUT = [ name: "unknown_input_351", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -709,8 +845,9 @@ window.INPUT = [ name: "unknown_input_352", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -720,8 +857,9 @@ window.INPUT = [ name: "unknown_input_353", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -731,8 +869,9 @@ window.INPUT = [ name: "unknown_input_354", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -742,8 +881,9 @@ window.INPUT = [ name: "unknown_input_355", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -753,8 +893,9 @@ window.INPUT = [ name: "unknown_input_356", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -764,8 +905,9 @@ window.INPUT = [ name: "unknown_input_360", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -775,8 +917,9 @@ window.INPUT = [ name: "unknown_input_361", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -786,8 +929,9 @@ window.INPUT = [ name: "version", lsb: 0, width: 16, - fieldtype: "FullVersion", - writeable: "no", + class: "version", + writeable: "", + unit: "", since: "3.90.1", until: "", description: "Full firmware version information" @@ -797,8 +941,9 @@ window.INPUT = [ name: "unknown_input_404", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -808,8 +953,9 @@ window.INPUT = [ name: "unknown_input_405", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -819,8 +965,9 @@ window.INPUT = [ name: "unknown_input_406", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -830,8 +977,9 @@ window.INPUT = [ name: "unknown_input_407", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -841,8 +989,9 @@ window.INPUT = [ name: "unknown_input_408", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -852,8 +1001,9 @@ window.INPUT = [ name: "unknown_input_409", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -863,8 +1013,9 @@ window.INPUT = [ name: "unknown_input_410", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -874,8 +1025,9 @@ window.INPUT = [ name: "unknown_input_411", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -885,8 +1037,9 @@ window.INPUT = [ name: "unknown_input_412", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -896,8 +1049,9 @@ window.INPUT = [ name: "unknown_input_413", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -907,8 +1061,9 @@ window.INPUT = [ name: "unknown_input_416", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -918,8 +1073,9 @@ window.INPUT = [ name: "unknown_input_417", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -929,8 +1085,9 @@ window.INPUT = [ name: "unknown_input_500", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -940,8 +1097,9 @@ window.INPUT = [ name: "unknown_input_501", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" @@ -951,8 +1109,9 @@ window.INPUT = [ name: "unknown_input_502", lsb: 0, width: 16, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "3.92.0", until: "", description: "TODO: Function unknown – requires further analysis" diff --git a/docs/parameter.js b/docs/parameter.js index d68e7341..c4a8e7c6 100644 --- a/docs/parameter.js +++ b/docs/parameter.js @@ -5,8 +5,9 @@ window.PARAMETER = [ name: "ID_Transfert_LuxNet", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -16,8 +17,9 @@ window.PARAMETER = [ name: "ID_Einst_WK_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -27,8 +29,9 @@ window.PARAMETER = [ name: "ID_Einst_BWS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -38,8 +41,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_akt", lsb: 0, width: 32, - fieldtype: "HeatingMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" @@ -49,8 +53,9 @@ window.PARAMETER = [ name: "ID_Ba_Bw_akt", lsb: 0, width: 32, - fieldtype: "HotWaterMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" @@ -60,8 +65,9 @@ window.PARAMETER = [ name: "ID_Ba_Al_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -71,8 +77,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -82,8 +89,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdBw", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -93,8 +101,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdAl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -104,8 +113,9 @@ window.PARAMETER = [ name: "ID_Einst_HReg_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -115,8 +125,9 @@ window.PARAMETER = [ name: "ID_Einst_HzHwMAt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -126,8 +137,9 @@ window.PARAMETER = [ name: "ID_Einst_HzHwHKE_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -137,8 +149,9 @@ window.PARAMETER = [ name: "ID_Einst_HzHKRANH_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -148,8 +161,9 @@ window.PARAMETER = [ name: "ID_Einst_HzHKRABS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -159,8 +173,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK1E_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -170,8 +185,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK1ANH_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -181,8 +197,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK1ABS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -192,8 +209,9 @@ window.PARAMETER = [ name: "ID_Einst_HzFtRl_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -203,8 +221,9 @@ window.PARAMETER = [ name: "ID_Einst_HzFtMK1Vl_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -214,8 +233,9 @@ window.PARAMETER = [ name: "ID_Einst_SUBW_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -225,8 +245,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_MO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -236,8 +257,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_DI", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -247,8 +269,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_MI", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -258,8 +281,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_DO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -269,8 +293,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_FR", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -280,8 +305,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_SA", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -291,8 +317,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_SO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -302,8 +329,9 @@ window.PARAMETER = [ name: "ID_Einst_BwTDI_akt_AL", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -313,8 +341,9 @@ window.PARAMETER = [ name: "ID_Einst_AnlKonf_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -324,8 +353,9 @@ window.PARAMETER = [ name: "ID_Einst_Sprache_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -335,8 +365,9 @@ window.PARAMETER = [ name: "ID_Switchoff_Zahler", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -346,8 +377,9 @@ window.PARAMETER = [ name: "ID_Switchoff_index", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -357,8 +389,9 @@ window.PARAMETER = [ name: "ID_Einst_EvuTyp_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -368,8 +401,9 @@ window.PARAMETER = [ name: "ID_Einst_RFVEinb_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -379,8 +413,9 @@ window.PARAMETER = [ name: "ID_Einst_AbtZykMax_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -390,8 +425,9 @@ window.PARAMETER = [ name: "ID_Einst_HREinb_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -401,8 +437,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE1Art_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -412,8 +449,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE1Fkt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -423,8 +461,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE2Art_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -434,8 +473,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE2Fkt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -445,8 +485,9 @@ window.PARAMETER = [ name: "ID_Einst_BWBer_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -456,8 +497,9 @@ window.PARAMETER = [ name: "ID_Einst_En_Inst", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -467,8 +509,9 @@ window.PARAMETER = [ name: "ID_Einst_MK1Typ_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -478,8 +521,9 @@ window.PARAMETER = [ name: "ID_Einst_ABTLuft_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -489,8 +533,9 @@ window.PARAMETER = [ name: "ID_Einst_TLAbt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -500,8 +545,9 @@ window.PARAMETER = [ name: "ID_Einst_LAbtTime_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -511,8 +557,9 @@ window.PARAMETER = [ name: "ID_Einst_ASDTyp_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -522,8 +569,9 @@ window.PARAMETER = [ name: "ID_Einst_LGST_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -533,8 +581,9 @@ window.PARAMETER = [ name: "ID_Einst_BwWpTime_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -544,8 +593,9 @@ window.PARAMETER = [ name: "ID_Einst_Popt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -555,8 +605,9 @@ window.PARAMETER = [ name: "ID_Einst_Kurzprog_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -566,8 +617,9 @@ window.PARAMETER = [ name: "ID_Timer_Kurzprog_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -577,8 +629,9 @@ window.PARAMETER = [ name: "ID_Einst_ManAbt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -588,8 +641,9 @@ window.PARAMETER = [ name: "ID_Einst_Ahz_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -599,8 +653,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -610,8 +665,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -621,8 +677,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -632,8 +689,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -643,8 +701,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -654,8 +713,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -665,8 +725,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -676,8 +737,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -687,8 +749,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -698,8 +761,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Ahz_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -709,8 +773,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -720,8 +785,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -731,8 +797,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -742,8 +809,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -753,8 +821,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -764,8 +833,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -775,8 +845,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -786,8 +857,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -797,8 +869,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -808,8 +881,9 @@ window.PARAMETER = [ name: "ID_Einst_TVL_Std_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -819,8 +893,9 @@ window.PARAMETER = [ name: "ID_Einst_BWS_Hyst_akt", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "K", since: "", until: "", description: "" @@ -830,8 +905,9 @@ window.PARAMETER = [ name: "ID_Temp_TBW_BwHD_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -841,8 +917,9 @@ window.PARAMETER = [ name: "ID_Einst_ABT1_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -852,8 +929,9 @@ window.PARAMETER = [ name: "ID_Einst_LABTpaus_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -863,8 +941,9 @@ window.PARAMETER = [ name: "ID_AHZ_state_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -874,8 +953,9 @@ window.PARAMETER = [ name: "ID_Sollwert_TRL_HZ_AHZ", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -885,8 +965,9 @@ window.PARAMETER = [ name: "ID_AHP_valid_records", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -896,8 +977,9 @@ window.PARAMETER = [ name: "ID_Timer_AHZ_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -907,8 +989,9 @@ window.PARAMETER = [ name: "ID_Einst_BWTINP_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -918,8 +1001,9 @@ window.PARAMETER = [ name: "ID_Einst_ZUPTYP_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -929,8 +1013,9 @@ window.PARAMETER = [ name: "ID_Sollwert_TLG_max", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -940,8 +1025,9 @@ window.PARAMETER = [ name: "ID_Einst_BWZIP_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -951,8 +1037,9 @@ window.PARAMETER = [ name: "ID_Einst_ERRmZWE_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -962,8 +1049,9 @@ window.PARAMETER = [ name: "ID_Einst_TRBegr_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -973,8 +1061,9 @@ window.PARAMETER = [ name: "ID_Einst_HRHyst_akt", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "K", since: "", until: "", description: "" @@ -984,8 +1073,9 @@ window.PARAMETER = [ name: "ID_Einst_TRErhmax_akt", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "K", since: "", until: "", description: "" @@ -995,8 +1085,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWEFreig_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1006,8 +1097,9 @@ window.PARAMETER = [ name: "ID_Einst_TAmax_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1017,8 +1109,9 @@ window.PARAMETER = [ name: "ID_Einst_TAmin_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1028,8 +1121,9 @@ window.PARAMETER = [ name: "ID_Einst_TWQmin_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1039,8 +1133,9 @@ window.PARAMETER = [ name: "ID_Einst_THGmax_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1050,8 +1145,9 @@ window.PARAMETER = [ name: "ID_Einst_FRGT2VD_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1061,8 +1157,9 @@ window.PARAMETER = [ name: "ID_Einst_TV2VDBW_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -1072,8 +1169,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1083,8 +1181,9 @@ window.PARAMETER = [ name: "ID_Einst_TAbtEnd_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1094,8 +1193,9 @@ window.PARAMETER = [ name: "ID_Einst_NrKlingel_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1105,8 +1205,9 @@ window.PARAMETER = [ name: "ID_Einst_BWStyp_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1116,8 +1217,9 @@ window.PARAMETER = [ name: "ID_Einst_ABT2_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1127,8 +1229,9 @@ window.PARAMETER = [ name: "ID_Einst_UeVd_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1138,8 +1241,9 @@ window.PARAMETER = [ name: "ID_Einst_RTyp_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1149,8 +1253,9 @@ window.PARAMETER = [ name: "ID_Einst_AhpM_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1160,8 +1265,9 @@ window.PARAMETER = [ name: "ID_Soll_BWS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1171,8 +1277,9 @@ window.PARAMETER = [ name: "ID_Timer_Password", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1182,8 +1289,9 @@ window.PARAMETER = [ name: "ID_Einst_Zugangscode", lsb: 0, width: 32, - fieldtype: "AccessLevel", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nuser\nafter sales service\nmanufacturer\ninstaller" @@ -1193,8 +1301,9 @@ window.PARAMETER = [ name: "ID_Einst_BA_Kuehl_akt", lsb: 0, width: 32, - fieldtype: "CoolingMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nOff\nAutomatic" @@ -1204,8 +1313,9 @@ window.PARAMETER = [ name: "ID_Sollwert_Kuehl1_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1215,8 +1325,9 @@ window.PARAMETER = [ name: "ID_Einst_KuehlFreig_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1226,8 +1337,9 @@ window.PARAMETER = [ name: "ID_Einst_TAbsMin_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1237,8 +1349,9 @@ window.PARAMETER = [ name: "ID_TWQmin_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1248,8 +1361,9 @@ window.PARAMETER = [ name: "ID_CWP_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1259,8 +1373,9 @@ window.PARAMETER = [ name: "ID_Einst_Anode_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1270,8 +1385,9 @@ window.PARAMETER = [ name: "ID_Timer_pexoff_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1281,8 +1397,9 @@ window.PARAMETER = [ name: "ID_Einst_AnlPrio_Hzakt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1292,8 +1409,9 @@ window.PARAMETER = [ name: "ID_Einst_AnlPrio_Bwakt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1303,8 +1421,9 @@ window.PARAMETER = [ name: "ID_Einst_AnlPrio_Swakt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1314,8 +1433,9 @@ window.PARAMETER = [ name: "ID_Ba_Sw_akt", lsb: 0, width: 32, - fieldtype: "PoolMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" @@ -1325,8 +1445,9 @@ window.PARAMETER = [ name: "ID_Einst_RTypMK1_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1336,8 +1457,9 @@ window.PARAMETER = [ name: "ID_Einst_RTypMK2_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1347,8 +1469,9 @@ window.PARAMETER = [ name: "ID_Einst_TDC_Ein_akt", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -1358,8 +1481,9 @@ window.PARAMETER = [ name: "ID_Einst_TDC_Aus_akt", lsb: 0, width: 32, - fieldtype: "Kelvin", - writeable: "no", + class: "temperature", + writeable: "", + unit: "K", since: "", until: "", description: "" @@ -1369,8 +1493,9 @@ window.PARAMETER = [ name: "ID_Einst_TDC_Max_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1380,8 +1505,9 @@ window.PARAMETER = [ name: "ID_Einst_HysHzExEn_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1391,8 +1517,9 @@ window.PARAMETER = [ name: "ID_Einst_HysBwExEn_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1402,8 +1529,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE3Art_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1413,8 +1541,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE3Fkt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1424,8 +1553,9 @@ window.PARAMETER = [ name: "ID_Einst_HzSup_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1435,8 +1565,9 @@ window.PARAMETER = [ name: "ID_Einst_MK2Typ_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1446,8 +1577,9 @@ window.PARAMETER = [ name: "ID_Einst_KuTyp_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1457,8 +1589,9 @@ window.PARAMETER = [ name: "ID_Sollwert_KuCft1_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1468,8 +1601,9 @@ window.PARAMETER = [ name: "ID_Sollwert_KuCft2_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1479,8 +1613,9 @@ window.PARAMETER = [ name: "ID_Sollwert_AtDif1_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1490,8 +1625,9 @@ window.PARAMETER = [ name: "ID_Sollwert_AtDif2_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1501,8 +1637,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdSwb", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1512,8 +1649,9 @@ window.PARAMETER = [ name: "ID_Einst_SwbBer_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1523,8 +1661,9 @@ window.PARAMETER = [ name: "ID_Einst_TV2VDSWB_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1534,8 +1673,9 @@ window.PARAMETER = [ name: "ID_Einst_MinSwan_Time_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1545,8 +1685,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1556,8 +1697,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK2E_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1567,8 +1709,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK2ANH_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1578,8 +1721,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK2ABS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -1589,8 +1733,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK2Hgr_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1600,8 +1745,9 @@ window.PARAMETER = [ name: "ID_Einst_HzFtMK2Vl_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1611,8 +1757,9 @@ window.PARAMETER = [ name: "ID_Temp_THG_BwHD_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1622,8 +1769,9 @@ window.PARAMETER = [ name: "ID_Temp_TA_BwHD_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1633,8 +1781,9 @@ window.PARAMETER = [ name: "ID_Einst_BwHup_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1644,8 +1793,9 @@ window.PARAMETER = [ name: "ID_Einst_TVLmax_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1655,8 +1805,9 @@ window.PARAMETER = [ name: "ID_Einst_MK1LzFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1666,8 +1817,9 @@ window.PARAMETER = [ name: "ID_Einst_MK2LzFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1677,8 +1829,9 @@ window.PARAMETER = [ name: "ID_Einst_MK1PerFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1688,8 +1841,9 @@ window.PARAMETER = [ name: "ID_Einst_MK2PerFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1699,8 +1853,9 @@ window.PARAMETER = [ name: "ID_Entl_Zyklus_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1710,8 +1865,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_time_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1721,8 +1877,9 @@ window.PARAMETER = [ name: "ID_Entl_Pause", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1732,8 +1889,9 @@ window.PARAMETER = [ name: "ID_Entl_timer", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1743,8 +1901,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1754,8 +1913,9 @@ window.PARAMETER = [ name: "ID_Ahz_HLeist_confirmed", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1765,8 +1925,9 @@ window.PARAMETER = [ name: "ID_FirstInit_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1776,8 +1937,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll_akt2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1787,8 +1949,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_0_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1798,8 +1961,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_0_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1809,8 +1973,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_1_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1820,8 +1985,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_1_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1831,8 +1997,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_2_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1842,8 +2009,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllWo_zeit_2_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1853,8 +2021,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_0_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1864,8 +2033,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_0_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1875,8 +2045,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_1_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1886,8 +2057,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_1_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1897,8 +2069,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_2_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1908,8 +2081,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_2_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1919,8 +2093,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_0_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1930,8 +2105,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_0_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1941,8 +2117,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_1_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1952,8 +2129,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_1_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1963,8 +2141,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_2_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1974,8 +2153,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAll25_zeit_2_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1985,8 +2165,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1996,8 +2177,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2007,8 +2189,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2018,8 +2201,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2029,8 +2213,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2040,8 +2225,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2051,8 +2237,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2062,8 +2249,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2073,8 +2261,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2084,8 +2273,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2095,8 +2285,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2106,8 +2297,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2117,8 +2309,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2128,8 +2321,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2139,8 +2333,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2150,8 +2345,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2161,8 +2357,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2172,8 +2369,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2183,8 +2381,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2194,8 +2393,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2205,8 +2405,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2216,8 +2417,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2227,8 +2429,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2238,8 +2441,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2249,8 +2453,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2260,8 +2465,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2271,8 +2477,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2282,8 +2489,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2293,8 +2501,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2304,8 +2513,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2315,8 +2525,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2326,8 +2537,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_11", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2337,8 +2549,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2348,8 +2561,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_11", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2359,8 +2573,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2370,8 +2585,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_11", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2381,8 +2597,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_12", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2392,8 +2609,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_0_13", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2403,8 +2621,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_12", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2414,8 +2633,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_1_13", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2425,8 +2645,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_12", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2436,8 +2657,9 @@ window.PARAMETER = [ name: "ID_Einst_SuAllTg_zeit_2_13", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2447,8 +2669,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr_akt", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nweek\n5+2\ndays" @@ -2458,8 +2681,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2469,8 +2693,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2480,8 +2705,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2491,8 +2717,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2502,8 +2729,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2513,8 +2741,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrW0_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2524,8 +2753,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2535,8 +2765,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2546,8 +2777,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2557,8 +2789,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2568,8 +2801,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2579,8 +2813,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2590,8 +2825,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2601,8 +2837,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2612,8 +2849,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2623,8 +2861,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2634,8 +2873,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2645,8 +2885,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkr25_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2656,8 +2897,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2667,8 +2909,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2678,8 +2921,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2689,8 +2933,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2700,8 +2945,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2711,8 +2957,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2722,8 +2969,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2733,8 +2981,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2744,8 +2993,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2755,8 +3005,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2766,8 +3017,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2777,8 +3029,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2788,8 +3041,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2799,8 +3053,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2810,8 +3065,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2821,8 +3077,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2832,8 +3089,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2843,8 +3101,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2854,8 +3113,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2865,8 +3125,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2876,8 +3137,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2887,8 +3149,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2898,8 +3161,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2909,8 +3173,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2920,8 +3185,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2931,8 +3197,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2942,8 +3209,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2953,8 +3221,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2964,8 +3233,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2975,8 +3245,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2986,8 +3257,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -2997,8 +3269,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3008,8 +3281,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3019,8 +3293,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3030,8 +3305,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3041,8 +3317,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3052,8 +3329,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3063,8 +3341,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3074,8 +3353,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3085,8 +3365,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3096,8 +3377,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3107,8 +3389,9 @@ window.PARAMETER = [ name: "ID_Einst_SuHkrTG_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -3118,19 +3401,21 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1_akt", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 284, name: "ID_Einst_SuMk1W0_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3140,8 +3425,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1W0_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3151,8 +3437,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1W0_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3162,8 +3449,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1W0_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3173,8 +3461,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1W0_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3184,8 +3473,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1W0_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3195,8 +3485,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3206,8 +3497,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3217,8 +3509,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3228,8 +3521,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3239,8 +3533,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3250,8 +3545,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3261,8 +3557,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3272,8 +3569,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3283,8 +3581,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3294,8 +3593,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3305,8 +3605,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3316,8 +3617,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk125_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3327,8 +3629,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3338,8 +3641,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3349,8 +3653,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3360,8 +3665,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3371,8 +3677,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3382,8 +3689,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3393,8 +3701,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3404,8 +3713,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3415,8 +3725,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3426,8 +3737,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3437,8 +3749,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3448,8 +3761,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3459,8 +3773,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3470,8 +3785,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3481,8 +3797,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3492,8 +3809,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3503,8 +3821,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3514,8 +3833,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3525,8 +3845,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3536,8 +3857,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3547,8 +3869,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3558,8 +3881,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3569,8 +3893,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3580,8 +3905,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3591,8 +3917,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3602,8 +3929,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3613,8 +3941,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3624,8 +3953,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3635,8 +3965,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3646,8 +3977,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3657,8 +3989,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3668,8 +4001,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3679,8 +4013,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3690,8 +4025,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3701,8 +4037,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3712,8 +4049,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3723,8 +4061,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3734,8 +4073,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3745,8 +4085,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3756,8 +4097,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3767,8 +4109,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3778,8 +4121,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk1TG_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3789,19 +4133,21 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2_akt2", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 345, name: "ID_Einst_SuMk2Wo_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3811,8 +4157,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Wo_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3822,8 +4169,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Wo_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3833,8 +4181,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Wo_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3844,8 +4193,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Wo_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3855,8 +4205,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Wo_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3866,8 +4217,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3877,8 +4229,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3888,8 +4241,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3899,8 +4253,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3910,8 +4265,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3921,8 +4277,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3932,8 +4289,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3943,8 +4301,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3954,8 +4313,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3965,8 +4325,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3976,8 +4337,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3987,8 +4349,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk225_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3998,8 +4361,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4009,8 +4373,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4020,8 +4385,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4031,8 +4397,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4042,8 +4409,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4053,8 +4421,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4064,8 +4433,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4075,8 +4445,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4086,8 +4457,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4097,8 +4469,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4108,8 +4481,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4119,8 +4493,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4130,8 +4505,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4141,8 +4517,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4152,8 +4529,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4163,8 +4541,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4174,8 +4553,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4185,8 +4565,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4196,8 +4577,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4207,8 +4589,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4218,8 +4601,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4229,8 +4613,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4240,8 +4625,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4251,8 +4637,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4262,8 +4649,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4273,8 +4661,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4284,8 +4673,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4295,8 +4685,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4306,8 +4697,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4317,8 +4709,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4328,8 +4721,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4339,8 +4733,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4350,8 +4745,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4361,8 +4757,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4372,8 +4769,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4383,8 +4781,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4394,8 +4793,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4405,8 +4805,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4416,8 +4817,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4427,8 +4829,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4438,8 +4841,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4449,8 +4853,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk2Tg_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4460,8 +4865,9 @@ window.PARAMETER = [ name: "ID_Einst_SUBW_akt2", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nweek\n5+2\ndays" @@ -4471,8 +4877,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4482,8 +4889,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4493,8 +4901,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4504,8 +4913,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4515,8 +4925,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4526,8 +4937,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4537,8 +4949,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4548,8 +4961,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4559,8 +4973,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4570,8 +4985,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwWO_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4581,8 +4997,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4592,8 +5009,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4603,8 +5021,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4614,8 +5033,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4625,8 +5045,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4636,8 +5057,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4647,8 +5069,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4658,8 +5081,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4669,8 +5093,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4680,8 +5105,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4691,8 +5117,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4702,8 +5129,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4713,8 +5141,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4724,8 +5153,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4735,8 +5165,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4746,8 +5177,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4757,8 +5189,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_3_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4768,8 +5201,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_3_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4779,8 +5213,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_4_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4790,8 +5225,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBw25_zeit_4_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4801,8 +5237,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4812,8 +5249,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4823,8 +5261,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4834,8 +5273,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4845,8 +5285,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4856,8 +5297,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4867,8 +5309,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4878,8 +5321,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4889,8 +5333,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4900,8 +5345,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4911,8 +5357,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4922,8 +5369,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4933,8 +5381,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4944,8 +5393,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4955,8 +5405,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4966,8 +5417,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4977,8 +5429,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4988,8 +5441,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -4999,8 +5453,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5010,8 +5465,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5021,8 +5477,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5032,8 +5489,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5043,8 +5501,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5054,8 +5513,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5065,8 +5525,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5076,8 +5537,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5087,8 +5549,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5098,8 +5561,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5109,8 +5573,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5120,8 +5585,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5131,8 +5597,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5142,8 +5609,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5153,8 +5621,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5164,8 +5633,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5175,8 +5645,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5186,8 +5657,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5197,8 +5669,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5208,8 +5681,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5219,8 +5693,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5230,8 +5705,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5241,8 +5717,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5252,8 +5729,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5263,8 +5741,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5274,8 +5753,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5285,8 +5765,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5296,8 +5777,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5307,8 +5789,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5318,8 +5801,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5329,8 +5813,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5340,8 +5825,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5351,8 +5837,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5362,8 +5849,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5373,8 +5861,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5384,8 +5873,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5395,8 +5885,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5406,8 +5897,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5417,8 +5909,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5428,8 +5921,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5439,8 +5933,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5450,8 +5945,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5461,8 +5957,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5472,8 +5969,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5483,8 +5981,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5494,8 +5993,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5505,8 +6005,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5516,8 +6017,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5527,8 +6029,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5538,8 +6041,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_3_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5549,8 +6053,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5560,8 +6065,9 @@ window.PARAMETER = [ name: "ID_Einst_SuBwTG_zeit_4_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5571,8 +6077,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP_akt", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nweek\n5+2\ndays" @@ -5582,8 +6089,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5593,8 +6101,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5604,8 +6113,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5615,8 +6125,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5626,8 +6137,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5637,8 +6149,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5648,8 +6161,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5659,8 +6173,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5670,8 +6185,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5681,8 +6197,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPWo_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5692,8 +6209,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5703,8 +6221,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5714,8 +6233,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5725,8 +6245,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5736,8 +6257,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5747,8 +6269,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5758,8 +6281,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5769,8 +6293,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5780,8 +6305,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5791,8 +6317,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5802,8 +6329,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5813,8 +6341,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5824,8 +6353,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5835,8 +6365,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5846,8 +6377,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5857,8 +6389,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5868,8 +6401,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_3_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5879,8 +6413,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_3_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5890,8 +6425,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_4_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5901,8 +6437,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIP25_zeit_4_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5912,8 +6449,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5923,8 +6461,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5934,8 +6473,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5945,8 +6485,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5956,8 +6497,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5967,8 +6509,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5978,8 +6521,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -5989,8 +6533,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6000,8 +6545,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6011,8 +6557,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6022,8 +6569,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6033,8 +6581,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6044,8 +6593,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6055,8 +6605,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6066,8 +6617,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6077,8 +6629,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6088,8 +6641,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6099,8 +6653,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6110,8 +6665,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6121,8 +6677,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6132,8 +6689,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6143,8 +6701,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6154,8 +6713,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6165,8 +6725,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6176,8 +6737,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6187,8 +6749,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6198,8 +6761,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6209,8 +6773,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6220,8 +6785,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6231,8 +6797,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6242,8 +6809,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6253,8 +6821,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6264,8 +6833,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6275,8 +6845,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6286,8 +6857,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6297,8 +6869,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6308,8 +6881,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6319,8 +6893,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6330,8 +6905,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6341,8 +6917,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6352,8 +6929,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6363,8 +6941,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6374,8 +6953,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6385,8 +6965,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6396,8 +6977,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6407,8 +6989,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6418,8 +7001,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6429,8 +7013,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6440,8 +7025,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6451,8 +7037,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6462,8 +7049,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6473,8 +7061,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6484,8 +7073,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6495,8 +7085,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6506,8 +7097,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6517,8 +7109,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6528,8 +7121,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6539,8 +7133,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6550,8 +7145,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6561,8 +7157,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6572,8 +7169,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6583,8 +7181,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6594,8 +7193,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6605,8 +7205,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6616,8 +7217,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6627,8 +7229,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6638,8 +7241,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6649,8 +7253,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_3_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6660,8 +7265,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6671,8 +7277,9 @@ window.PARAMETER = [ name: "ID_Einst_SuZIPTg_zeit_4_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "yes", + class: "timeofday", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -6682,19 +7289,21 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb_akt", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 608, name: "ID_Einst_SuSwbWo_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6704,8 +7313,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbWo_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6715,8 +7325,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbWo_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6726,8 +7337,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbWo_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6737,8 +7349,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbWo_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6748,8 +7361,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbWo_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6759,8 +7373,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6770,8 +7385,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6781,8 +7397,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6792,8 +7409,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6803,8 +7421,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6814,8 +7433,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6825,8 +7445,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6836,8 +7457,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6847,8 +7469,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6858,8 +7481,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6869,8 +7493,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6880,8 +7505,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwb25_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6891,8 +7517,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6902,8 +7529,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6913,8 +7541,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6924,8 +7553,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6935,8 +7565,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6946,8 +7577,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6957,8 +7589,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6968,8 +7601,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6979,8 +7613,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -6990,8 +7625,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7001,8 +7637,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7012,8 +7649,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7023,8 +7661,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7034,8 +7673,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7045,8 +7685,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7056,8 +7697,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7067,8 +7709,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7078,8 +7721,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7089,8 +7733,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7100,8 +7745,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7111,8 +7757,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7122,8 +7769,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7133,8 +7781,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7144,8 +7793,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7155,8 +7805,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7166,8 +7817,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7177,8 +7829,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7188,8 +7841,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7199,8 +7853,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7210,8 +7865,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7221,8 +7877,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7232,8 +7889,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7243,8 +7901,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7254,8 +7913,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7265,8 +7925,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7276,8 +7937,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7287,8 +7949,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7298,8 +7961,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7309,8 +7973,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7320,8 +7985,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7331,8 +7997,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7342,8 +8009,9 @@ window.PARAMETER = [ name: "ID_Einst_SuSwbTg_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7353,8 +8021,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitWP", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7364,8 +8033,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitVD1", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7375,8 +8045,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitVD2", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7386,8 +8057,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitZWE1", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7397,8 +8069,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitZWE2", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7408,8 +8081,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitZWE3", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -7419,8 +8093,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitImpVD1", lsb: 0, width: 32, - fieldtype: "Count", - writeable: "no", + class: "count", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7430,8 +8105,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitImpVD2", lsb: 0, width: 32, - fieldtype: "Count", - writeable: "no", + class: "count", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7441,8 +8117,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitEZMVD1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7452,8 +8129,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitEZMVD2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7463,8 +8141,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7474,8 +8153,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7485,8 +8165,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7496,8 +8177,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7507,8 +8189,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7518,8 +8201,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7529,8 +8213,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7540,8 +8225,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7551,8 +8237,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7562,8 +8249,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7573,8 +8261,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7584,8 +8273,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_11", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7595,8 +8285,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_12", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7606,8 +8297,9 @@ window.PARAMETER = [ name: "ID_Einst_Vorl_max_MK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7617,8 +8309,9 @@ window.PARAMETER = [ name: "ID_Einst_Vorl_max_MK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7628,8 +8321,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7639,8 +8333,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7650,30 +8345,33 @@ window.PARAMETER = [ name: "ID_Ba_Hz_MK1_akt", lsb: 0, width: 32, - fieldtype: "MixedCircuitMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + description: "" },{ category: "parameter", index: 696, name: "ID_Ba_Hz_MK2_akt", lsb: 0, width: 32, - fieldtype: "MixedCircuitMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" + description: "" },{ category: "parameter", index: 697, name: "ID_Einst_Zirk_Ein_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7683,8 +8381,9 @@ window.PARAMETER = [ name: "ID_Einst_Zirk_Aus_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7694,8 +8393,9 @@ window.PARAMETER = [ name: "ID_Einst_Heizgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7705,8 +8405,9 @@ window.PARAMETER = [ name: "ID_Einst_Heizgrenze_Temp", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -7716,8 +8417,9 @@ window.PARAMETER = [ name: "ID_VariablenIBNgespeichert", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7727,8 +8429,9 @@ window.PARAMETER = [ name: "ID_SchonIBNAssistant", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7738,8 +8441,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7749,8 +8453,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7760,8 +8465,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7771,8 +8477,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7782,8 +8489,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7793,8 +8501,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7804,8 +8513,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_6", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7815,8 +8525,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_7", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7826,8 +8537,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_8", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7837,8 +8549,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_9", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7848,8 +8561,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_10", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7859,8 +8573,9 @@ window.PARAMETER = [ name: "ID_Heizgrenze_11", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7870,8 +8585,9 @@ window.PARAMETER = [ name: "ID_SchemenIBNgewahlt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7881,8 +8597,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_0_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7892,8 +8609,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_1_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7903,8 +8621,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_2_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7914,8 +8633,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_3_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7925,8 +8645,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_4_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7936,8 +8657,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_0_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7947,8 +8669,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_1_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7958,8 +8681,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_2_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7969,8 +8693,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_3_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7980,8 +8705,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_4_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -7991,8 +8717,9 @@ window.PARAMETER = [ name: "ID_DauerDatenLoggerAktiv", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8002,8 +8729,9 @@ window.PARAMETER = [ name: "ID_Laufvar_Heizgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8013,8 +8741,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitHz", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -8024,8 +8753,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitBW", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -8035,8 +8765,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitKue", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -8046,8 +8777,9 @@ window.PARAMETER = [ name: "ID_SU_FstdHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8057,8 +8789,9 @@ window.PARAMETER = [ name: "ID_SU_FstdBw", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8068,8 +8801,9 @@ window.PARAMETER = [ name: "ID_SU_FstdSwb", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8079,8 +8813,9 @@ window.PARAMETER = [ name: "ID_SU_FstdMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8090,8 +8825,9 @@ window.PARAMETER = [ name: "ID_SU_FstdMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8101,8 +8837,9 @@ window.PARAMETER = [ name: "ID_FerienAbsenkungHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8112,8 +8849,9 @@ window.PARAMETER = [ name: "ID_FerienAbsenkungMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8123,8 +8861,9 @@ window.PARAMETER = [ name: "ID_FerienAbsenkungMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8134,8 +8873,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8145,8 +8885,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivBw", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8156,8 +8897,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivSwb", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8167,8 +8909,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivMk1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8178,8 +8921,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivMk2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8189,8 +8933,9 @@ window.PARAMETER = [ name: "ID_DisplayContrast_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8200,8 +8945,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8211,8 +8957,9 @@ window.PARAMETER = [ name: "ID_Ba_Bw_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8222,8 +8969,9 @@ window.PARAMETER = [ name: "ID_Ba_Sw_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8233,8 +8981,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_MK1_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8244,8 +8993,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_MK2_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8255,8 +9005,9 @@ window.PARAMETER = [ name: "ID_AdresseIP_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8266,8 +9017,9 @@ window.PARAMETER = [ name: "ID_SubNetMask_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8277,8 +9029,9 @@ window.PARAMETER = [ name: "ID_Add_Broadcast_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8288,8 +9041,9 @@ window.PARAMETER = [ name: "ID_Add_StdGateway_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8299,8 +9053,9 @@ window.PARAMETER = [ name: "ID_DHCPServerAktiv_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8310,8 +9065,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_1_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8321,8 +9077,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_2_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8332,8 +9089,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_3_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8343,8 +9101,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_4_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8354,8 +9113,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_5_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8365,8 +9125,9 @@ window.PARAMETER = [ name: "ID_WebserverPasswort_6_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8376,8 +9137,9 @@ window.PARAMETER = [ name: "ID_WebServerWerteBekommen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8387,8 +9149,9 @@ window.PARAMETER = [ name: "ID_Einst_ParBetr_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8398,8 +9161,9 @@ window.PARAMETER = [ name: "ID_Einst_WpAnz_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8409,8 +9173,9 @@ window.PARAMETER = [ name: "ID_Einst_PhrTime_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8420,8 +9185,9 @@ window.PARAMETER = [ name: "ID_Einst_HysPar_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8431,8 +9197,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8442,8 +9209,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8453,8 +9221,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8464,8 +9233,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8475,8 +9245,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8486,8 +9257,9 @@ window.PARAMETER = [ name: "ID_IP_PB_Slave_5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8497,8 +9269,9 @@ window.PARAMETER = [ name: "ID_Einst_BwHup_akt_backup", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8508,8 +9281,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8519,8 +9293,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK3E_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -8530,8 +9305,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK3ANH_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -8541,8 +9317,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK3ABS_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -8552,8 +9329,9 @@ window.PARAMETER = [ name: "ID_Einst_HzMK3Hgr_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8563,8 +9341,9 @@ window.PARAMETER = [ name: "ID_Einst_HzFtMK3Vl_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8574,8 +9353,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_MK3_akt", lsb: 0, width: 32, - fieldtype: "MixedCircuitMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" @@ -8585,8 +9365,9 @@ window.PARAMETER = [ name: "ID_Einst_MK3Typ_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8596,8 +9377,9 @@ window.PARAMETER = [ name: "ID_Einst_RTypMK3_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8607,8 +9389,9 @@ window.PARAMETER = [ name: "ID_Einst_MK3LzFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8618,8 +9401,9 @@ window.PARAMETER = [ name: "ID_Einst_MK3PerFaktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8629,8 +9413,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivMk3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8640,8 +9425,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8651,8 +9437,9 @@ window.PARAMETER = [ name: "ID_FerienAbsenkungMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8662,8 +9449,9 @@ window.PARAMETER = [ name: "ID_SU_FstdMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8673,19 +9461,21 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3_akt2", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 789, name: "ID_Einst_SuMk3Wo_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8695,8 +9485,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Wo_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8706,8 +9497,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Wo_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8717,8 +9509,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Wo_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8728,8 +9521,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Wo_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8739,8 +9533,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Wo_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8750,8 +9545,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8761,8 +9557,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8772,8 +9569,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8783,8 +9581,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8794,8 +9593,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8805,8 +9605,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8816,8 +9617,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8827,8 +9629,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8838,8 +9641,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8849,8 +9653,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8860,8 +9665,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8871,8 +9677,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk325_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8882,8 +9689,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8893,8 +9701,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8904,8 +9713,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8915,8 +9725,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8926,8 +9737,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8937,8 +9749,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8948,8 +9761,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8959,8 +9773,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8970,8 +9785,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8981,8 +9797,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -8992,8 +9809,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9003,8 +9821,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9014,8 +9833,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9025,8 +9845,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9036,8 +9857,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9047,8 +9869,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9058,8 +9881,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9069,8 +9893,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9080,8 +9905,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9091,8 +9917,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9102,8 +9929,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9113,8 +9941,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9124,8 +9953,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9135,8 +9965,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9146,8 +9977,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9157,8 +9989,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9168,8 +10001,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9179,8 +10013,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9190,8 +10025,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9201,8 +10037,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9212,8 +10049,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9223,8 +10061,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9234,8 +10073,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9245,8 +10085,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9256,8 +10097,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9267,8 +10109,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9278,8 +10121,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9289,8 +10133,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_0_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9300,8 +10145,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9311,8 +10157,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_1_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9322,8 +10169,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9333,8 +10181,9 @@ window.PARAMETER = [ name: "ID_Einst_SuMk3Tg_zeit_2_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay", - writeable: "no", + class: "timeofday", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9344,8 +10193,9 @@ window.PARAMETER = [ name: "ID_Ba_Hz_MK3_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9355,8 +10205,9 @@ window.PARAMETER = [ name: "ID_Einst_Kuhl_Zeit_Ein_akt", lsb: 0, width: 32, - fieldtype: "Hours", - writeable: "yes", + class: "timespan", + writeable: "y", + unit: "h", since: "", until: "", description: "" @@ -9366,8 +10217,9 @@ window.PARAMETER = [ name: "ID_Einst_Kuhl_Zeit_Aus_akt", lsb: 0, width: 32, - fieldtype: "Hours", - writeable: "yes", + class: "timespan", + writeable: "y", + unit: "h", since: "", until: "", description: "" @@ -9377,8 +10229,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Seit", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -9388,8 +10241,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_WQ", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9399,8 +10253,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Hz", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -9410,8 +10265,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_WQ_ges", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9421,8 +10277,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_13", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9432,8 +10289,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_14", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9443,8 +10301,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_15", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9454,8 +10313,9 @@ window.PARAMETER = [ name: "ID_Zaehler_BetrZeitSW", lsb: 0, width: 32, - fieldtype: "Seconds", - writeable: "no", + class: "timespan", + writeable: "", + unit: "s", since: "", until: "", description: "" @@ -9465,8 +10325,9 @@ window.PARAMETER = [ name: "ID_Einst_Fernwartung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9476,8 +10337,9 @@ window.PARAMETER = [ name: "ID_AdresseIPServ_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9487,8 +10349,9 @@ window.PARAMETER = [ name: "ID_Einst_TA_EG_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9498,8 +10361,9 @@ window.PARAMETER = [ name: "ID_Einst_TVLmax_EG_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9509,8 +10373,9 @@ window.PARAMETER = [ name: "ID_Einst_Popt_Nachlauf_akt", lsb: 0, width: 32, - fieldtype: "Minutes", - writeable: "yes", + class: "timespan", + writeable: "y", + unit: "min", since: "", until: "", description: "" @@ -9520,8 +10385,9 @@ window.PARAMETER = [ name: "ID_FernwartungVertrag_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9531,8 +10397,9 @@ window.PARAMETER = [ name: "ID_FernwartungAktuZeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9542,8 +10409,9 @@ window.PARAMETER = [ name: "ID_Einst_Effizienzpumpe_Nominal_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9553,8 +10421,9 @@ window.PARAMETER = [ name: "ID_Einst_Effizienzpumpe_Minimal_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9564,8 +10433,9 @@ window.PARAMETER = [ name: "ID_Einst_Effizienzpumpe_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9575,8 +10445,9 @@ window.PARAMETER = [ name: "ID_Einst_Waermemenge_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9586,8 +10457,9 @@ window.PARAMETER = [ name: "ID_Einst_Wm_Versorgung_Korrektur_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9597,8 +10469,9 @@ window.PARAMETER = [ name: "ID_Einst_Wm_Auswertung_Korrektur_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9608,8 +10481,9 @@ window.PARAMETER = [ name: "ID_SoftwareUpdateJetztGemacht_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9619,8 +10493,9 @@ window.PARAMETER = [ name: "ID_WP_SerienNummer_DATUM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9630,8 +10505,9 @@ window.PARAMETER = [ name: "ID_WP_SerienNummer_HEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9641,8 +10517,9 @@ window.PARAMETER = [ name: "ID_WP_SerienNummer_INDEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9652,8 +10529,9 @@ window.PARAMETER = [ name: "ID_ProgWerteWebSrvBeobarten", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9663,8 +10541,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_BW", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -9674,8 +10553,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_SW", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -9685,8 +10565,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Datum", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9696,8 +10577,9 @@ window.PARAMETER = [ name: "ID_Einst_Solar_akt", lsb: 0, width: 32, - fieldtype: "SolarMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nSecond heatsource\nParty\nHolidays\nOff" @@ -9707,8 +10589,9 @@ window.PARAMETER = [ name: "ID_BSTD_Solar", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9718,8 +10601,9 @@ window.PARAMETER = [ name: "ID_Einst_TDC_Koll_Max_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "no", + class: "temperature", + writeable: "", + unit: "°C", since: "", until: "", description: "" @@ -9729,8 +10613,9 @@ window.PARAMETER = [ name: "ID_Einst_Akt_Kuehlung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9740,8 +10625,9 @@ window.PARAMETER = [ name: "ID_Einst_Vorlauf_VBO_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9751,8 +10637,9 @@ window.PARAMETER = [ name: "ID_Einst_KRHyst_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9762,8 +10649,9 @@ window.PARAMETER = [ name: "ID_Einst_Akt_Kuehl_Speicher_min_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9773,8 +10661,9 @@ window.PARAMETER = [ name: "ID_Einst_Akt_Kuehl_Freig_WQE_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9784,8 +10673,9 @@ window.PARAMETER = [ name: "ID_NDAB_WW_Anzahl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9795,8 +10685,9 @@ window.PARAMETER = [ name: "ID_NDS_WW_KD_Quitt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9806,8 +10697,9 @@ window.PARAMETER = [ name: "ID_Einst_AbtZykMin_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9817,8 +10709,9 @@ window.PARAMETER = [ name: "ID_Einst_VD2_Zeit_Min_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9828,8 +10721,9 @@ window.PARAMETER = [ name: "ID_Einst_Hysterese_HR_verkuerzt_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9839,8 +10733,9 @@ window.PARAMETER = [ name: "ID_Einst_BA_Lueftung_akt", lsb: 0, width: 32, - fieldtype: "VentilationMode", - writeable: "yes", + class: "selection", + writeable: "y", + unit: "", since: "", until: "", description: "\nUser-Options:\nAutomatic\nParty\nHolidays\nOff" @@ -9850,19 +10745,21 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf_akt", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 896, name: "ID_Einst_SuLufWo_zeit_0_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9872,8 +10769,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufWo_zeit_0_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9883,8 +10781,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufWo_zeit_0_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9894,8 +10793,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9905,8 +10805,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9916,8 +10817,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9927,8 +10829,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9938,8 +10841,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9949,8 +10853,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_0_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9960,8 +10865,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9971,8 +10877,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9982,8 +10889,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -9993,8 +10901,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10004,8 +10913,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10015,8 +10925,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10026,8 +10937,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10037,8 +10949,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10048,8 +10961,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10059,8 +10973,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10070,8 +10985,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10081,8 +10997,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10092,8 +11009,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10103,8 +11021,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10114,8 +11033,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10125,8 +11045,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10136,8 +11057,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10147,8 +11069,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10158,8 +11081,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10169,8 +11093,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10180,8 +11105,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_0_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10191,8 +11117,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufWo_zeit_1_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10202,8 +11129,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufWo_zeit_1_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10213,8 +11141,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufWo_zeit_1_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10224,8 +11153,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10235,8 +11165,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10246,8 +11177,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10257,8 +11189,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10268,8 +11201,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10279,8 +11213,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLuf25_zeit_1_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10290,8 +11225,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10301,8 +11237,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10312,8 +11249,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10323,8 +11261,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10334,8 +11273,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10345,8 +11285,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10356,8 +11297,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10367,8 +11309,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10378,8 +11321,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10389,8 +11333,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10400,8 +11345,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10411,8 +11357,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10422,8 +11369,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10433,8 +11381,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10444,8 +11393,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10455,8 +11405,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10466,8 +11417,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10477,8 +11429,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10488,8 +11441,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_0_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10499,8 +11453,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_1_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10510,8 +11465,9 @@ window.PARAMETER = [ name: "ID_Einst_SuLufTg_zeit_1_2_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10521,8 +11477,9 @@ window.PARAMETER = [ name: "ID_FerienModusAktivLueftung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10532,8 +11489,9 @@ window.PARAMETER = [ name: "ID_Einst_BA_Lueftung_saved", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10543,8 +11501,9 @@ window.PARAMETER = [ name: "ID_SU_FrkdLueftung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10554,8 +11513,9 @@ window.PARAMETER = [ name: "ID_SU_FstdLueftung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10565,8 +11525,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Feuchteschutz_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10576,8 +11537,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Reduziert_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10587,8 +11549,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Nennlueftung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10598,8 +11561,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Intensivlueftung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10609,8 +11573,9 @@ window.PARAMETER = [ name: "ID_Timer_Fil_4Makt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10620,8 +11585,9 @@ window.PARAMETER = [ name: "ID_Timer_Fil_WoAkt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10631,8 +11597,9 @@ window.PARAMETER = [ name: "ID_Sollwert_KuCft3_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -10642,8 +11609,9 @@ window.PARAMETER = [ name: "ID_Sollwert_AtDif3_akt", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -10653,8 +11621,9 @@ window.PARAMETER = [ name: "ID_Bitmaske_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10664,8 +11633,9 @@ window.PARAMETER = [ name: "ID_Einst_Lueftungsstufen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10675,8 +11645,9 @@ window.PARAMETER = [ name: "ID_SysEin_Meldung_TDI", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10686,8 +11657,9 @@ window.PARAMETER = [ name: "ID_SysEin_Typ_WZW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10697,8 +11669,9 @@ window.PARAMETER = [ name: "ID_Einst_GLT_aktiviert", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10708,8 +11681,9 @@ window.PARAMETER = [ name: "ID_Einst_BW_max", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10719,8 +11693,9 @@ window.PARAMETER = [ name: "ID_Einst_Sollwert_TRL_Kuehlen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10730,8 +11705,9 @@ window.PARAMETER = [ name: "ID_Einst_Medium_Waermequelle", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10741,8 +11717,9 @@ window.PARAMETER = [ name: "ID_Einst_Photovoltaik_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10752,8 +11729,9 @@ window.PARAMETER = [ name: "ID_Einst_Multispeicher_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10763,8 +11741,9 @@ window.PARAMETER = [ name: "ID_Einst_PKuehlTime_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10774,8 +11753,9 @@ window.PARAMETER = [ name: "ID_Einst_Minimale_Ruecklaufsolltemperatur", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -10785,8 +11765,9 @@ window.PARAMETER = [ name: "ID_RBE_Einflussfaktor_RT_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10796,8 +11777,9 @@ window.PARAMETER = [ name: "ID_RBE_Freigabe_Kuehlung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10807,8 +11789,9 @@ window.PARAMETER = [ name: "ID_RBE_Waermeverteilsystem_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10818,8 +11801,9 @@ window.PARAMETER = [ name: "ID_RBE_Zeit_Heizstab_aktiv", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10829,8 +11813,9 @@ window.PARAMETER = [ name: "ID_SEC_ND_Alarmgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10840,8 +11825,9 @@ window.PARAMETER = [ name: "ID_SEC_HD_Alarmgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10851,8 +11837,9 @@ window.PARAMETER = [ name: "ID_SEC_Abtauendtemperatur", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10862,8 +11849,9 @@ window.PARAMETER = [ name: "ID_Einst_Min_RPM_BW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10873,8 +11861,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Feuchteschutz_Faktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10884,8 +11873,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Reduziert_Faktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10895,8 +11885,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Nennlueftung_Faktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10906,8 +11897,9 @@ window.PARAMETER = [ name: "ID_Einst_Luf_Intensivlueftung_Faktor_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10917,8 +11909,9 @@ window.PARAMETER = [ name: "ID_Einst_Freigabe_Zeit_ZWE", lsb: 0, width: 32, - fieldtype: "Minutes", - writeable: "yes", + class: "timespan", + writeable: "y", + unit: "min", since: "", until: "", description: "" @@ -10928,8 +11921,9 @@ window.PARAMETER = [ name: "ID_Einst_min_VL_Kuehl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10939,8 +11933,9 @@ window.PARAMETER = [ name: "ID_Einst_Warmwasser_Nachheizung", lsb: 0, width: 32, - fieldtype: "Bool", - writeable: "yes", + class: "boolean", + writeable: "y", + unit: "", since: "", until: "", description: "" @@ -10950,8 +11945,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_0_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10961,8 +11957,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_1_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10972,8 +11969,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_2_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10983,8 +11981,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_3_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -10994,8 +11993,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_4_0", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11005,8 +12005,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_0_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11016,8 +12017,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_1_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11027,8 +12029,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_2_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11038,8 +12041,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_3_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11049,8 +12053,9 @@ window.PARAMETER = [ name: "ID_Switchoff_file_LWD2_4_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11060,8 +12065,9 @@ window.PARAMETER = [ name: "ID_Switchoff_index_LWD2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11071,8 +12077,9 @@ window.PARAMETER = [ name: "ID_Einst_Effizienzpumpe_Nominal_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11082,8 +12089,9 @@ window.PARAMETER = [ name: "ID_Einst_Effizienzpumpe_Minimal_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11093,8 +12101,9 @@ window.PARAMETER = [ name: "ID_Einst_Wm_Versorgung_Korrektur_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11104,8 +12113,9 @@ window.PARAMETER = [ name: "ID_Einst_Wm_Auswertung_Korrektur_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11115,8 +12125,9 @@ window.PARAMETER = [ name: "ID_Einst_isTwin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11126,8 +12137,9 @@ window.PARAMETER = [ name: "ID_Einst_TAmin_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11137,8 +12149,9 @@ window.PARAMETER = [ name: "ID_Einst_TVLmax_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11148,8 +12161,9 @@ window.PARAMETER = [ name: "ID_Einst_TA_EG_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11159,8 +12173,9 @@ window.PARAMETER = [ name: "ID_Einst_TVLmax_EG_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11170,8 +12185,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Hz_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11181,8 +12197,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_BW_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11192,8 +12209,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_SW_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11203,8 +12221,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Seit_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11214,8 +12233,9 @@ window.PARAMETER = [ name: "ID_Einst_Entl_Typ_15_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11225,8 +12245,9 @@ window.PARAMETER = [ name: "ID_Einst_WW_Nachheizung_max", lsb: 0, width: 32, - fieldtype: "Hours2", - writeable: "yes", + class: "timespan", + writeable: "y", + unit: "h", since: "", until: "", description: "" @@ -11236,8 +12257,9 @@ window.PARAMETER = [ name: "ID_Einst_Kuhl_Zeit_Ein_RT", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11247,8 +12269,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE1_Pos", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11258,8 +12281,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE2_Pos", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11269,8 +12293,9 @@ window.PARAMETER = [ name: "ID_Einst_ZWE3_Pos", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11280,8 +12305,9 @@ window.PARAMETER = [ name: "ID_Einst_Leistung_ZWE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11291,8 +12317,9 @@ window.PARAMETER = [ name: "ID_WP_SN2_DATUM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11302,8 +12329,9 @@ window.PARAMETER = [ name: "ID_WP_SN2_HEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11313,8 +12341,9 @@ window.PARAMETER = [ name: "ID_WP_SN2_INDEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11324,8 +12353,9 @@ window.PARAMETER = [ name: "ID_CWP_saved2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11335,8 +12365,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartGrid", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11346,8 +12377,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_HDS", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11357,8 +12389,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpHeat_Max", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11368,8 +12401,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpHeatCtrl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11379,8 +12413,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpDHWCtrl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11390,8 +12425,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpDHW_RPM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11401,8 +12437,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpPoolCtrl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11412,8 +12449,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpPool_RPM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11423,8 +12461,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpCool_RPM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11434,8 +12473,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpVBOCtrl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11445,8 +12485,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpVBO_RPM_C", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11456,8 +12497,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpDHW_Max", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11467,8 +12509,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_PumpPool_Max", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11478,8 +12521,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_Sperrband_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11489,8 +12533,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_Leistungsfreigabe", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11500,8 +12545,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_DHW_Freq", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11511,8 +12557,9 @@ window.PARAMETER = [ name: "ID_Einst_SWHUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11522,8 +12569,9 @@ window.PARAMETER = [ name: "ID_Einst_P155_SWB_Freq", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11533,8 +12581,9 @@ window.PARAMETER = [ name: "ID_Einst_MK1_Regelung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11544,8 +12593,9 @@ window.PARAMETER = [ name: "ID_Einst_MK2_Regelung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11555,8 +12605,9 @@ window.PARAMETER = [ name: "ID_Einst_MK3_Regelung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11566,8 +12617,9 @@ window.PARAMETER = [ name: "ID_Einst_PV_WW_Sperrzeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11577,8 +12629,9 @@ window.PARAMETER = [ name: "ID_Einst_Warmwasser_extra", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11588,8 +12641,9 @@ window.PARAMETER = [ name: "ID_Einst_Vorl_akt_Kuehl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11599,8 +12653,9 @@ window.PARAMETER = [ name: "ID_WP_SN3_DATUM", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11610,8 +12665,9 @@ window.PARAMETER = [ name: "ID_WP_SN3_HEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11621,8 +12677,9 @@ window.PARAMETER = [ name: "ID_WP_SN3_INDEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11632,8 +12689,9 @@ window.PARAMETER = [ name: "ID_Einst_Vorlauf_ZUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11643,8 +12701,9 @@ window.PARAMETER = [ name: "ID_Einst_Abtauen_im_Warmwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11654,8 +12713,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_ZWE", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -11665,8 +12725,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Reset", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -11676,8 +12737,9 @@ window.PARAMETER = [ name: "ID_Waermemenge_Reset_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11687,8 +12749,9 @@ window.PARAMETER = [ name: "ID_Einst_Brunnenpumpe_min", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11698,8 +12761,9 @@ window.PARAMETER = [ name: "ID_Einst_Brunnenpumpe_max", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11709,8 +12773,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartHomeID", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11720,8 +12785,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartHK", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11731,8 +12797,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11742,8 +12809,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11753,8 +12821,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11764,8 +12833,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartWW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11775,8 +12845,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartDefrost", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11786,8 +12857,9 @@ window.PARAMETER = [ name: "ID_Einst_Empty1071", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11797,8 +12869,9 @@ window.PARAMETER = [ name: "ID_Einst_MinVLMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11808,8 +12881,9 @@ window.PARAMETER = [ name: "ID_Einst_MinVLMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11819,8 +12893,9 @@ window.PARAMETER = [ name: "ID_Einst_MinVLMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11830,8 +12905,9 @@ window.PARAMETER = [ name: "ID_Einst_MaxVLMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11841,8 +12917,9 @@ window.PARAMETER = [ name: "ID_Einst_MaxVLMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11852,8 +12929,9 @@ window.PARAMETER = [ name: "ID_Einst_MaxVLMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11863,8 +12941,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartPlusHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11874,8 +12953,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMinusHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11885,8 +12965,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartPlusMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11896,8 +12977,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMinusMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11907,8 +12989,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartPlusMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11918,8 +13001,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMinusMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11929,8 +13013,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartPlusMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11940,8 +13025,9 @@ window.PARAMETER = [ name: "ID_Einst_SmartMinusMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11951,8 +13037,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1086", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11962,8 +13049,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1087", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11973,19 +13061,21 @@ window.PARAMETER = [ name: "SILENT_MODE", lsb: 0, width: 32, - fieldtype: "OnOffMode", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nOff\nOn" + description: "" },{ category: "parameter", index: 1088, name: "Unknown_Parameter_1088", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -11995,8 +13085,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1089", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12006,8 +13097,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1090", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12017,8 +13109,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1091", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12028,8 +13121,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1092", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12039,19 +13133,21 @@ window.PARAMETER = [ name: "ID_Einst_SuSilence", lsb: 0, width: 32, - fieldtype: "TimerProgram", - writeable: "no", + class: "selection", + writeable: "", + unit: "", since: "", until: "", - description: "\nUser-Options:\nweek\n5+2\ndays" + description: "" },{ category: "parameter", index: 1093, name: "Unknown_Parameter_1093", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12061,8 +13157,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_0", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12072,8 +13169,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1094", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12083,8 +13181,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_1", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12094,8 +13193,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1095", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12105,8 +13205,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_2", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12116,8 +13217,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1096", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12127,8 +13229,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_3", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12138,8 +13241,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1097", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12149,8 +13253,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_4", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12160,8 +13265,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1098", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12171,8 +13277,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_5", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12182,8 +13289,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1099", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12193,8 +13301,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_6", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12204,8 +13313,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1100", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12215,8 +13325,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_7", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12226,8 +13337,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1101", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12237,8 +13349,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_8", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12248,8 +13361,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1102", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12259,8 +13373,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_9", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12270,8 +13385,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1103", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12281,8 +13397,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_10", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12292,8 +13409,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1104", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12303,8 +13421,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_11", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12314,8 +13433,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1105", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12325,8 +13445,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_12", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12336,8 +13457,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1106", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12347,8 +13469,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_13", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12358,8 +13481,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1107", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12369,8 +13493,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_14", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12380,8 +13505,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1108", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12391,8 +13517,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_15", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12402,8 +13529,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1109", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12413,8 +13541,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_16", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12424,8 +13553,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1110", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12435,8 +13565,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_17", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12446,8 +13577,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1111", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12457,8 +13589,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_18", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12468,8 +13601,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1112", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12479,8 +13613,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_19", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12490,8 +13625,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1113", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12501,8 +13637,9 @@ window.PARAMETER = [ name: "ID_Einst_SilenceTimer_20", lsb: 0, width: 32, - fieldtype: "TimeOfDay2", - writeable: "no", + class: "timeofday2", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12512,8 +13649,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1114", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12523,8 +13661,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1115", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12534,8 +13673,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1116", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12545,8 +13685,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1117", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12556,8 +13697,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1118", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12567,8 +13709,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1119", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12578,8 +13721,9 @@ window.PARAMETER = [ name: "LAST_DEFROST_TIMESTAMP", lsb: 0, width: 32, - fieldtype: "Timestamp", - writeable: "no", + class: "timestamp", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12589,8 +13733,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1120", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12600,8 +13745,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1121", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12611,8 +13757,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1122", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12622,8 +13769,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1123", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12633,8 +13781,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1124", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12644,8 +13793,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1125", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12655,8 +13805,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1126", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12666,8 +13817,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1127", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12677,8 +13829,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1128", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12688,8 +13841,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1129", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12699,8 +13853,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1130", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12710,8 +13865,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1131", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12721,8 +13877,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1132", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12732,8 +13889,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1133", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12743,8 +13901,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1134", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12754,8 +13913,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1135", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12765,8 +13925,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1136", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12776,8 +13937,9 @@ window.PARAMETER = [ name: "HEAT_ENERGY_INPUT", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -12787,8 +13949,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1137", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12798,8 +13961,9 @@ window.PARAMETER = [ name: "DHW_ENERGY_INPUT", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -12809,8 +13973,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1138", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12820,8 +13985,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1139", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12831,8 +13997,9 @@ window.PARAMETER = [ name: "COOLING_ENERGY_INPUT", lsb: 0, width: 32, - fieldtype: "Energy", - writeable: "no", + class: "energy", + writeable: "", + unit: "kWh", since: "", until: "", description: "" @@ -12842,8 +14009,21 @@ window.PARAMETER = [ name: "SECOND_HEAT_GENERATOR_AMOUNT_COUNTER", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -12853,8 +14033,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1141", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12864,8 +14045,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1142", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12875,8 +14057,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1143", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12886,8 +14069,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1144", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12897,8 +14081,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1145", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12908,8 +14093,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1146", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12919,8 +14105,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1147", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12930,8 +14117,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1148", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12941,8 +14129,9 @@ window.PARAMETER = [ name: "HEATING_TARGET_TEMP_ROOM_THERMOSTAT", lsb: 0, width: 32, - fieldtype: "Celsius", - writeable: "yes", + class: "temperature", + writeable: "y", + unit: "°C", since: "", until: "", description: "" @@ -12952,8 +14141,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1149", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12963,8 +14153,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1150", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12974,8 +14165,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1151", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12985,8 +14177,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1152", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -12996,8 +14189,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1153", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13007,8 +14201,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1154", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13018,8 +14213,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1155", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13029,8 +14225,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1156", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13040,8 +14237,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1157", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13051,8 +14249,21 @@ window.PARAMETER = [ name: "POWER_LIMIT_SWITCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -13062,8 +14273,21 @@ window.PARAMETER = [ name: "POWER_LIMIT_VALUE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -13073,8 +14297,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1160", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13084,8 +14309,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1161", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13095,8 +14321,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1162", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13106,8 +14333,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1163", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13117,8 +14345,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1164", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13128,8 +14357,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1165", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13139,8 +14369,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1166", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13150,8 +14381,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1167", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13161,8 +14393,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1168", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13172,8 +14405,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1169", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13183,8 +14417,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1170", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13194,8 +14429,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1171", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13205,8 +14441,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1172", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13216,8 +14453,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1173", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13227,8 +14465,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1174", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13238,8 +14477,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1175", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13249,8 +14489,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1176", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13260,8 +14501,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1177", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13271,8 +14513,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1178", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13282,8 +14525,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1179", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13293,8 +14537,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1180", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13304,8 +14549,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1181", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13315,8 +14561,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1182", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13326,8 +14573,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1183", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13337,8 +14585,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1184", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13348,8 +14597,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1185", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13359,8 +14609,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1186", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13370,8 +14621,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1187", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13381,8 +14633,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1188", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13392,8 +14645,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1189", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13403,8 +14657,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1190", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13414,8 +14669,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1191", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13425,8 +14681,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1192", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13436,8 +14693,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1193", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13447,8 +14705,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1194", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13458,8 +14717,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1195", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13469,8 +14729,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1196", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13480,8 +14741,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1197", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -13491,8 +14753,9 @@ window.PARAMETER = [ name: "Unknown_Parameter_1198", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" diff --git a/docs/scripts.js b/docs/scripts.js index e1676b99..0a1b0746 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -18,7 +18,8 @@ function matchesFilters(item) { name: f_name.value.trim(), lsb: f_lsb.value.trim(), width: f_width.value.trim(), - fieldtype: f_fieldtype.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(), @@ -82,7 +83,8 @@ function renderTable() { - + + diff --git a/docs/visibility.js b/docs/visibility.js index 7608aea5..f0a1261e 100644 --- a/docs/visibility.js +++ b/docs/visibility.js @@ -5,8 +5,9 @@ window.VISIBILITY = [ name: "ID_Visi_NieAnzeigen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -16,8 +17,9 @@ window.VISIBILITY = [ name: "ID_Visi_ImmerAnzeigen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -27,8 +29,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -38,8 +41,9 @@ window.VISIBILITY = [ name: "ID_Visi_Brauwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -49,8 +53,9 @@ window.VISIBILITY = [ name: "ID_Visi_Schwimmbad", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -60,8 +65,9 @@ window.VISIBILITY = [ name: "ID_Visi_Kuhlung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -71,8 +77,9 @@ window.VISIBILITY = [ name: "ID_Visi_Lueftung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -82,8 +89,9 @@ window.VISIBILITY = [ name: "ID_Visi_MK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -93,8 +101,9 @@ window.VISIBILITY = [ name: "ID_Visi_MK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -104,8 +113,9 @@ window.VISIBILITY = [ name: "ID_Visi_ThermDesinfekt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -115,8 +125,9 @@ window.VISIBILITY = [ name: "ID_Visi_Zirkulation", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -126,8 +137,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_SolltempMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -137,8 +149,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_SolltempMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -148,8 +161,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_ATDiffMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -159,8 +173,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_ATDiffMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -170,8 +185,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Information", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -181,8 +197,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Einstellung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -192,8 +209,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Sprache", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -203,8 +221,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_DatumUhrzeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -214,8 +233,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Ausheiz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -225,8 +245,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Anlagenkonfiguration", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -236,8 +257,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_IBNAssistant", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -247,8 +269,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_ParameterIBNZuruck", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -258,8 +281,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Vorlauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -269,8 +293,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Rucklauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -280,8 +305,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_RL_Soll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -291,8 +317,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Ruecklext", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -302,8 +329,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Heissgas", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -313,8 +341,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Aussent", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -324,8 +353,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_BW_Ist", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -335,8 +365,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_BW_Soll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -346,8 +377,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_WQ_Ein", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -357,8 +389,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Kaltekreis", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -368,8 +401,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK1_Vorlauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -379,8 +413,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK1VL_Soll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -390,8 +425,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Raumstation", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -401,8 +437,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK2_Vorlauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -412,8 +449,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK2VL_Soll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -423,8 +461,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Solarkoll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -434,8 +473,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Solarsp", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -445,8 +485,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Ext_Energ", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -456,8 +497,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_ASD", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -467,8 +509,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_BWT", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -478,8 +521,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_EVU", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -489,8 +533,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_HD", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -500,8 +545,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_MOT", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -511,8 +557,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_ND", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -522,8 +569,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_PEX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -533,8 +581,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_SWT", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -544,8 +593,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Abtauventil", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -555,8 +605,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_BUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -566,8 +617,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_FUP1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -577,8 +629,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_HUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -588,8 +641,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer1Auf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -599,8 +653,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer1Zu", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -610,8 +665,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Ventilation", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -621,8 +677,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Ventil_BOSUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -632,8 +689,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Verdichter1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -643,8 +701,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Verdichter2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -654,8 +713,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_ZIP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -665,8 +725,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_ZUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -676,8 +737,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_ZWE1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -687,8 +749,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_ZWE2_SST", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -698,8 +761,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_ZWE3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -709,8 +773,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_FUP2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -720,8 +785,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_SLP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -731,8 +797,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_SUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -742,8 +809,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer2Auf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -753,8 +821,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer2Zu", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -764,8 +833,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_WP_Seit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -775,8 +845,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_ZWE1_seit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -786,8 +857,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_ZWE2_seit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -797,8 +869,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_ZWE3_seit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -808,8 +881,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_Netzeinv", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -819,8 +893,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_SSP_Zeit1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -830,8 +905,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_VD_Stand", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -841,8 +917,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_HRM_Zeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -852,8 +929,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_HRW_Zeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -863,8 +941,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_TDI_seit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -874,8 +953,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_Sperre_BW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -885,8 +965,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdVD1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -896,8 +977,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_ImpVD1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -907,8 +989,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_dEZVD1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -918,8 +1001,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdVD2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -929,8 +1013,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_ImpVD2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -940,8 +1025,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_dEZVD2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -951,8 +1037,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdZWE1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -962,8 +1049,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdZWE2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -973,8 +1061,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdZWE3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -984,8 +1073,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdWP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -995,8 +1085,9 @@ window.VISIBILITY = [ name: "ID_Visi_Text_Kurzprogramme", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1006,8 +1097,9 @@ window.VISIBILITY = [ name: "ID_Visi_Text_Zwangsheizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1017,8 +1109,9 @@ window.VISIBILITY = [ name: "ID_Visi_Text_Zwangsbrauchwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1028,8 +1121,9 @@ window.VISIBILITY = [ name: "ID_Visi_Text_Abtauen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1039,8 +1133,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_RucklBegr", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1050,8 +1145,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_HystereseHR", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1061,8 +1157,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TRErhmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1072,8 +1169,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Freig2VD", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1083,8 +1181,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_FreigZWE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1094,8 +1193,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Tluftabt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1105,8 +1205,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TDISolltemp", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1116,8 +1217,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_HystereseBW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1127,8 +1229,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Vorl2VDBW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1138,8 +1241,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TAussenmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1149,8 +1253,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TAussenmin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1160,8 +1265,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TWQmin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1171,8 +1277,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_THGmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1182,8 +1289,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TLABTEnde", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1193,8 +1301,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Absenkbis", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1204,8 +1313,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Vorlaufmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1215,8 +1325,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TDiffEin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1226,8 +1337,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TDiffAus", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1237,8 +1349,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TDiffmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1248,8 +1361,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TEEHeizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1259,8 +1373,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TEEBrauchw", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1270,8 +1385,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Vorl2VDSW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1281,8 +1397,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_VLMaxMk1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1292,8 +1409,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_VLMaxMk2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1303,8 +1421,9 @@ window.VISIBILITY = [ name: "ID_Visi_Priori_Brauchwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1314,8 +1433,9 @@ window.VISIBILITY = [ name: "ID_Visi_Priori_Heizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1325,8 +1445,9 @@ window.VISIBILITY = [ name: "ID_Visi_Priori_Schwimmbad", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1336,8 +1457,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_EVUSperre", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1347,8 +1469,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Raumstation", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1358,8 +1481,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Einbindung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1369,8 +1493,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Mischkreis1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1380,8 +1505,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Mischkreis2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1391,8 +1517,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE1Art", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1402,8 +1529,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE1Fkt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1413,8 +1541,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE2Art", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1424,8 +1553,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE2Fkt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1435,8 +1565,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE3Art", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1446,8 +1577,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ZWE3Fkt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1457,8 +1589,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Stoerung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1468,8 +1601,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Brauchwasser1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1479,8 +1613,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Brauchwasser2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1490,8 +1625,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Brauchwasser3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1501,8 +1637,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Brauchwasser4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1512,8 +1649,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Brauchwasser5", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1523,8 +1661,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_BWWPmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1534,8 +1673,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Abtzykmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1545,8 +1685,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Luftabt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1556,8 +1697,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_LuftAbtmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1567,8 +1709,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Abtauen1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1578,8 +1721,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Abtauen2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1589,8 +1733,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Pumpenoptim", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1600,8 +1745,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Zusatzpumpe", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1611,8 +1757,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Zugang", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1622,8 +1769,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_SoledrDurchf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1633,8 +1781,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_UberwachungVD", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1644,8 +1793,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_RegelungHK", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1655,8 +1805,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_RegelungMK1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1666,8 +1817,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_RegelungMK2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1677,8 +1829,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Kuhlung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1688,8 +1841,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Ausheizen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1699,8 +1853,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_ElektrAnode", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1710,8 +1865,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_SWBBer", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1721,8 +1877,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_SWBMin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1732,8 +1889,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Heizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1743,8 +1901,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_PeriodeMk1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1754,8 +1913,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_LaufzeitMk1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1765,8 +1925,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_PeriodeMk2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1776,8 +1937,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_LaufzeitMk2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1787,8 +1949,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Heizgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1798,8 +1961,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_HUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1809,8 +1973,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_ZUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1820,8 +1985,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_BUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1831,8 +1997,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_Ventilator_BOSUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1842,8 +2009,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MA1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1853,8 +2021,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MZ1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1864,8 +2033,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_ZIP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1875,8 +2045,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MA2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1886,8 +2057,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MZ2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1897,8 +2069,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_SUP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1908,8 +2081,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_SLP", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1919,8 +2093,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_FP2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1930,8 +2105,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_Laufzeit", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1941,8 +2117,9 @@ window.VISIBILITY = [ name: "ID_Visi_Anlgkonf_Heizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1952,8 +2129,9 @@ window.VISIBILITY = [ name: "ID_Visi_Anlgkonf_Brauchwarmwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1963,8 +2141,9 @@ window.VISIBILITY = [ name: "ID_Visi_Anlgkonf_Schwimmbad", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1974,8 +2153,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung_Betriebsart", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1985,8 +2165,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung_TemperaturPlusMinus", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -1996,8 +2177,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung_Heizkurven", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2007,8 +2189,21 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung_Zeitschaltprogramm", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -2018,8 +2213,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizung_Heizgrenze", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2029,8 +2225,9 @@ window.VISIBILITY = [ name: "ID_Visi_Mitteltemperatur", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2040,8 +2237,9 @@ window.VISIBILITY = [ name: "ID_Visi_Dataenlogger", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2051,8 +2249,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_DEUTSCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2062,8 +2261,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_ENGLISH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2073,8 +2273,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_FRANCAIS", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2084,8 +2285,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_NORWAY", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2095,8 +2297,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_TCHECH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2106,8 +2309,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_ITALIANO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2117,8 +2321,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_NEDERLANDS", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2128,8 +2333,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_SVENSKA", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2139,8 +2345,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_POLSKI", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2150,8 +2357,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_MAGYARUL", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2161,8 +2369,9 @@ window.VISIBILITY = [ name: "ID_Visi_ErrorUSBspeichern", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2172,8 +2381,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdHz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2183,8 +2393,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdBW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2194,8 +2405,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdKue", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2205,8 +2417,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Systemsteuerung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2216,8 +2429,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Systemsteuerung_Contrast", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2227,8 +2441,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Systemsteuerung_Webserver", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2238,8 +2453,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Systemsteuerung_IPAdresse", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2249,8 +2465,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_Systemsteuerung_Fernwartung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2260,8 +2477,9 @@ window.VISIBILITY = [ name: "ID_Visi_Paralleleschaltung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2271,8 +2489,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Paralleleschaltung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2282,8 +2501,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_DANSK", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2293,8 +2513,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_PORTUGES", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2304,8 +2525,9 @@ window.VISIBILITY = [ name: "ID_Visi_Heizkurve_Heizung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2315,8 +2537,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Mischkreis3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2326,8 +2549,9 @@ window.VISIBILITY = [ name: "ID_Visi_MK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2337,8 +2561,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK3_Vorlauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2348,8 +2573,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_MK3VL_Soll", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2359,8 +2585,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer3Auf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2370,8 +2597,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Mischer3Zu", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2381,8 +2609,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_RegelungMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2392,8 +2621,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_PeriodeMk3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2403,8 +2633,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_LaufzeitMk3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2414,8 +2645,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Kuhl_Zeit_Ein", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2425,8 +2657,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Kuhl_Zeit_Aus", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2436,8 +2669,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_AbtauIn", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2447,8 +2681,9 @@ window.VISIBILITY = [ name: "ID_Visi_Waermemenge_WS", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2458,8 +2693,9 @@ window.VISIBILITY = [ name: "ID_Visi_Waermemenge_WQ", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2469,8 +2705,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MA3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2480,8 +2717,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_MZ3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2491,8 +2729,9 @@ window.VISIBILITY = [ name: "ID_Visi_Enlt_FP3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2502,8 +2741,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_FUP3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2513,8 +2753,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Raumstation2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2524,8 +2765,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_Raumstation3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2535,8 +2777,9 @@ window.VISIBILITY = [ name: "ID_Visi_Bst_BStdSW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2546,8 +2789,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_LITAUISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2557,8 +2801,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_ESTNICH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2568,8 +2813,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Fernwartung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2579,8 +2825,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_SLOVENISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2590,8 +2837,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TA_EG", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2601,8 +2849,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_TVLmax_EG", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2612,8 +2861,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_PoptNachlauf", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2623,8 +2873,9 @@ window.VISIBILITY = [ name: "ID_Visi_RFV_K_Kuehlin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2634,8 +2885,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_EffizienzpumpeNom", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2645,8 +2897,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_EffizienzpumpeMin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2656,8 +2909,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Effizienzpumpe", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2667,8 +2921,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Waermemenge", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2678,8 +2933,9 @@ window.VISIBILITY = [ name: "ID_Visi_Service_WMZ_Effizienz", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2689,8 +2945,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Wm_Versorgung_Korrektur", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2700,8 +2957,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Wm_Auswertung_Korrektur", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2711,8 +2969,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_AnalogIn", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2722,8 +2981,9 @@ window.VISIBILITY = [ name: "ID_Visi_Eins_SN_Eingabe", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2733,8 +2993,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Analog_1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2744,8 +3005,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Analog_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2755,8 +3017,9 @@ window.VISIBILITY = [ name: "ID_Visi_Solar", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2766,8 +3029,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Solar", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2777,8 +3041,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_TDiffKollmax", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2788,8 +3053,9 @@ window.VISIBILITY = [ name: "ID_Visi_AblaufZ_HG_Sperre", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2799,8 +3065,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Akt_Kuehlung", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2810,8 +3077,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Vorlauf_VBO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2821,8 +3089,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_KRHyst", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2832,8 +3101,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Akt_Kuehl_Speicher_min", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2843,8 +3113,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Akt_Kuehl_Freig_WQE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2854,8 +3125,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_AbtZykMin", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2865,8 +3137,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_VD2_Zeit_Min", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2876,8 +3149,9 @@ window.VISIBILITY = [ name: "ID_Visi_EinstTemp_Hysterese_HR_verkuerzt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2887,8 +3161,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Luf_Feuchteschutz_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2898,8 +3173,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Luf_Reduziert_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2909,8 +3185,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Luf_Nennlueftung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2920,8 +3197,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Luf_Intensivlueftung_akt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2931,8 +3209,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temperatur_Lueftung_Zuluft", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2942,8 +3221,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temperatur_Lueftung_Abluft", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2953,8 +3233,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Analog_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2964,8 +3245,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Analog_4", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2975,8 +3257,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_Analog_2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2986,8 +3269,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_Analog_3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -2997,8 +3281,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_SAX", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3008,8 +3293,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_VZU", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3019,8 +3305,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_VAB", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3030,8 +3317,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_VSK", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3041,8 +3329,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_FRH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3052,8 +3341,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_SolltempMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3063,8 +3353,9 @@ window.VISIBILITY = [ name: "ID_Visi_KuhlTemp_ATDiffMK3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3074,8 +3365,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_SPL", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3085,8 +3377,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Lueftungsstufen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3096,8 +3389,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Meldung_TDI", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3107,8 +3401,9 @@ window.VISIBILITY = [ name: "ID_Visi_SysEin_Typ_WZW", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3118,8 +3413,9 @@ window.VISIBILITY = [ name: "ID_Visi_BACnet", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3129,8 +3425,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_SLOWAKISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3140,8 +3437,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_LETTISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3151,8 +3449,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_FINNISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3162,8 +3461,9 @@ window.VISIBILITY = [ name: "ID_Visi_Kalibrierung_LWD", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3173,8 +3473,9 @@ window.VISIBILITY = [ name: "ID_Visi_IN_Durchfluss", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3184,8 +3485,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_ANSAUG_VERDICHTER", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3195,8 +3497,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_VDH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3206,8 +3509,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_UH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3217,8 +3521,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_Druck", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3228,8 +3533,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Sollwert_TRL_Kuehlen", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3239,8 +3545,9 @@ window.VISIBILITY = [ name: "ID_Visi_Entl_ExVentil", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3250,8 +3557,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Medium_Waermequelle", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3261,8 +3569,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Multispeicher", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3272,8 +3581,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Minimale_Ruecklaufsolltemperatur", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3283,8 +3593,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_PKuehlTime", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3294,8 +3605,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_TUERKISCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3305,8 +3617,9 @@ window.VISIBILITY = [ name: "ID_Visi_RBE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3316,8 +3629,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Luf_Stufen_Faktor", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3327,8 +3641,9 @@ window.VISIBILITY = [ name: "ID_Visi_Freigabe_Zeit_ZWE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3338,8 +3653,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_min_VL_Kuehl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3349,8 +3665,9 @@ window.VISIBILITY = [ name: "ID_Visi_ZWE1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3360,8 +3677,9 @@ window.VISIBILITY = [ name: "ID_Visi_ZWE2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3371,8 +3689,9 @@ window.VISIBILITY = [ name: "ID_Visi_ZWE3", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3382,8 +3701,9 @@ window.VISIBILITY = [ name: "ID_Visi_SEC", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3393,8 +3713,9 @@ window.VISIBILITY = [ name: "ID_Visi_HZIO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3404,8 +3725,9 @@ window.VISIBILITY = [ name: "ID_Visi_WPIO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3415,8 +3737,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_ANSAUG_VERDAMPFER", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3426,8 +3749,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_MULTI1", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3437,8 +3761,9 @@ window.VISIBILITY = [ name: "ID_Visi_LIN_MULTI2", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3448,8 +3773,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Leistung_ZWE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3459,8 +3785,9 @@ window.VISIBILITY = [ name: "ID_Visi_Sprachen_ESPANOL", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3470,8 +3797,9 @@ window.VISIBILITY = [ name: "ID_Visi_Temp_BW_oben", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3481,8 +3809,9 @@ window.VISIBILITY = [ name: "ID_Visi_MAXIO", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3492,8 +3821,9 @@ window.VISIBILITY = [ name: "ID_Visi_OUT_Abtauwunsch", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3503,8 +3833,9 @@ window.VISIBILITY = [ name: "ID_Visi_SmartGrid", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3514,8 +3845,9 @@ window.VISIBILITY = [ name: "ID_Visi_Drehzahlgeregelt", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3525,8 +3857,9 @@ window.VISIBILITY = [ name: "ID_Visi_P155_Inverter", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3536,8 +3869,9 @@ window.VISIBILITY = [ name: "ID_Visi_Leistungsfreigabe", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3547,8 +3881,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Vorl_akt_Kuehl", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3558,8 +3893,9 @@ window.VISIBILITY = [ name: "ID_Visi_Einst_Abtauen_im_Warmwasser", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3569,8 +3905,9 @@ window.VISIBILITY = [ name: "ID_Visi_Waermemenge_ZWE", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3580,8 +3917,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_325", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3591,8 +3929,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_326", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3602,8 +3941,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_327", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3613,8 +3953,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_328", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3624,8 +3965,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_329", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3635,8 +3977,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_330", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3646,8 +3989,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_331", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3657,8 +4001,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_332", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3668,8 +4013,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_333", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3679,8 +4025,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_334", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3690,8 +4037,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_335", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3701,8 +4049,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_336", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3712,8 +4061,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_337", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3723,8 +4073,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_338", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3734,8 +4085,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_339", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3745,8 +4097,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_340", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3756,8 +4109,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_341", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3767,8 +4121,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_342", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3778,8 +4133,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_343", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3789,8 +4145,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_344", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3800,8 +4157,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_345", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3811,8 +4169,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_346", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3822,8 +4181,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_347", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3833,8 +4193,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_348", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3844,8 +4205,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_349", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3855,8 +4217,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_350", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3866,8 +4229,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_351", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3877,8 +4241,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_352", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3888,8 +4253,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_353", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3899,8 +4265,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_354", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -3910,8 +4277,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_355", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3921,8 +4301,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_356", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3932,8 +4325,33 @@ window.VISIBILITY = [ name: "ELECTRICAL_POWER_LIMITATION_SWITCH", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3943,8 +4361,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_358", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3954,8 +4385,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_359", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3965,8 +4409,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_360", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3976,8 +4433,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_361", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3987,8 +4457,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_362", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -3998,8 +4481,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_363", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4009,8 +4505,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_364", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4020,8 +4529,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_365", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4031,8 +4553,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_366", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4042,8 +4577,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_367", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4053,8 +4601,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_368", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4064,8 +4625,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_369", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4075,8 +4649,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_370", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4086,8 +4673,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_371", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4097,8 +4697,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_372", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4108,8 +4721,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_373", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4119,8 +4745,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_374", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4130,8 +4769,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_375", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4141,8 +4793,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_376", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4152,8 +4817,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_377", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4163,8 +4841,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_378", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4174,8 +4865,21 @@ window.VISIBILITY = [ name: "Unknown_Visibility_379", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + 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: "" @@ -4185,8 +4889,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_380", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4196,8 +4901,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_381", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4207,8 +4913,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_382", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4218,8 +4925,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_383", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4229,8 +4937,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_384", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4240,8 +4949,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_385", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4251,8 +4961,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_386", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4262,8 +4973,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_387", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4273,8 +4985,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_388", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4284,8 +4997,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_389", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4295,8 +5009,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_390", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4306,8 +5021,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_391", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4317,8 +5033,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_392", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4328,8 +5045,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_393", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4339,8 +5057,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_394", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4350,8 +5069,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_395", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4361,8 +5081,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_396", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4372,8 +5093,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_397", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4383,8 +5105,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_398", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4394,8 +5117,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_399", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" @@ -4405,8 +5129,9 @@ window.VISIBILITY = [ name: "Unknown_Visibility_400", lsb: 0, width: 32, - fieldtype: "Unknown", - writeable: "no", + class: "None", + writeable: "", + unit: "", since: "", until: "", description: "" From 85861caa2b6c92a0e34224ebf5eb5f15a25d4d81 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:39:44 +0100 Subject: [PATCH 03/11] Add the generation date to the html file --- docs/index.html | 2 ++ docs/scripts.js | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/docs/index.html b/docs/index.html index c0f20490..75926c92 100644 --- a/docs/index.html +++ b/docs/index.html @@ -65,6 +65,8 @@

Luxtronik data fields

+

+
diff --git a/docs/scripts.js b/docs/scripts.js index 0a1b0746..ed4a6834 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -1,3 +1,6 @@ +const CREATED_ON = new Date().toISOString().split("T")[0]; + + // Combine all data sources let data = [ ...window.VISIBILITY, @@ -99,6 +102,10 @@ function renderTable() { // activate filter event filterFields.forEach(f => f.addEventListener("input", renderTable)); +// set creation-date +document.getElementById("createdInfo").textContent = `Generated automatically on ${CREATED_ON}`; + + // initial rendering activateColumnToggle(); renderTable(); From 3906892e721737ecac14674c80fc92a3d335e542 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:40:50 +0100 Subject: [PATCH 04/11] Change the data entry order --- docs/index.html | 4 ++-- docs/scripts.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index 75926c92..5aca6142 100644 --- a/docs/index.html +++ b/docs/index.html @@ -115,9 +115,9 @@

Luxtronik data fields

Name LSB WidthField TypeClassUnit Writeable Since Until ${item.name} ${item.lsb} ${item.width}${item.fieldtype}${item.class}${item.unit} ${item.writeable} ${item.since} ${item.until}
- - + + diff --git a/docs/scripts.js b/docs/scripts.js index ed4a6834..5171bc00 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -3,9 +3,9 @@ const CREATED_ON = new Date().toISOString().split("T")[0]; // Combine all data sources let data = [ - ...window.VISIBILITY, - ...window.PARAMETER, ...window.CALCULATION, + ...window.PARAMETER, + ...window.VISIBILITY, ...window.INPUT, ...window.HOLDING ]; From 81e1eddce26381177fe56ab2e2a2cd05da149abf Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:42:06 +0100 Subject: [PATCH 05/11] Add the "user options" to the description only if the field is writable --- .github/workflows/scripts/docs/gen-docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py index 20a71abb..9648b08d 100644 --- a/.github/workflows/scripts/docs/gen-docs.py +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -44,7 +44,7 @@ def get_items(definitions): items = [] for d in definitions: desc = d.description - if issubclass(d.field_type, SelectionBase): + if issubclass(d.field_type, SelectionBase) and d.writeable: desc += ("\n" if desc else "") + "\nUser-Options:\n" + "\n".join(d.field_type.options()) items.append({ "category": get_string(definitions.name), From aa82ea7aaad45b81be7c6976c62278504f8d18e1 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:42:36 +0100 Subject: [PATCH 06/11] Also add an entry for all outdated but still supported names --- .github/workflows/scripts/docs/gen-docs.py | 27 +++++++++++----------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py index 9648b08d..d06fb150 100644 --- a/.github/workflows/scripts/docs/gen-docs.py +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -46,19 +46,20 @@ def get_items(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()) - items.append({ - "category": get_string(definitions.name), - "index": d.index, - "name": get_string(d.name), - "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), - }) + 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(): From 7057f2cddfd90990c44612b4e6d712e32a49d367 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 21:59:27 +0100 Subject: [PATCH 07/11] Generate a meta.js during the gen-docs process --- .github/workflows/scripts/docs/gen-docs.py | 10 ++++++++-- docs/index.html | 6 +++++- docs/scripts.js | 6 ++---- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py index d06fb150..45123d3b 100644 --- a/.github/workflows/scripts/docs/gen-docs.py +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -79,14 +79,20 @@ def gather_data(): def render_docs(): logger.info("render docs") env = Environment(loader=FileSystemLoader(str(BASEPATH / "templates")), autoescape=select_autoescape()) - template = env.get_template("definitions.js") 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, now=datetime.now())) + f.write(template.render(group=name.upper(), data=items)) + + # create meta file + template = env.get_template("meta.js") + with open(BASEPATH.parents[3] / f"docs/meta.js", "w", encoding="UTF-8") as f: + f.write(template.render(version="0.3.14", now=datetime.now().replace(microsecond=0))) if __name__ == "__main__": render_docs() diff --git a/docs/index.html b/docs/index.html index 5aca6142..e5da7f7e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -65,7 +65,10 @@

Luxtronik data fields

-

+

+

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

@@ -122,6 +125,7 @@

Luxtronik data fields

+ diff --git a/docs/scripts.js b/docs/scripts.js index 5171bc00..23efa13a 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -1,5 +1,3 @@ -const CREATED_ON = new Date().toISOString().split("T")[0]; - // Combine all data sources let data = [ @@ -103,8 +101,8 @@ function renderTable() { filterFields.forEach(f => f.addEventListener("input", renderTable)); // set creation-date -document.getElementById("createdInfo").textContent = `Generated automatically on ${CREATED_ON}`; - +document.getElementById("createdInfo").textContent = + `Generated automatically on ${window.META.createdOn}`; // initial rendering activateColumnToggle(); From 880b702c2b5fe1239aac746ad8de083caece91bc Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 22:03:30 +0100 Subject: [PATCH 08/11] Display the git version tag in the header --- .github/workflows/scripts/docs/gen-docs.py | 15 +++++++++++++-- docs/index.html | 1 + docs/scripts.js | 5 +++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/docs/gen-docs.py b/.github/workflows/scripts/docs/gen-docs.py index 45123d3b..15160842 100644 --- a/.github/workflows/scripts/docs/gen-docs.py +++ b/.github/workflows/scripts/docs/gen-docs.py @@ -3,6 +3,7 @@ from pathlib import Path from datetime import datetime from jinja2 import Environment, FileSystemLoader, select_autoescape +import subprocess from luxtronik.cfi import ( CALCULATIONS_DEFINITIONS, @@ -25,6 +26,15 @@ 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)}"' @@ -91,8 +101,9 @@ def render_docs(): # create meta file template = env.get_template("meta.js") - with open(BASEPATH.parents[3] / f"docs/meta.js", "w", encoding="UTF-8") as f: - f.write(template.render(version="0.3.14", now=datetime.now().replace(microsecond=0))) + 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/docs/index.html b/docs/index.html index e5da7f7e..0b4ab332 100644 --- a/docs/index.html +++ b/docs/index.html @@ -67,6 +67,7 @@

Luxtronik data fields

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

diff --git a/docs/scripts.js b/docs/scripts.js index 23efa13a..52cca898 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -103,6 +103,11 @@ 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(); From 3a16dfd25d37d9a9512ccf240a7244f02fcdbeb8 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 22:04:35 +0100 Subject: [PATCH 09/11] Add the meta.js files --- .github/workflows/scripts/docs/templates/meta.js | 4 ++++ docs/meta.js | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 .github/workflows/scripts/docs/templates/meta.js create mode 100644 docs/meta.js 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/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 From 91b2386c40753cb00c10fe2afd9554ae5cbe61d5 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 22:11:10 +0100 Subject: [PATCH 10/11] Update the README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 06abe789..14da1f4f 100755 --- a/README.md +++ b/README.md @@ -52,9 +52,13 @@ pip install git+https://github.com/Bouni/python-luxtronik.git@main ## DOCUMENTATION -Here you can find our automatically generated [documentation](https://bouni.github.io/python-luxtronik/). +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) From 56c860384f58df736542e8e74f6a29716d466dce Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Fri, 13 Mar 2026 22:13:10 +0100 Subject: [PATCH 11/11] Update the CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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