diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
new file mode 100644
index 00000000..e963a3d4
--- /dev/null
+++ b/.github/workflows/nightly.yml
@@ -0,0 +1,125 @@
+#name: nightly build
+
+on:
+ push:
+ branches: [ '*' ]
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/cache@v3
+ with:
+ path: |
+ ~/.cache/pip
+ ~/.platformio/.cache
+ key: ${{ runner.os }}-pio
+ - uses: actions/setup-python@v4
+ with:
+ python-version: '3.11'
+
+ - name: Install PlatformIO Core
+ run: pip install --upgrade platformio
+
+ - name: Build X10A definitions
+ run: python3 scripts/build_x10a_commands.py
+
+ - name: Build CAN definitions
+ run: python3 scripts/build_can_commands.py
+
+ - name: Run Unit Tests
+ run: pio test -e native
+
+ build:
+ needs: test
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ target: [esp32, esp32_debug_noBT, nodemcuv2, m5stickc, m5stack-tough, m5stickcplus, m5stickcplus2]
+
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/cache@v3
+ with:
+ path: |
+ ~/.cache/pip
+ ~/.platformio/.cache
+ key: ${{ runner.os }}-pio
+ - uses: actions/setup-python@v4
+ with:
+ python-version: '3.11'
+
+ - name: Install PlatformIO Core
+ run: pip install --upgrade platformio
+
+ - name: Build PlatformIO Project
+ run: pio run -e ${{ matrix.target }}
+
+ - name: Create build folder
+ run: mkdir -p build
+
+ - name: Move builded firmware to artifacts
+ run: mv .pio/build/${{ matrix.target }}/firmware.bin build/${{ matrix.target }}_nightly_firmware.bin
+
+ - name: Archive build results of ${{ matrix.target }}
+ uses: actions/upload-artifact@v3
+ with:
+ name: pio-build
+ path: build/*_firmware.bin
+
+ release:
+ needs: build
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Download all workflow run artifacts
+ uses: actions/download-artifact@v3
+ with:
+ name: pio-build
+ path: build
+
+ - uses: actions/setup-python@v4
+ with:
+ python-version: '3.11'
+
+ - name: Build X10A definitions
+ run: python3 scripts/build_x10a_commands.py
+
+ - name: Build CAN definitions
+ run: python3 scripts/build_can_commands.py
+
+ - name: Create info file
+ run: |
+ echo -e "ref: $GITHUB_REF \ncommit: $GITHUB_SHA\nbuild: $(date +"%Y-%m-%dT%H:%M:%SZ")" > build/info.txt
+
+ - name: Rename folder name
+ run: mv build nightly-build
+
+ - uses: vimtor/action-zip@v1
+ with:
+ files: nightly-build/
+ recursive: false
+ dest: nightly-build.zip
+
+ - name: Archive production artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: nightly-build
+ path: nightly-build.zip
+
+ - uses: geekyeggo/delete-artifact@v2
+ with:
+ name: pio-build
+
+ - name: Update nightly release
+ uses: pyTooling/Actions/releaser@r0
+ with:
+ tag: nightly
+ rm: true
+ token: ${{ secrets.GITHUB_TOKEN }}
+ files: nightly-build.zip
diff --git a/.gitignore b/.gitignore
index 1f138b89..2fa38215 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,11 +3,13 @@
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
-src/setup.h
private/
+build/
.vscode/settings.json
+sdkconfig.*
contrib/ldd_decoder/bin/
contrib/ldd_decoder/obj/
contrib/ldd_decoder/label_defines.*
-src/my_setup.h
-DaikinLogger.sln
+managed_components/
+dependencies.lock
+.mono
\ No newline at end of file
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 080e70d0..e0cea7a4 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -5,6 +5,7 @@
"platformio.platformio-ide"
],
"unwantedRecommendations": [
+ "ms-dotnettools.csharp",
"ms-vscode.cpptools-extension-pack"
]
}
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 00000000..12d5edae
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,3 @@
+cmake_minimum_required(VERSION 3.16.0)
+include($ENV{IDF_PATH}/tools/cmake/project.cmake)
+project(ESPAltherma)
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index 81eab08f..bbff4602 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,7 @@
MIT License
-Copyright (c) 2020 Raomin
+Original work Copyright (c) 2020 Raomin
+Modified work Copyright (c) 2023 Munzili
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 9cadde8f..3756ea22 100644
--- a/README.md
+++ b/README.md
@@ -18,395 +18,42 @@
ESPAltherma is a solution to monitor Daikin Altherma / ROTEX / HOVAL Belaria heat pump activity using just Arduino on an ESP32 or ESP8266 Microcontroller.
-_If this project has any value for you, please consider [buying me a 🍺](https://www.buymeacoffee.com/raomin) or even better [sponsoring ESPAltherma](https://github.com/sponsors/raomin/)!. I don't do this for money but it feels good to get some support! Thanks :)_
+_If this project has any value for you, please consider [buying me a 🍺](https://www.buymeacoffee.com/raomin) or even better [sponsoring ESPAltherma](https://github.com/sponsors/raomin/)!. I don't do this for money but it feels good to get some support! Thanks :)_
## Features
+ Easy configuration with web based config system.
Connects with the serial port of Altherma on port X10A.
Needs just an ESP32, no need for extra hardware. ESP8266 is also supported.
Queries the Altherma for selected values at defined interval.
Converts and formalizes all values in a JSON message sent over MQTT.
Easily integrates with Home Assistant's MQTT auto-discovery.
Supports update OverTheAir
- Log messages in Serial + MQTT + Screen (m5StickC)
- Optional: can control (on/off) your heat pump.
+ Log messages in Serial + WebUI + Screen (m5StickC)
+ Optional: can control your heat pump. (Heating, Colling and SmartGrid)
+ Optional: Connects with the CAN-Bus (external controller or transciever needed).
## Preview
![screenshot](doc/images/screenshot.png)
-# Prerequisites
+# Documentation
-## Hardware
+- [Prerequisites](/doc/Prerequisites.md)
+- [Getting Started](/doc/GettingStarted.md)
+- [Troubleshooting](/doc/Troubleshooting.md)
+- [Integrating with Home Assitant](/doc/IntegratingHomeAssitant.md)
+- [FAQ](/doc/FAQ.md)
-- A Daikin Altherma or Daikin Altherma based heat pump (ROTEX, HOVAL Belaria...)
-- An ESP32 or ESP8266 *I recommend an ESP32, more precisely the M5StickC, it has an integrated display, a magnet, fits well next to the board and is properly isolated. But any ESP32 should work. A support is added for esp8266.*
-- 5 pins JST EH 2.5mm connector (or 4 Dupont wires M-F)
+# Contributing
-## Software
+- You can find tools and information in the [contrib](contrib/) subfolder
+- The `Daikin I` protocol is documented [here](/doc/Daikin%20I%20protocol.md)
+- The `Daikin S` protocol is documented [here](/doc/Daikin%20S%20protocol.md)
-- Platformio
-
-*That's all!*
-
-# Getting started
-
-## Step 1: Uploading the firmware
-
-1. Download the repository folder and open it in PlatformIO.
-
-2. Optional - If you are using an **M5StickC** (or M5Stack), select the corresponding environment from the status bar:
-Click ![end m5](doc/images/defaultenv.png) and select **env:M5StickC** on the top. The status bar should display ![end m5](doc/images/m5envv.png)
-For **M5StickCPlus** select **env:M5StickCPlus**
-If you are using an **ESP8266** select the `nodemcuv2` environement.
-
-3. Edit the file `src/setup.h` as follows:
- - enter your wifi and mqtt settings
- - select your RX TX GPIO pins connected to the X10A port. *The ESP32 has 3 serial ports. The first one, Serial0 is reserved for ESP<-USB->PC communication and ESP Altherma uses the Serial0 for logging (as any other project would do). So if you open the serial monitor on your PC, you'll see some debug from ESPAltherma. ESP32 can map any GPIO to the serial ports. Do NOT use the main Serial0 GPIOs RX0/TX0.* * The ESP8266 only has 1.5 Serial ports so it uses a software based serial driver. You can choose any pins, but some will stop you from being able to use the console*
-
- For ESP32 try to stick to the RX2/TX2 of your board (probably GPIO16/GPIO17). **For M5StickC or M5StickCPlus, 26 and 36 will automatically be used if you selected the corresponding environment**. For ESP8266 pins 4 & 5 (D2 & D1 on the NodeMCUv2) are known to work well.
-
- - uncomment the `#include` line corresponding to your heat pump. E.g.
-
- ```c++
- ...
- //#include "def/ALTHERMA(HPSU6_ULTRA).h"
- #include "def/ALTHERMA(HYBRID).h" //<-- this one will be used.
- //#include "def/ALTHERMA(LT-D7_E_BML).h"
- ...
- ```
-
- *If you're not sure which one to take, choose the closest or Default.h. The only thing that could happen is that you would have missing values, null values or wrong label names.*
-
- **NEW!** *You can now select locale version of the value definition. French, German and Spanish are supported.*
- Add the Language in the path. Eg for German:
-
- ```c++
- ...
- //#include "def/ALTHERMA(HPSU6_ULTRA).h"
- #include "def/German/ALTHERMA(HYBRID).h" //<-- this one will be used.
- //#include "def/ALTHERMA(LT-D7_E_BML).h"
- ...
- ```
-
-4. Now open and edit the file you just uncommented, e.g. `include/def/ALTHERMA(HYBRID).h` (or the one under the language chosen) as follow:
- Uncomment each line of the values you are interested in. *Try not to get everything as it will turn into a very big mqtt message*.
-
- ```c++
- ...
- LabelDef labelDefs[] = {
- // {0x00,0,801,0,-1,"*Refrigerant type"},
- {0x60,0,304,1,-1,"Data Enable/Disable"}, //<-- This value will be queried and reported
- // {0x60,1,152,1,-1,"Indoor Unit Address"},
- {0x60,2,315,1,-1,"I/U operation mode"}, //<-- This value will be queried and reported
- {0x60,2,303,1,-1,"Thermostat ON/OFF"}, //<-- This value will be queried and reported
- // {0x60,2,302,1,-1,"Freeze Protection"},
- {0x60,2,301,1,-1,"Silent Mode"}, //<-- This value will be queried and reported
- // {0x60,2,300,1,-1,"Freeze Protection for water piping"},
- ...
- ```
-
- A wiki page is available [here](https://github.com/raomin/ESPAltherma/wiki/Information-about-Values) where everyone can comment on the values and their definition.
-
-5. You're ready to go! Connect your ESP32/ESP8266 and click -> Upload! Or press `F1` and select -> `PlatformIO: Upload`
-
-## Step 2: Connecting to the Heat pump
-
-1. Turn OFF your heat pump at the circuit breaker.
-2. Unscrew your pannel to access the main PCB of your unit.
-3. Localize the X10A connector on your the PCB. This is the serial port on the main PCB. If your installation include a bi-zone module, the X10A port is occupied with a connector to the Bi-Zone module. You should then connect to the X12A port on the bi-zone module. Pins are identical to the X10A.
-4. Using the 5 pin connector or 4 Dupont wires, connect the ESP as follow. Pay attention to the orientation of the socket.
-
-### Daikin Altherma 4 pin X10A Connection
-
-![The X10A connector](doc/images/schematics.png)
-
-| X10A | ESP32 |
-| ---- | ----- |
-| 1-5V | 5V - VIN *Can supply voltage for the ESP :)* |
-| 2-TX | `RX_PIN` *Default GPIO 16. Prefer RX2 of your board.* |
-| 3-RX | `TX_PIN` *Default GPIO 17. Prefer TX2 of your board.* |
-| 4-NC | Not connected |
-| 5-GND | GND |
-
-> ESP `RX_PIN` `TX_PIN` can be changed in `src/setup.h`.
-
-### 8 pin X10A Connection
-
-Some heat pumps (ROTEX) have an X10A port which connects differently:
-
-![](doc/images/rotexX10A.png)
-
-Pin 1 (on the left in the picture) is +5v. Some users reported that the 5V from their ROTEX was not strong enough to power their ESP32/ESP8266. In this case, use an USB charger to power the ESP32/ESP8266. The 5V from the X10A is then not needed.
-
-Whatever you do, **make sure you keep a wire connecting the GND of the ESP32/ESP8266 to the GND pin of the X10A (even if you power your ESP32/ESP8266 with a USB charger)!!**
-
-
-5. Cross check twice the connections and turn on your heat pump. Two new entities AlthermaSensor and AlthermaSwitch should appear in Home Assistant. AlthermaSensor holds the values as attributes.
-
-You can also monitor values and debug messages on your MQTT server:
-
-```bash
-$ mosquitto_sub -v -t "espaltherma/#"
-```
-
-or via Home Assistant Configuration->Integration->MQTT Configure->Listen to topic espaltherma/# -> Start Listening
-
-## Step 3 (optional) - Controling your Daikin Altherma heat pump
-
-ESPAltherma cannot change the configuration values of the heat pump (see [FAQ](#faq)). However, ESPAltherma can control a relay on MQTT that can simulate an *external On Off thermostat*. Doing so allows to remotely turn on/off the heating function of your heat pump. A second relay can be used to trigger the cooling function.
-
-Refer to the schematic map of your heat pump to see where to connect *external On Off thermostat*.
-
-Adding this will take priority on your thermostat. ESPAltherma will turn the heating on/off ; the thermostat will be in standby.
-
-Note: I resoldered the J1 jumper that was cut when installing my digital thermostat (not sure if it is needed) and configured my *type of thermostat* as *External thermostat*
-
-Once installed the setup looks like this:
-
-![](doc/images/installation.png)
-
-Other users installations are described [in this issue](/../../issues/17).
-
-On a Rotex this would connect to J16 Pin 1 and 2. Note: RT needs to be switched ON in the heatpump Connection menu. Heating will be ON if pins are connected, else no heating, so connect to the NC (normally closed) of the relay.
-
-## Step 4 (optional) - Smart grid features
-ESPaltherma can also integrate with SG-Ready options of your heat pump. To do so, uncomment and configure `PIN_SG1` and `PIN_SG2` in `src/setup.c` and send one of the allowed values (0..3) to MQTT channel `espaltherma/sg/set`. Current SG mode will be available in `espaltherma/sg/state`.
-
-Of course, you will need to use 2 more relays to open/close SG1 and SG2 contacts of your heat pump.
-
-I found that using 5V supply pin of X10A provides enough power for my ESP32 and both relays, but your mileage may vary.
-
-On a Rotex SG1 and SG2 contacts are located in J8 connector, pin 5-6 (Smart Grid) and 11-12 (EVU) respectively.
-
-Once configured and connected, your heat pump will work like this:
-
-| sg/set value| SG1 | SG2 | SG-Mode | Working mode | Typical result |
-| ----------- | ----- | ----- | -------------------- | ------------ | -------------- |
-| 0 | open | open | 0 - normal operation | normal working mode | HP works like if SG features are disabled/not used |
-| 1 | open | close | 1 - Forced OFF | Hp is forced OFF | Heating and DHW will be turned OFF - *Beware that your comfort may be negatively affected by this working mode* |
-| 2 | close | open | 2 - Recommended ON | Hp is recommended to be ON | HP will increase DHW setpoint as well as LW setpoint (documentation says +5 °C, but my tests actually show +6 °C) |
-| 3 | close | close | 3 - Force ON | Hp is forced ON | HP will increase DHW setpoint and will use its full power to heat DHW (to 70 °C) |
-
-*Note that In SG3 mode your HP will really be power hungry so make sure to enable it only when electricity cost is low (ideally free) or be prepared to get a high bill!*
-
-Depending on your HP model, SG3 might be configurable in "ECO mode", "Normal mode" or "Comfort mode". The mode can be set using the specialist code Main Menu > Settings > Input/Output.
-
-| SG-Mode | Description |
-| ------- | ----------- |
-| Comfort mode | Increase of the hot water set temperature by 5 K. |
-| Normal mode | Increase of flow set temperature by 2 K and hot water set temperature by 5 K. |
-| ECO mode | Increase the flow set temperature by 5 K and hot water set temperature by 7 K. |
-
-Note: Smart Grid needs to be switched ON in the heatpump configuration menu, otherwise SG1 and SG2 contacts are not evaluated.
-
-# Troubleshooting
-
-## Specific issues with M5
-
-- If, when using an M5StickC (or M5Stack), the ESP32 is unresponsive, upload fails etc. Make sure that you change the ![default env on pio](doc/images/defaultenv.png) environment to ![end m5](doc/images/m5envv.png) on the status bar. Otherwise the default serial port in setup.h conflicts with the PSRAM of M5.
-
-## Generic issues
-
-Possible generic issues could be: improper wifi signal, unsupported protocol, unsupported GPIOs for Serial (stick to default RX2/TX2).
-
-ESPAltherma generates logs on the main serial port (USB) and on the screen of the M5. Connect to the ESP32 and open the serial monitor on Platformio.
-
-ESPAltherma also generates logs on MQTT. If Wifi and MQTT is not the issue, look at the logs on the topic `espaltherma/log`. You can see them on Home Assistant through Configuration -> Integration -> MQTT -> Config -> Listen to a topic.
-
-## Logs show 'Timeout on register' with value 0x15 0xea or 'Error 0x15 0xEA returned from HP'
-
-`0x15 0xea` is the reply from the heatpump to say it does not understand the protocol.
-If you have an older Altherma heat pump (around 2010 or before) it is probably using the older S protocol.
-To activate it, at the end of `setup.h` change `#define PROTOCOL 'I'` to `#define PROTOCOL 'S'`
-Also select the `def/PROTOCOL_S_ROTEX.h` or `def/PROTOCOL_S.h` definition file.
-
-## Logs show 'Time out! Check connection' 'Wrong CRC on registry...'
-
-This means that the communication is wrong. Usual suspects:
-
-1. Un-conected GND: whatever you do, the GND of the ESP should always be connected to the GND of the Altherma. So, if you power your ESP with a USB charger (or your computer), make sure you also connect the GND from the ESP to your GND of the Altherma.
-2. If not GND, then it's alway the Dupont cable. A faulty dupont cable is a VERY COMMON cause of issue. You can have a perfectly looking cable, they are not the best to do connection on the X10A connector (although much more common than an EH JST 5pin). So, change your cable. You can also use a common 2.54 female long header, plug it to the X10A connector and then your dupont cable to the long pins of the header.
-![pic of header](doc/images/header.png)
-
-## Note on voltage
-
-The serial port of X10A is TTL 5V, where the ESP32 is 3.3V. Your ESP32 might not be 5V tolerant. If you want to play it safe, you should use a level shifter to convert Daikin TX - RX ESP line from 5V to 3.3V.
-
-In practice, I had no problem connecting an ESP32 without level shifters. I also had no issue powering the ESP32 from the 5V line of the X10A. On my Daikin Altherma, 5V is provided by a 7805 with a massive heat sink, plus, there are not many clients for it on the board and the ESPAltherma running on my ESP32 consumes 70ma.
-
-Some users reported that a ROTEX did not have a stable 5v that could be used to power the ESP32. If so, you would need to rely on an external 5V power supply (eg a regular USB charger) to power the ESP32.
-
-If you are using an M5StickC you can select the PlatformIO env:m5stickc (or env_m5stickcplus for that version), then ESPAltherna will also report on the voltage and consumption of the M5StickC in the reported values.
-
-# Integrating with Home Assitant
-
-ESPAltherma integrates easily with Home Assistant using [mqtt discovery](https://www.home-assistant.io/docs/mqtt/discovery/).
-
-After setup, ESPAltherma will generate 2 entities on Home Assistant:
-
-![](doc/images/haentities.png)
-
-- `sensor.althermasensors` holds the values as attributes.
-
-- `switch.altherma` activates the relay connected to the `PIN_THERM`
-
-## Declaring sensor entities
-
-In Home Assistant, all values reported by ESPAltherma are `attribute`s of the `entity` sensor.althermasensors.
-
-![](doc/images/attribs.png)
-
-If you want to integrate specific `attribute`s in graphs, gauge etc. you need to declare them as `sensor`s using `template` in your `configuration.yaml`. See [HA doc on Template](https://www.home-assistant.io/integrations/template/).
-
-Eg. this template declares the 2 operation modes as entities, the DHW tank temperature and the current of the primary inverter:
-
-```yaml
-template:
- - unique_id: "espaltherma" # will be prefixed to all unique IDs
- sensor:
- - name: "Operation mode"
- unique_id: "operation"
- state: "{{ state_attr('sensor.althermasensors','Operation Mode') }}"
- - name: "Indoor Operation mode"
- unique_id: "iuoperation"
- state: "{{ state_attr('sensor.althermasensors','I/U operation mode') }}"
- - name: "DHW Temp"
- unique_id: "dhw"
- state: "{{ state_attr('sensor.althermasensors','DHW tank temp. (R5T)') }}"
- unit_of_measurement: '°C'
- - name: "Inverter primary current"
- unique_id: "inv_primary_current"
- state: "{{ state_attr('sensor.althermasensors','INV primary current (A)') }}"
- unit_of_measurement: 'A'
- device_class: current
-```
-
-After restarting Home Assistant, these entities can be added to an history card:
-
-![](doc/images/historycard.png)
-
-## A Climate entity
-
-To control heating through the On/Off switch, declare a Climate (aka thermostat) entity monitoring a temperature sensor.
-
-```yaml
-climate:
- - platform: generic_thermostat
- name: Altherma
- heater: switch.altherma
- target_sensor: sensor.temproom1
- min_temp: 15
- max_temp: 25
- cold_tolerance: 0.5
- hot_tolerance: 0.5
- min_cycle_duration:
- minutes: 30
- away_temp: 15
- precision: 0.1
-```
-
-Then, add a Thermostat card somewhere:
-
-![ha thermostat](doc/images/thermostat.png)
-
-## Calculating COP
-
-The information returned by ESPAltherma allows to calculate the coefficient of performance (COP). It is the ratio of the heat delivered by your heat pump to the energy consumed by it.
-
-When put in terms of ESPAltherma variables, the COP can be define as a sensor like this in the `sensor:` section of Home Assistant:
-
-```yaml
- - name: "COP"
- unique_id: "espaltherma_cop"
- unit_of_measurement: 'COP'
- state: "{% if is_state_attr('sensor.althermasensors','Operation Mode', 'Heating') and is_state_attr('sensor.althermasensors','Freeze Protection', 'OFF') %}
-{{
- ((state_attr('sensor.althermasensors','Flow sensor (l/min)')| float * 0.06 * 1.16 * (state_attr('sensor.althermasensors','Leaving water temp. before BUH (R1T)') | float - state_attr('sensor.althermasensors','Inlet water temp.(R4T)')|float) )
- /
- (state_attr('sensor.althermasensors','INV primary current (A)') | float * state_attr('sensor.althermasensors','Voltage (N-phase) (V)')|float / 1000))
- |round(2)
-}}
-{% else %} 0 {%endif%}"
-```
-
-# FAQ
-
-## Great! I can now monitor my heat pump! Can I change the configuration values too?
-
-Not directly. It might be possible to change registry values using the serial port but I'm not aware of this. If you know, comment on [the dedicated issue](/../../issues/1).
-
-However, ESPAltherma, supports an extra GPIO to control a relay that you can plug as *external On/Off thermostat*. See [**Controling your Daikin Altherma heat pump**](#controling-your-daikin-altherma-heat-pump).
-
-If you want to configure your heat pump using an arduino, you can interact with the P1P2 serial protocol (the one of the digital thermostats) using the [nice work on P1P2Serial](https://github.com/Arnold-n/P1P2Serial) of Arnold Niessen.
-
-## Where can I get more info on the protocol used?
-
-It took quite some time to reverse engineer the protocol. If you're interested, I documented my findings [here](doc/Daikin%20I%20protocol.md).
-
-## Is it safe? Can I break my machine?
-
-It is as safe as interacting with a serial port can be. Pretty safe if you are a bit careful. Use is entirely at your own risk. No liability.
-
-## Why not using the Daikin LAN adapter?
-
-Of course you can probably achieve the same with the BRP069A62 adapter. However, it is expensive, not wifi and less fun than doing it yourself :)
-
-## I selected a value but it is always returning 0 (or OFF)
-
-The definition files contains values for a range of product. It is possible that some of the values are not implemented in your specific heat pump.
-
-If it says 'conv XXX not avail.' it is that I did not implement this specific conversion of value. If you need this value, create an issue and I'll implement it.
-
-## What is the meaning of this value?
-
-Some times the names of the values can be cryptic. Sometimes, the names are more informative on other models: You can look for the registry in other model this can give you a hint. Eg.: One one file `0x62,15` is `"Pressure sensor"` => on the other `0x62,15` is `"Refrigerant pressure sensor"`.
-
-I'm not an expert in heat pump, so I don't understand all possible values. Collectively however, I'm sure that we can understand a lot.
-
-I created [a page in the WIKI](https://github.com/raomin/ESPAltherma/wiki/Information-about-Values). You can add your comments on the register values and suggest possible better names!
-
-## My Daikin heat pump is not an Daikin Altherma. Can I still control it?
-
-No, ESPAltherma supports only Altherma protocol. Other (AC only) units also have a serial port but using other protocols that would require extra reverse engineering to be implemented.
-
-## How can I update ESPAltherma remotely?
-
-Yes! ESPAltherma source code is upgraded often. Your ESPAltherma can be updated Over-The-Air without having to unplug it from the heat pump:
-
-1. Download the updated code from the repository (or pull new changes) and report your configuration.
-2. Open platformio.ini and uncomment the following line on your specific environment:
-
-```ini
-upload_port = ESPAltherma.local
-```
-
-With this parameter, the upload will happen over wifi. Note: your local firewall should allow incoming connection ; also, it can fail from time to time, if it happens just relaunch update.
-
-## I'm using OpenHAB (or others) can I get the values in separated MQTT topics?
-
-Yes, ESPAltherma now supports sending each value to a specific topic in addition to sending a complete JSON on the main topic.
-To activate this specific feature uncomment the following lines from `src/setup.h`
-
-```c++
-//Uncomment this if you want to activate the One Value <-> One Topic mode. Each value will be sent to a specific topic below
-#define ONEVAL_ONETOPIC
-#define MQTT_OneTopic "espaltherma/OneATTR/" //Keep the ending "/" !!
-```
-
-Now each value will be published in `espaltherma/OneATTR/[valuename]` eg `espaltherma/OneATTR/Boiler Heating Target Temp.`
-
-## How can I contribute?
-
-Every contribution to this project is highly appreciated! Don't fear to create issues to report possible bugs or feature request. Pull requests which enhance or fix ESPAltherma are also greatly appreciated for everybody!
-
-If this project is useful to you, and if you want, [you can buy me a beer](https://www.buymeacoffee.com/raomin) ! It feels good and really helps improving ESPAltherma. Thanks :)
-
-You can also [sponsor this project](https://github.com/sponsors/raomin/) (ie regular beers :)) and become an official supporter of ESPAltherma and get your badge on this page!
-
-## ❤ Regular Sponsors ❤
+# ❤ Regular Sponsors ❤
@gerione
@retrack (Antoine Coetsier)
diff --git a/contrib/ldd_decoder/ldd_decoder.sln b/contrib/ldd_decoder/ldd_decoder.sln
new file mode 100644
index 00000000..b6dc2fd8
--- /dev/null
+++ b/contrib/ldd_decoder/ldd_decoder.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.002.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ldd_decoder", "ldd_decoder.csproj", "{A1A7CB1D-DAA7-4FFE-A1E8-F777493A4E12}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A1A7CB1D-DAA7-4FFE-A1E8-F777493A4E12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A1A7CB1D-DAA7-4FFE-A1E8-F777493A4E12}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A1A7CB1D-DAA7-4FFE-A1E8-F777493A4E12}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A1A7CB1D-DAA7-4FFE-A1E8-F777493A4E12}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {32B9FD09-530A-4443-8C5D-08B19AB08128}
+ EndGlobalSection
+EndGlobal
diff --git a/doc/list registries.txt b/contrib/list registries.txt
similarity index 100%
rename from doc/list registries.txt
rename to contrib/list registries.txt
diff --git a/doc/list_labels.csv b/contrib/list_labels.csv
similarity index 100%
rename from doc/list_labels.csv
rename to contrib/list_labels.csv
diff --git a/doc/list_labels.txt b/contrib/list_labels.txt
similarity index 100%
rename from doc/list_labels.txt
rename to contrib/list_labels.txt
diff --git a/doc/seriallogs/RX b/contrib/seriallogs/RX
similarity index 100%
rename from doc/seriallogs/RX
rename to contrib/seriallogs/RX
diff --git a/doc/seriallogs/TX b/contrib/seriallogs/TX
similarity index 100%
rename from doc/seriallogs/TX
rename to contrib/seriallogs/TX
diff --git a/doc/seriallogs/dump.1 (1).txt b/contrib/seriallogs/dump.1 (1).txt
similarity index 100%
rename from doc/seriallogs/dump.1 (1).txt
rename to contrib/seriallogs/dump.1 (1).txt
diff --git a/doc/seriallogs/dump.2.txt b/contrib/seriallogs/dump.2.txt
similarity index 100%
rename from doc/seriallogs/dump.2.txt
rename to contrib/seriallogs/dump.2.txt
diff --git a/definitions/CAN/English/commands_hpsu.json b/definitions/CAN/English/commands_hpsu.json
new file mode 100644
index 00000000..53dd18a9
--- /dev/null
+++ b/definitions/CAN/English/commands_hpsu.json
@@ -0,0 +1,741 @@
+{
+ "Model": "HPSU",
+ "Language": "English",
+ "Commands": [
+ {
+ "name": "t_hs",
+ "label": "T-HS",
+ "description": "The current temperature (TVBH) of the heat generator is displayed in C."
+ },
+ {
+ "name": "t_hs_set",
+ "label": "T-HS Setpoint",
+ "description": "The current Inflow target temperature of the heat generator is displayed in C"
+ },
+ {
+ "name": "water_pressure",
+ "label": "Water Pressure",
+ "description": "The current water pressure is displayed in bar."
+ },
+ {
+ "name": "t_ext",
+ "label": "T-Outside",
+ "description": "The average external temperature is displayed C."
+ },
+ {
+ "name": "t_dhw",
+ "label": "T-DHW",
+ "description": "The current temperature of the hot water storage tank is displayed in C. If there is no hot water function activated, --- is displayed."
+ },
+ {
+ "name": "t_dhw_set",
+ "label": "T-DHW Setpoint",
+ "description": "The current target hot water temperature is displayed in C. If there is no hot water function activated, --- is displayed. The current set value is here always the maximum value of all relevant demands for this hot water circuit"
+ },
+ {
+ "name": "t_return",
+ "label": "T-Return",
+ "description": "The current return flow temperature of the heat generator is displayed in C. If there is no relevant sensor connected to the heat generator, --- is displayed."
+ },
+ {
+ "name": "flow_rate",
+ "label": "Flow Rate",
+ "description": "The filtered value of the current volume flow in litres per hour"
+ },
+ {
+ "name": "t_hc",
+ "label": "T-HC",
+ "description": "The inflow temperature in the direct heating circuit is displayed in C."
+ },
+ {
+ "name": "t_hc_set",
+ "label": "T-HC Setpoint",
+ "description": "The set temperature of the flow in the direct heating circuit is displayed in C."
+ },
+ {
+ "name": "status_pump",
+ "label": "Status HS Pump",
+ "description": "The current status of the internal heat circulation pump in the ROTEX HPSU compact is displayed."
+ },
+ {
+ "name": "runtime_comp",
+ "label": "Runtime Compressor",
+ "description": "The running time of the refrigerant compressor is displayed in h."
+ },
+ {
+ "name": "runtime_pump",
+ "label": "Runtime Pump",
+ "description": "The running time of the internal heating circulation pump is displayed in h."
+ },
+ {
+ "name": "posmix",
+ "label": "Mixer Position",
+ "description": "The current position of the 3UV DHW 3-way switch valve is displayed. 0%: position A (room heating) 100%: position B (domestic hot water generation)"
+ },
+ {
+ "name": "qboh",
+ "label": "Qboh",
+ "description": "The amount of heat in the additional heat generator for hot water generation is displayed in kWh."
+ },
+ {
+ "name": "qchhp",
+ "label": "Qchhp",
+ "description": "The amount of heat in the additional heat generator for heating mode is displayed in kWh."
+ },
+ {
+ "name": "qsc",
+ "label": "Qsc",
+ "description": "The quantity of heat in the heat pump for cooling is displayed in kWh."
+ },
+ {
+ "name": "qch",
+ "label": "Qch",
+ "description": "The quantity of heat in the heat pump for heating is displayed in kWh."
+ },
+ {
+ "name": "qwp",
+ "label": "QWP",
+ "description": "The total amount of heat in the heat pump is displayed in kWh."
+ },
+ {
+ "name": "qdhw",
+ "label": "Qdhw",
+ "description": "The quantity of heat for hot water generation is displayed in kWh."
+ },
+ {
+ "name": "sw_vers_01",
+ "label": "Version SW 1",
+ "description": "Version SW 1"
+ },
+ {
+ "name": "sw_vers_02",
+ "label": "Version SW 2",
+ "description": "Version SW 2"
+ },
+ {
+ "name": "sw_vers_03",
+ "label": "Version SW 3",
+ "description": "Version SW 3"
+ },
+ {
+ "name": "mode_01",
+ "label": "Modo ?",
+ "description": "Modo Rotex"
+ },
+ {
+ "name": "tvbh2",
+ "label": "TVBH2 [C]",
+ "description": "Current heating inflow temperature or temp. after heating support heat exchanger (tV,BH)."
+ },
+ {
+ "name": "tliq2",
+ "label": "Tliq2 [C]",
+ "description": "Current coolant temperature (tliq2)."
+ },
+ {
+ "name": "tr2",
+ "label": "TR2 [C]",
+ "description": "Current heating return flow temperature, secondary sensor (tR2)."
+ },
+ {
+ "name": "ta2",
+ "label": "TA2 [C]",
+ "description": "Actual outdoor temperature (measured by temperature sensor of the external heat pump)"
+ },
+ {
+ "name": "tdhw2",
+ "label": "Tdhw2 [C]",
+ "description": "Current temperature in domestic hot water storage tank, secondary sensor (tDHW2)."
+ },
+ {
+ "name": "quiet",
+ "label": "quiet",
+ "description": "Shows the status of the whisper mode."
+ },
+ {
+ "name": "mode",
+ "label": "Mode",
+ "description": "Current mode of the heat pump: ---: No heating or cooling demand : Heating : Cooling : Domestic hot water generation : Automatic defrosting function active"
+ },
+ {
+ "name": "pump",
+ "label": "Pump",
+ "description": "Actual output of the internal heating circulation pump in %"
+ },
+ {
+ "name": "ext",
+ "label": "Ext",
+ "description": "Current energy mode of the heat pump: LT: EVU function HT/NT active and low tariff. HT: EVU function HT/NT active and high tariff. SGN: EVU function SMART GRID active, normal mode. SG1: EVU function SMART GRID active, disconnection: no heat pump operation, no frost protection function. SG2: EVU function SMART GRID active, switchon recommendation, mode with higher set temperatures, cheap power. SG3: EVU function SMART GRID active, switchon command and storage tank charging to 70 C, cheap power - - -: No external mode active, heat pump works in normal mode."
+ },
+ {
+ "name": "ehs",
+ "label": "EHS",
+ "description": "Current output of the backup heater in kW"
+ },
+ {
+ "name": "rt",
+ "label": "RT",
+ "description": "Parameter [Room thermostat] / [Interlink fct]"
+ },
+ {
+ "name": "bpv",
+ "label": "BPV",
+ "description": "Current position of the mixing valve 3UVB1 (100% = A, 0% = B)"
+ },
+ {
+ "name": "t_v1",
+ "label": "TV",
+ "description": "Current inflow temperature after the plate heat exchanger (tV1)"
+ },
+ {
+ "name": "t_dhw1",
+ "label": "Tdhw",
+ "description": "Current temperature in domestic hot water storage tank (tDHW1)"
+ },
+ {
+ "name": "t_vbh",
+ "label": "TVBH",
+ "description": "Current heating inflow temperature or temp. after heating support heat exchanger (tV,BH)"
+ },
+ {
+ "name": "t_outdoor_ot1",
+ "label": "TA",
+ "description": "Actual outdoor temperature (measured by optional temperature sensor RoCon OT1)"
+ },
+ {
+ "name": "t_r1",
+ "label": "TR",
+ "description": "Current heating return flow temperature (tR1)"
+ },
+ {
+ "name": "v1",
+ "label": "V",
+ "description": "Actual volume flow (flow rate) in the heating system"
+ },
+ {
+ "name": "t_room1_setpoint",
+ "label": "T Room 1 Setpoint",
+ "description": "Setpoint 1 value"
+ },
+ {
+ "name": "t_room2_setpoint",
+ "label": "T Room 2 Setpoint",
+ "description": "Setpoint 1 value"
+ },
+ {
+ "name": "t_room3_setpoint",
+ "label": "T Room 3 Setpoint",
+ "description": "Setpoint 1 value"
+ },
+ {
+ "name": "heat_slope",
+ "label": "Heat-Slope",
+ "description": "Heat Slope"
+ },
+ {
+ "name": "t_dhw_setpoint1",
+ "label": "T-ACS nom 1",
+ "description": "Nominal value of the hot water temperature in C, which is valid for the first ignition cycle"
+ },
+ {
+ "name": "t_dhw_setpoint2",
+ "label": "T-ACS nom 2",
+ "description": "Nominal value of the hot water temperature in C, which is valid for the second ignition cycle"
+ },
+ {
+ "name": "t_dhw_setpoint3",
+ "label": "T-ACS nom 3",
+ "description": "Nominal value of the hot water temperature in C, which is valid for the third ignition cycle"
+ },
+ {
+ "name": "hyst_hp",
+ "label": "Hyst HP",
+ "description": "Switching threshold hot water charging. Setting of the temperature difference to which the temperature in the domestic hot water storage tank compared to the current target hot water temperature [T-DHW Setpoint] can drop before the heat pump is switched on to provide hot water"
+ },
+ {
+ "name": "t_flow_cooling",
+ "label": "T-Flow Cooling",
+ "description": "Setting the cooling inflow target temperature (fixed value) when cooling mode is active"
+ },
+ {
+ "name": "error",
+ "label": "error",
+ "description": "errorcode"
+ },
+ {
+ "name": "outdoor_type",
+ "label": "Outdoor type",
+ "description": "Type exterior heat pump unit"
+ },
+ {
+ "name": "indoor_unit",
+ "label": "Indoor unit",
+ "description": "Type of interior heat pump unit"
+ },
+ {
+ "name": "func_heating",
+ "label": "Function Heating",
+ "description": "Setting as to whether there is an additional heat generator (WEZ) for hot water generation and heating support"
+ },
+ {
+ "name": "hzu",
+ "label": "HUZ",
+ "description": "Heating support from domestic hot water storage tanks when the minimum temperature is exceeded"
+ },
+ {
+ "name": "equi_func",
+ "label": "Equilibrium Function",
+ "description": "The bivalence function is relevant for operation of the optional ancillary heater based on a backup demand (room heating operation)"
+ },
+ {
+ "name": "smart_grid",
+ "label": "SMART GRID",
+ "description": "Smart Grid"
+ },
+ {
+ "name": "modus_sg",
+ "label": "Mode SG",
+ "description": "Only if parameter [SMART GRID] = 1:Used for a possible target temperature increase in the case of aSMART GRID start command"
+ },
+ {
+ "name": "ht_nt_func",
+ "label": "HT/NT Function",
+ "description": "Setting which specifies which heat sources are switched off when the standard signal is received from the energy supply company (EVU) in the case of the customer having an off-peak tariff network connection"
+ },
+ {
+ "name": "ht_nt_contact",
+ "label": "HT/NT Contact",
+ "description": "Specifies whether the HT/NT input is an NC or NO contact"
+ },
+ {
+ "name": "room_therm",
+ "label": "Room thermostat",
+ "description": "Configuration of a room thermostat connected to the port J16 on the ROTEX HPSU compact using potential-free contacts"
+ },
+ {
+ "name": "interlink",
+ "label": "Interlink fct",
+ "description": "Configuration for systems operating with 2 different inflow target temperatures"
+ },
+ {
+ "name": "air_purge",
+ "label": "Air Purge",
+ "description": "Activation of automatic bleeding of the ROTEX HPSU compact and the connected heating circuit"
+ },
+ {
+ "name": "max_perf_pump",
+ "label": "Max Perform Pump",
+ "description": "Upper limit for modulation of the pump output"
+ },
+ {
+ "name": "min_perf_pump",
+ "label": "Min Perform Pump",
+ "description": "Lower limit for modulation of the pump output"
+ },
+ {
+ "name": "outside_conf",
+ "label": "Outside Config",
+ "description": "Configuration of the optional external temperature sensor RoCon OT1"
+ },
+ {
+ "name": "storage_conf",
+ "label": "Storage Config",
+ "description": "Configuration of water heating"
+ },
+ {
+ "name": "pres_conf",
+ "label": "Pressure Config",
+ "description": "Configuring the sensor for assessment of the system water pressure"
+ },
+ {
+ "name": "out_temp_adapt",
+ "label": "Outside Temp Adap",
+ "description": "Individual adapting for the measured value of the outdoor temperature relevant for the Controller"
+ },
+ {
+ "name": "power_dhw",
+ "label": "Power DHW",
+ "description": "Heating output of electric auxiliary heater for hot water generation"
+ },
+ {
+ "name": "buh_s1_pow",
+ "label": "BUH s1 power",
+ "description": "Heat capacity of the ancillary electric heater in Stage 1 heating support"
+ },
+ {
+ "name": "buh_s2_pow",
+ "label": "BUH s2 power",
+ "description": "Heat capacity of the ancillary electric heater in Stage 2 heating support"
+ },
+ {
+ "name": "power_biv",
+ "label": "Power BIV",
+ "description": "Setting limits the output of the heating support"
+ },
+ {
+ "name": "tdiff_dhw_ch",
+ "label": "TDiff-DHW CH",
+ "description": "TDiff-DHW CH"
+ },
+ {
+ "name": "t_vbh1_max",
+ "label": "T vbh1 max",
+ "description": "Setting limits the inflow temperature (measured at tV, BH) with active heating support function"
+ },
+ {
+ "name": "equi_temp",
+ "label": "Equilibrium Temp",
+ "description": "Setting affects the operation of the potential-free AUX switching contact (toggle switch utput A) defined in the parameter [AUX Fct]"
+ },
+ {
+ "name": "quiet_mode",
+ "label": "Quiet Mode",
+ "description": "Mode for low-noise operation with reduced output"
+ },
+ {
+ "name": "aux_fct",
+ "label": "AUX Fct",
+ "description": "Setting assigns the switching conditions to the potential-free AUX contact (toggle switch output A)"
+ },
+ {
+ "name": "aux_time",
+ "label": "AUX time",
+ "description": "AUX switching contact (A) switches with a delay when the switching condition is pending for longer than the set time"
+ },
+ {
+ "name": "t_dhw_1_min",
+ "label": "T-DHW 1 min",
+ "description": "Switching threshold storage tank temperature (Tdhw) for AUX switching contact (see parameter [AUX Fct])"
+ },
+ {
+ "name": "delta_t_ch",
+ "label": "Delta-T CH",
+ "description": "Set outdoor temperature spread The ROTEX HPSU compact heating circulation pump controls the flow rate in order to achieve the set spread between the inflow target temperature and the return flow temperature (tV, BH - tR1)"
+ },
+ {
+ "name": "v_var",
+ "label": "V var",
+ "description": "Current minimum necessary volume flow in the system (calculated value, not configurable)"
+ },
+ {
+ "name": "t_flow_ch_adj",
+ "label": "T-Flow CH adj",
+ "description": "Only when parameter [Interlink fct] = On. With a closed cooling RT switching contact, the inflow target temperature is increased by the set value"
+ },
+ {
+ "name": "t_flow_cool_adj",
+ "label": "T-Flow Cooling adj",
+ "description": "Only when parameter [Interlink fct] = On. With a closed cooling RT switching contact, the cooling inflow target temperature is reduced by the set value"
+ },
+ {
+ "name": "min_pressure",
+ "label": "Min Pressure",
+ "description": "Defines the minimum water pressure"
+ },
+ {
+ "name": "max_pressure",
+ "label": "Max Pressure",
+ "description": "Defines the maximum water pressure"
+ },
+ {
+ "name": "setpoint_pressure",
+ "label": "Set Point Pressure",
+ "description": "Defines the set water pressure"
+ },
+ {
+ "name": "max_pressure_drop",
+ "label": "Max Pressuredrop",
+ "description": "Defines the maximum acceptable pressure drop in the heating system"
+ },
+ {
+ "name": "hc_func",
+ "label": "HC Function",
+ "description": "Setting defines the type of inflow temperature control"
+ },
+ {
+ "name": "t_frost_protect",
+ "label": "T-Frost Protect",
+ "description": "0=No frost protection of the heating circuit, Otherwise: If the outside temperature falls below the programmed value, the system switches into the frost protection mode (switches the pumps on). The function ceases once the outside temperature has risen to the set value +1 K"
+ },
+ {
+ "name": "insulation",
+ "label": "Insulation",
+ "description": "Setting the insulation standard of the building. This affects the way the heating curve and the heating times automatically adapt to the outside temperature."
+ },
+ {
+ "name": "screed",
+ "label": "Screed",
+ "description": "Function for screed drying"
+ },
+ {
+ "name": "t_screed_day1",
+ "label": "Temp screed day 1",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day2",
+ "label": "Temp screed day 2",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day3",
+ "label": "Temp screed day 3",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day4",
+ "label": "Temp screed day 4",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day5",
+ "label": "Temp screed day 5",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day6",
+ "label": "Temp screed day 6",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day7",
+ "label": "Temp screed day 7",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day8",
+ "label": "Temp screed day 8",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day9",
+ "label": "Temp screed day 9",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day10",
+ "label": "Temp screed day 10",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day11",
+ "label": "Temp screed day 11",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day12",
+ "label": "Temp screed day 12",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day13",
+ "label": "Temp screed day 13",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day14",
+ "label": "Temp screed day 14",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day15",
+ "label": "Temp screed day 15",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day16",
+ "label": "Temp screed day 16",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day17",
+ "label": "Temp screed day 17",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day18",
+ "label": "Temp screed day 18",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day19",
+ "label": "Temp screed day 19",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day20",
+ "label": "Temp screed day 20",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day21",
+ "label": "Temp screed day 21",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day22",
+ "label": "Temp screed day 22",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day23",
+ "label": "Temp screed day 23",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day24",
+ "label": "Temp screed day 24",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day25",
+ "label": "Temp screed day 25",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day26",
+ "label": "Temp screed day 26",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day27",
+ "label": "Temp screed day 27",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_screed_day28",
+ "label": "Temp screed day 28",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_out_lim_day",
+ "label": "T-Outside lim day",
+ "description": "Setting the procedural program for screed heating. An individual inflow temperature can be set for each day for a maximum period of 28 days. The end of the screed programme is defined by the 1st. Day at target value setting"
+ },
+ {
+ "name": "t_out_lim_night",
+ "label": "T-Outside lim night",
+ "description": "Parameter for setting the heating limit for \"Switch-off\" of the heating circuit during economy mode"
+ },
+ {
+ "name": "t_flow_day",
+ "label": "T-Flow Day",
+ "description": "Setting the inflow target temperature for the heating circuit during the heating time when in operating mode: \"Automatic 1\", \"Automatic 2\", \"Heating"
+ },
+ {
+ "name": "t_flow_night",
+ "label": "T-Flow night",
+ "description": "Setting the inflow target temperature for the heating circuit during the setback time when in operating mode: \"Automatic 1\", \"Automatic 2\", \"Reducing"
+ },
+ {
+ "name": "max_t_flow",
+ "label": "Max T-Flow",
+ "description": "The inflow temperature determined for the heating circuit is limited to the maximum value set here"
+ },
+ {
+ "name": "min_t_flow",
+ "label": "Min T-Flow",
+ "description": "The inflow temperature determined for the heating circuit is limited to the minimum value set here"
+ },
+ {
+ "name": "hc_adapt",
+ "label": "HC Adaption",
+ "description": "HC Adapation"
+ },
+ {
+ "name": "start_tout_cool",
+ "label": "Start T-Out Cooling",
+ "description": "Setting from which outside temperature the cooling operation with the highest cooling infeed target temperature"
+ },
+ {
+ "name": "max_tout_cool",
+ "label": "Max T-Out Cooling",
+ "description": "Setting to determine from which outdoor temperature the lowest cooling flow temperature"
+ },
+ {
+ "name": "t_flow_cool_start",
+ "label": "T-Flow Cooling start",
+ "description": "Setting the cooling inflow target temperature at the start of cooling mode"
+ },
+ {
+ "name": "t_flow_cool_max",
+ "label": "T-Flow Cooling max",
+ "description": "Setting the minimum cooling inflow target temperature. This is kept constant relative to the outside temperature"
+ },
+ {
+ "name": "min_t_flow_cool",
+ "label": "Min T-Flow Cooling",
+ "description": "Setting the absolute lower limit of the cooling inflow target temperature. The limitation is effective if a lower cooling inflow target temperature is determined based on other parameter settings"
+ },
+ {
+ "name": "t_flow_cool",
+ "label": "T-Flow Cooling",
+ "description": "Setting the cooling inflow target temperature (fixed value) when cooling mode is active"
+ },
+ {
+ "name": "cool_setpoint_adj",
+ "label": "Cooling Setpoint adj",
+ "description": "Parallel displacement of the cooling characteristic curve to match the set value"
+ },
+ {
+ "name": "circ_pump_dhw",
+ "label": "Circl-Pump DHW",
+ "description": "Setting for activating a circulation pump"
+ },
+ {
+ "name": "circ_pump_interval",
+ "label": "Circl-Pump Interval",
+ "description": "Setting the interval control for an optional circulation pump"
+ },
+ {
+ "name": "anti_leg_day",
+ "label": "Anti-Legionella day",
+ "description": "Setting the day for the thermal disinfection of the circulating tank"
+ },
+ {
+ "name": "anti_leg_time",
+ "label": "Anti-Legionella time",
+ "description": "Setting the start time of the thermal disinfection of the hot water circulating tank"
+ },
+ {
+ "name": "anti_leg_temp",
+ "label": "Anti-Legionella temp",
+ "description": "Setting the hot water target temperature during thermal disinfection of the hot water circulating tank"
+ },
+ {
+ "name": "max_dhw_loading",
+ "label": "Max DHW loading",
+ "description": "Setting limits the time period for hot water generation to the set target value"
+ },
+ {
+ "name": "dhw_off_time",
+ "label": "DHW Off Time",
+ "description": "Setting the block time following completion or interruption of a hot water generation cycle. New demand of hot water generation is satisfied only after expiry of this block time"
+ },
+ {
+ "name": "one_hot_water",
+ "label": "1x Hot Water",
+ "description": "Start of the one-off heating up of the hot water and the set value [T-DHW Setpoint 1], independent of the heating programmes"
+ },
+ {
+ "name": "timer_boh",
+ "label": "Timer BOH",
+ "description": "Delay time after which the reserve heating may support the heat pump in hot water charging"
+ },
+ {
+ "name": "t_reduced",
+ "label": "T-Reduced",
+ "description": "Target room temperature for the setback times for the permanent timer programmes [Automatic 1] and [Automatic 2]"
+ },
+ {
+ "name": "t_absence",
+ "label": "T-Absence",
+ "description": "Target room temperature for the setback times for the temporary timer programmes [Away] and [Vacation]"
+ },
+ {
+ "name": "t_room",
+ "label": "T-Room",
+ "description": "Room temperature measured by an optional Rocon U1 room station"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/definitions/CAN/German/commands_hpsu.json b/definitions/CAN/German/commands_hpsu.json
new file mode 100644
index 00000000..4bdf3b5e
--- /dev/null
+++ b/definitions/CAN/German/commands_hpsu.json
@@ -0,0 +1,741 @@
+{
+ "Model": "HPSU",
+ "Language": "German",
+ "Commands": [
+ {
+ "name": "t_hs",
+ "label": "T-WE",
+ "description": "Angezeigt wird die aktuelle Vorlauftemperatur (TVBH) des Waermeerzeugers in C."
+ },
+ {
+ "name": "t_hs_set",
+ "label": "T-WE Soll",
+ "description": "Angezeigt wird die aktuelle Vorlauf-Solltemperatur des Waermeerzeugers in C"
+ },
+ {
+ "name": "water_pressure",
+ "label": "Wasserdruck",
+ "description": "Angezeigt wird der aktuelle Wasserdruck in bar."
+ },
+ {
+ "name": "t_ext",
+ "label": "T-Aussen",
+ "description": "Angezeigt wird die gemittelte Aussentemperatur in C."
+ },
+ {
+ "name": "t_dhw",
+ "label": "T-WW",
+ "description": "Angezeigt wird die aktuelle Temperatur des Warmwasserspeichers in C. Sollte keine Warmwasserfunktion aktiviert sein, wird --- angezeigt."
+ },
+ {
+ "name": "t_dhw_set",
+ "label": "T-WW Soll",
+ "description": "aktuelle Warmwasser-Solltemperatur in C. Sollte keine Warmwasserfunktion aktiviert sein, wird --- angezeigt. Der aktuelle Sollwert ist hier immer der Maximalwert aller fuer diesen Warmwasserkreis relevanten Anforderungen."
+ },
+ {
+ "name": "t_return",
+ "label": "T-Ruecklauf",
+ "description": "Angezeigt wird die aktuelle Ruecklauftemperatur des Waermeerzeugers in C. Ist kein entsprechender Sensor am Waermeerzeuger angeschlossen, wird --- angezeigt."
+ },
+ {
+ "name": "flow_rate",
+ "label": "Durchfluss",
+ "description": "Angezeigt wird der gefilterte Wert des aktuellen Volumenstroms in Liter pro Stunde."
+ },
+ {
+ "name": "t_hc",
+ "label": "T-HK",
+ "description": "Angezeigt wird die Vorlauftemperatur des direkten Heizkreises in C."
+ },
+ {
+ "name": "t_hc_set",
+ "label": "T-HK Soll",
+ "description": "Angezeigt wird die Vorlauf-Solltemperatur des direkten Heizkreises in C."
+ },
+ {
+ "name": "status_pump",
+ "label": "Status Kesselpumpe",
+ "description": "Angezeigt wird der aktuelle Status der internen Heizungsumwaelzpumpe der ROTEX HPSU compact."
+ },
+ {
+ "name": "runtime_comp",
+ "label": "Laufzeit Kompr",
+ "description": "Angezeigt wird die Laufzeit des Kuehltemittelverdichters in h."
+ },
+ {
+ "name": "runtime_pump",
+ "label": "Laufzeit Pumpe",
+ "description": "Angezeigt wird die Laufzeit der internen Heizungsumwaelzpumpe in h."
+ },
+ {
+ "name": "posmix",
+ "label": "Mischer Position",
+ "description": "aktuelle Stellung des 3-Wege-Umschaltventils 3UV DHW. 0 %: Stellung A (Raumheizung) 100 %: Stellung B (Warmwasserbereitung)"
+ },
+ {
+ "name": "qboh",
+ "label": "EHS fuer DHW",
+ "description": "Angezeigt wird die Waermemenge des zusaetzlichen Waermeerzeugers fuer die Warmwasserbereitung in kWh."
+ },
+ {
+ "name": "qchhp",
+ "label": "EHS fuer CH",
+ "description": "Angezeigt wird die Waermemenge des zusaetzlichen Waermeerzeugers fuer den Heizbetrieb in kWh."
+ },
+ {
+ "name": "qsc",
+ "label": "Energie Kuehlung",
+ "description": "Angezeigt wird die Waermemenge der Waermepumpe fuer den Kuehlbetrieb in kWh."
+ },
+ {
+ "name": "qch",
+ "label": "Energie Heizung",
+ "description": "Angezeigt wird die Waermemenge der Waermepumpe fuer den Heizbetrieb in kWh."
+ },
+ {
+ "name": "qwp",
+ "label": "Energie erzeugt",
+ "description": "Angezeigt wird die gesamte Waermemenge der Waermepumpe in kWh."
+ },
+ {
+ "name": "qdhw",
+ "label": "Energie fuer WW",
+ "description": "Angezeigt wird die Waermemenge fuer die Warmwasserbereitung in kWh."
+ },
+ {
+ "name": "sw_vers_01",
+ "label": "Version SW 1",
+ "description": "Software Version 1"
+ },
+ {
+ "name": "sw_vers_02",
+ "label": "Version SW 2",
+ "description": "Software Version 2"
+ },
+ {
+ "name": "sw_vers_03",
+ "label": "Version SW 3",
+ "description": "Software version 3"
+ },
+ {
+ "name": "mode_01",
+ "label": "Modus",
+ "description": "Modus Rotex"
+ },
+ {
+ "name": "tvbh2",
+ "label": "TVBH2 [C]",
+ "description": "Aktuelle Temperatur Heizung Vorlauf ggf. nach Heizungsunterstuetzungswaermetauscher (tV,BH)."
+ },
+ {
+ "name": "tliq2",
+ "label": "Tliq2 [C]",
+ "description": "Aktuelle Kältemitteltemperatur (tliq2)."
+ },
+ {
+ "name": "tr2",
+ "label": "TR2 [C]",
+ "description": "Aktuelle Temperatur Heizung Ruecklauf, sekundaerer Fuehler (tR2)."
+ },
+ {
+ "name": "ta2",
+ "label": "TA2 [C]",
+ "description": "Aktuelle Aussentemperatur (gemessen von Temperaturfuehler des Waermepumpenaussengeraets)"
+ },
+ {
+ "name": "tdhw2",
+ "label": "Tdhw2 [C]",
+ "description": "Current temperature in domestic hot water storage tank, secondary sensor (tDHW2)."
+ },
+ {
+ "name": "quiet",
+ "label": "quiet",
+ "description": "Shows the status of the whisper mode."
+ },
+ {
+ "name": "mode",
+ "label": "Modus",
+ "description": "Aktueller Modus der Wärmepumpe: ---: No heating or cooling demand : Heating : Cooling : Domestic hot water generation : Automatic defrosting function active"
+ },
+ {
+ "name": "pump",
+ "label": "Pump",
+ "description": "Aktuelle Leistung der internen Heizungsumwälzpumpe in %"
+ },
+ {
+ "name": "ext",
+ "label": "Ext",
+ "description": "Aktueller Energiemodus der Wärmepumpe: LT: EVU-Funktion HT/NT aktiv und Niedertarif. HT: EVU-Funktion HT/NT aktiv und Hochtarif. SGN: EVU-Funktion SMART GRID aktiv, Normalbetrieb. SG1: EVU-Funktion SMART GRID aktiv, Abwurf: kein Wärmepumpenbetrieb, keine Frostschutzfunktion. SG2: EVU-Funktion SMART GRID aktiv, Einschaltempfehlung, Betrieb mit höheren Solltemperaturen, billiger Strom. SG3:EVU-Funktion SMART GRID aktiv, Einschaltbefehl und Speicherladung auf 70 °C, billiger Strom. - - -: Kein externer Modus aktiv, Wärmepumpe arbeitet im normalen Betrieb."
+ },
+ {
+ "name": "ehs",
+ "label": "EHS",
+ "description": "Aktuelle Leistung des Backup-Heaters in kW"
+ },
+ {
+ "name": "rt",
+ "label": "RT",
+ "description": "Parameter [Room thermostat] / [Interlink fct]"
+ },
+ {
+ "name": "bpv",
+ "label": "BPV",
+ "description": "Aktuelle Position Mischventil 3UVB1 (100% = A, 0% = B)"
+ },
+ {
+ "name": "t_v1",
+ "label": "TV",
+ "description": "Aktuelle Vorlauftemperatur nach dem Plattenwaermetauscher (tV1)"
+ },
+ {
+ "name": "t_dhw1",
+ "label": "Tdhw",
+ "description": "Aktuelle Temperatur im Warmwasserspeicher (tDHW1)"
+ },
+ {
+ "name": "t_vbh",
+ "label": "TVBH",
+ "description": "Aktuelle Temperatur Heizung Vorlauf ggf. nach Heizungsunterstuetzungswaermetauscher (tV,BH)"
+ },
+ {
+ "name": "t_outdoor_ot1",
+ "label": "TA",
+ "description": "Aktuelle Aussentemperatur (gemessen von optionalem Temperaturfuehler RoCon OT1)"
+ },
+ {
+ "name": "t_r1",
+ "label": "TR",
+ "description": "Aktuelle Temperatur Heizung Ruecklauf (tR1)"
+ },
+ {
+ "name": "v1",
+ "label": "V",
+ "description": "Aktueller Volumenstrom (Durchfluss) in der Heizungsanlage"
+ },
+ {
+ "name": "t_room1_setpoint",
+ "label": "T Room 1 Setpoint",
+ "description": "Setpoint 1 value"
+ },
+ {
+ "name": "t_room2_setpoint",
+ "label": "T Room 2 Setpoint",
+ "description": "Setpoint 2 value"
+ },
+ {
+ "name": "t_room3_setpoint",
+ "label": "T Room 3 Setpoint",
+ "description": "Setpoint 3 value"
+ },
+ {
+ "name": "heat_slope",
+ "label": "Heizkurve",
+ "description": "Heizkurve"
+ },
+ {
+ "name": "t_dhw_setpoint1",
+ "label": "T-WW Soll 1",
+ "description": "Sollwert der Warmwassertemperatur in Grad C, welche fuer den 1. Schaltzeitzyklus der Zeitprogramme [Automatik 1] und [Automatik 2] gilt"
+ },
+ {
+ "name": "t_dhw_setpoint2",
+ "label": "T-WW Soll 1",
+ "description": "Sollwert der Warmwassertemperatur in Grad C, welche fuer den 2. Schaltzeitzyklus der Zeitprogramme [Automatik 1] und [Automatik 2] gilt"
+ },
+ {
+ "name": "t_dhw_setpoint3",
+ "label": "T-WW Soll 1",
+ "description": "Sollwert der Warmwassertemperatur in Grad C, welche fuer den 3. Schaltzeitzyklus der Zeitprogramme [Automatik 1] und [Automatik 2] gilt"
+ },
+ {
+ "name": "hyst_hp",
+ "label": "Hysterese WW",
+ "description": "Einstellung der Hysterese fuer die Warmwasserbereitung. Die Warmwasserbereitung wird aktiviert, wenn die am Warmwasserfuehler gemessene Temperatur unter die aktuelle Warmwasser-Solltemperatur minus dem hier eingestellten Wert liegt. Eine Warmwasserbereitung istbeendet, wenn die am Warmwasserfuehler gemessene Temperatur ueber der aktuellen Warmwasser-Solltemperatur liegt"
+ },
+ {
+ "name": "t_flow_cooling",
+ "label": "T-Flow Kuehlung",
+ "description": "T-Flow Kühlung"
+ },
+ {
+ "name": "error",
+ "label": "Fehler",
+ "description": "Fehlercodename"
+ },
+ {
+ "name": "outdoor_type",
+ "label": "Aussengerät",
+ "description": "Typ Wärmepumpenaußengerät"
+ },
+ {
+ "name": "indoor_unit",
+ "label": "Innengerät",
+ "description": "Typ Wärmepumpeninnengerät"
+ },
+ {
+ "name": "func_heating",
+ "label": "Funktion EHS",
+ "description": "Einstellung ob zusätzlicher Wärmeerzeuger (WEZ) für Warmwasserbereitung und Heizungsunterstützung vorhanden ist"
+ },
+ {
+ "name": "hzu",
+ "label": "HZ Unterstützung",
+ "description": "Heizungsunterstützung aus Warmwasserspeicher, wenn Mindesttemperatur überschritten ist"
+ },
+ {
+ "name": "equi_func",
+ "label": "Bivalenzfunktion",
+ "description": "Die Bivalenzfunktion ist für den Betrieb des optionalen Zuheizers aufgrund einer Backup-Anforderung (Raumheizbetrieb) relevant."
+ },
+ {
+ "name": "smart_grid",
+ "label": "SMART GRID",
+ "description": "Auswertung des SG-Signals"
+ },
+ {
+ "name": "modus_sg",
+ "label": "Modus SG",
+ "description": "Nur wenn Parameter [SMART GRID] = 1: Dient zu einer möglichen Soll-Temperaturerhöhung bei einem SMART GRID-Einschaltbefehl"
+ },
+ {
+ "name": "ht_nt_func",
+ "label": "HT/NT Funktion",
+ "description": "Einstellung, welche Wärmequellen ausgeschaltet werden, wenn bei einem Niedertarif-Netzanschluss das vom Energieversorgungsunternehmen (EVU) ausgegebene Signal für Hochtarif empfangen wird."
+ },
+ {
+ "name": "ht_nt_contact",
+ "label": "HT/NT Anschluss",
+ "description": "Festlegung, ob der HT-/NT-Eingang als Öffner- oder Schließerkontakt ausgewertet wird"
+ },
+ {
+ "name": "room_therm",
+ "label": "Raumthermostat",
+ "description": "Konfiguration eines am Anschluss J16 der ROTEX HPSU compact angeschlossenen Raumthermostats mit potenzialfreien Kontakten"
+ },
+ {
+ "name": "interlink",
+ "label": "Interlinkfunktion",
+ "description": "Konfiguration für Anlagen, die mit 2 verschiedenen Vorlauf-Solltemperaturen betrieben werden"
+ },
+ {
+ "name": "air_purge",
+ "label": "Entlüftungsfunktion",
+ "description": "Aktivierung der automatischen Entlüftung der ROTEX HPSU compact und des angeschlossenen Heizkreislaufs"
+ },
+ {
+ "name": "max_perf_pump",
+ "label": "Max Leistung Pumpe",
+ "description": "Obergrenze für die Modulation der Pumpenleistung"
+ },
+ {
+ "name": "min_perf_pump",
+ "label": "Min Leistung Pumpe",
+ "description": "Untergrenze für die Modulation der Pumpenleistung"
+ },
+ {
+ "name": "outside_conf",
+ "label": "SKonfig T-Aussen",
+ "description": "Konfiguration des optionalen Außentemperaturfühlers RoCon OT1"
+ },
+ {
+ "name": "storage_conf",
+ "label": "SKonfig T-WW",
+ "description": "Konfiguration der Warmwasserbereitung"
+ },
+ {
+ "name": "pres_conf",
+ "label": "SKonfig Druck",
+ "description": "Konfiguration des Sensors zur Erfassung des Wasserdrucks der Anlage"
+ },
+ {
+ "name": "out_temp_adapt",
+ "label": "AF Anpassung",
+ "description": "Individuelle Anpassung für den Messwert der für die Regelung relevanten Außentemperatur"
+ },
+ {
+ "name": "power_dhw",
+ "label": "Leistung WW",
+ "description": "Wärmeleistung des elektrischen Zuheizers für Warmwasserbereitung"
+ },
+ {
+ "name": "buh_s1_pow",
+ "label": "Leistung EHS Stufe 1",
+ "description": "Wärmeleistung des elektrischen Zuheizers bei Heizungsunterstützung Stufe 1"
+ },
+ {
+ "name": "buh_s2_pow",
+ "label": "Leistung EHS Stufe 2",
+ "description": "Wärmeleistung des elektrischen Zuheizers bei Heizungsunterstützung Stufe 2"
+ },
+ {
+ "name": "power_biv",
+ "label": "Leistung BIV",
+ "description": "Einstellung begrenzt Leistung der Heizungsunterstützung"
+ },
+ {
+ "name": "tdiff_dhw_ch",
+ "label": "TDiff-WW HZU",
+ "description": "TDiff-WW HZU"
+ },
+ {
+ "name": "t_vbh1_max",
+ "label": "Max Temp Heizung",
+ "description": "Einstellung begrenzt die Vorlauf-Solltemperatur (gemessen an tV, BH) bei aktiver Heizungsunterstützungsfunktion"
+ },
+ {
+ "name": "equi_temp",
+ "label": "Bivalenztemperatur",
+ "description": "Einstellung beeinflusst die im Parameter [Sonderfkt Schaltk] definierte Wirkungsweise des potenzialfreien AUX-Schaltkontakts (Wechselschaltausgang A)"
+ },
+ {
+ "name": "quiet_mode",
+ "label": "Flüsterbetrieb",
+ "description": "Modus für geräuscharmen Betrieb bei reduzierter Leistung"
+ },
+ {
+ "name": "aux_fct",
+ "label": "Sonderfkt Schaltk",
+ "description": "Einstellung weist die Schaltbedingungen für den potenzialfreien AUX-Schaltkontakt zu"
+ },
+ {
+ "name": "aux_time",
+ "label": "Wartezeit Sonderfkt",
+ "description": "AUX-Schaltkontakt (A) schaltet erst verzögert, wenn die Schaltbedingung"
+ },
+ {
+ "name": "t_dhw_1_min",
+ "label": "Schaltschwelle TDHW",
+ "description": "Schaltschwelle Speichertemperatur (Tdhw) für AUX-Schaltkontakt"
+ },
+ {
+ "name": "delta_t_ch",
+ "label": "Spreizung Mod HZ",
+ "description": "Sollspreizung für Raumheizung. Die Heizungsumwälzpumpe der ROTEX HPSU compact regelt den Durchfluss, um die in dem Parameter hinterlegte Sollspreizung zwischen Vorlauf-Solltemperatur und Rücklauftemperatur (tV, BH - tR1), zu erreichen"
+ },
+ {
+ "name": "v_var",
+ "label": "DurchflussBer",
+ "description": "Aktuell benötigter Mindest-Volumenstrom der Anlage"
+ },
+ {
+ "name": "t_flow_ch_adj",
+ "label": "Anpass T-VL Heizen",
+ "description": "Nur wenn Parameter [Interlinkfunktion] = Ein. Vorlauf-Solltemperatur wird bei geschlossenem RT-Schaltkontakt Kühlen um den eingestellten Wert erhöht"
+ },
+ {
+ "name": "t_flow_cool_adj",
+ "label": "Anpass T-VL Kühlen",
+ "description": "Nur wenn Parameter [Interlinkfunktion] = Ein. Kühlvorlauf-Solltemperatur wird bei geschlossenem RT-Schaltkontakt Kühlen um den eingestellten Wert reduziert"
+ },
+ {
+ "name": "min_pressure",
+ "label": "Min Druck",
+ "description": "Definiert den minimalen Wasserdruck"
+ },
+ {
+ "name": "max_pressure",
+ "label": "Max Druck",
+ "description": "Definiert den maximalen Wasserdruck"
+ },
+ {
+ "name": "setpoint_pressure",
+ "label": "Soll Druck",
+ "description": "Definiert den Soll-Wasserdruck"
+ },
+ {
+ "name": "max_pressure_drop",
+ "label": "Max Druckverlust",
+ "description": "Definiert den maximal akzeptablen Druckverlust in der Heizungsanlage"
+ },
+ {
+ "name": "hc_func",
+ "label": "HK Funktion",
+ "description": "Einstellung definiert Art der Vorlauftemperaturregelung"
+ },
+ {
+ "name": "t_frost_protect",
+ "label": "T-Frostschutz",
+ "description": "Aus: Kein Frostschutz des Heizkreises Sonst: Wenn die Außentemperatur unter den eingestellten Wert sinkt, schaltet die Anlage in den Frostschutzbetrieb (Einschalten der Pumpen). Die Funktion wird beendet,wenn die Außentemperatur über den eingestellten Wert +1 K steigt"
+ },
+ {
+ "name": "insulation",
+ "label": "Gebäudedämmung",
+ "description": "Einstellung des Gebäudedämmstandards. Dadurch werden die gemittelte Außentemperatur und die automatischen Anpassungen der Heizkurve und der Heizzeiten beeinflusst"
+ },
+ {
+ "name": "screed",
+ "label": "Estrich",
+ "description": "Funktion zur Estrichtrocknung"
+ },
+ {
+ "name": "t_screed_day1",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day2",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day3",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day4",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day5",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day6",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day7",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day8",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day9",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day10",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day11",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day12",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day13",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day14",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day15",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day16",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day17",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day18",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day19",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day20",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day21",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day22",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day23",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day24",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day25",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day26",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day27",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_screed_day28",
+ "label": "Estrichprogramm",
+ "description": "Einstellung des Ablaufprogramms der Estrichaufheizung. Für eine Dauer von maximal 28 Tagen kann separat für jeden Tag eine eigene Vorlauf-Solltemperatur eingestellt werden. Das Ende des Estrichprogramms wird durch den 1. Tag mit der Sollwerteinstellung - - - - definiert"
+ },
+ {
+ "name": "t_out_lim_day",
+ "label": "Heizgrenze Tag",
+ "description": "Einstellung der automatischen Sommerabschaltung des Heizbetriebs"
+ },
+ {
+ "name": "t_out_lim_night",
+ "label": "Heizgrenze Nacht",
+ "description": "Einstellung der Heizgrenze zur \"Abschaltung\" des Heizkreises während der Absenkzeit"
+ },
+ {
+ "name": "t_flow_day",
+ "label": "T-Vorlauf Tag",
+ "description": "Einstellung der Vorlauf-Solltemperatur für den Heizkreis während der Heizzeit bei Betriebsart: \"Automatik 1\", \"Automatik 2\", \"Heizen"
+ },
+ {
+ "name": "t_flow_night",
+ "label": "T-Vorlauf Nacht",
+ "description": "Einstellung der Vorlauf-Solltemperatur für den Heizkreis während der Absenkzeit bei Betriebsart: \"Automatik 1\", \"Automatik 2\", \"Absenken"
+ },
+ {
+ "name": "max_t_flow",
+ "label": "Max T-Vorlauf",
+ "description": "Die ermittelte Vorlauf-Solltemperatur des Heizkreises wird auf den hier eingestellten Maximalwert begrenzt"
+ },
+ {
+ "name": "min_t_flow",
+ "label": "Min T-Vorlauf",
+ "description": "Die ermittelte Vorlauf-Solltemperatur des Heizkreises wird auf den hier eingestellten Minimalwert begrenzt"
+ },
+ {
+ "name": "hc_adapt",
+ "label": "Heizk Adaption",
+ "description": "Heizk Adaption"
+ },
+ {
+ "name": "start_tout_cool",
+ "label": "Start Kühlen A-Temp",
+ "description": "Einstellung, ab welcher Außentemperatur der Kühlbetrieb mit der höchsten Kühlvorlauf- Solltemperatur startet"
+ },
+ {
+ "name": "max_tout_cool",
+ "label": "Max Kühlen A-Temp",
+ "description": "Einstellung, bei welcher Außentemperatur die niedrigste Kühlvorlauf-Solltemperatur vorgegeben wird"
+ },
+ {
+ "name": "t_flow_cool_start",
+ "label": "VL-Soll Start Kühlen",
+ "description": "Einstellung der Kühlvorlauf-Solltemperatur beim Start des Kühlbetriebs"
+ },
+ {
+ "name": "t_flow_cool_max",
+ "label": "VL-Soll Max Kühlen",
+ "description": "Einstellung der minimalen Kühlvorlauf-Solltemperatur. Diese wird ab der Außentemperatur"
+ },
+ {
+ "name": "min_t_flow_cool",
+ "label": "Min VL-Soll Kühlen",
+ "description": "Einstellung der absoluten Untergrenze der Kühlvorlauf-Solltemperatur. Begrenzung wirkt, falls aus anderen Parametereinstellungen eine niedrigere Kühlvorlauf-Solltemperatur ermittelt würde"
+ },
+ {
+ "name": "t_flow_cool",
+ "label": "T-VL Kühlen",
+ "description": "Einstellung der Kühlvorlauf-Solltemperatur (Festwert) bei aktivem Kühlbetrieb"
+ },
+ {
+ "name": "cool_setpoint_adj",
+ "label": "Kühlsollwert Korr",
+ "description": "Parallelverschiebung der Kühl-Kennlinie um den eingestellten Wert"
+ },
+ {
+ "name": "circ_pump_dhw",
+ "label": "Zirk mit WW-Prog",
+ "description": "Einstellung zur Ansteuerung einer Zirkulationspumpe"
+ },
+ {
+ "name": "circ_pump_interval",
+ "label": "Zirk Intervall",
+ "description": "Einstellung der Intervallsteuerung für optionale Zirkulationspumpe"
+ },
+ {
+ "name": "anti_leg_day",
+ "label": "Antileg Tag",
+ "description": "Einstellung des Tages zur thermischen Desinfektion des Warmwasserspeichers"
+ },
+ {
+ "name": "anti_leg_time",
+ "label": "Antileg Zeit",
+ "description": "Einstellung der Startzeit der thermischen Desinfektion des Warmwasserspeichers"
+ },
+ {
+ "name": "anti_leg_temp",
+ "label": "Antileg Temp",
+ "description": "Einstellung der Warmwasser-Solltemperatur während der thermischen Desinfektion des Warmwasserspeichers"
+ },
+ {
+ "name": "max_dhw_loading",
+ "label": "Max WW Ladezeit",
+ "description": "Einstellung begrenzt den Zeitraum für die Warmwasserbereitung auf den eingestellten Sollwert"
+ },
+ {
+ "name": "dhw_off_time",
+ "label": "WW Sperrzeit",
+ "description": "Einstellung der Sperrzeit nach Abschluss oder Abbruch eines Warmwasserbereitungszyklus"
+ },
+ {
+ "name": "one_hot_water",
+ "label": "1x Warmwasser",
+ "description": "Start der einmaligen Aufheizung des Warmwassers auf den eingestellten Sollwert"
+ },
+ {
+ "name": "timer_boh",
+ "label": "Wartezeit BOH",
+ "description": "Verzögerungszeit, ab wann der zusätzliche Wärmeerzeuger die Wärmepumpe bei einer Warmwasserladung unterstützen darf"
+ },
+ {
+ "name": "t_reduced",
+ "label": "T-Absenkung",
+ "description": "Raum-Solltemperatur für die Absenkzeiten der permanenten Zeitprogramme [Automatik 1] und [Automatik 2] gilt"
+ },
+ {
+ "name": "t_absence",
+ "label": "T-Abwesend",
+ "description": "Raum-Solltemperatur für die Absenkzeiten der temporären Zeitprogramme [Abwesend] + [Urlaub]"
+ },
+ {
+ "name": "t_room",
+ "label": "T-Raum",
+ "description": "Raumtemperatur, die von einer optionalen Rocon U1 Raumstation gemessen wird"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/definitions/CAN/Italian/commands_hpsu.json b/definitions/CAN/Italian/commands_hpsu.json
new file mode 100644
index 00000000..283961ff
--- /dev/null
+++ b/definitions/CAN/Italian/commands_hpsu.json
@@ -0,0 +1,741 @@
+{
+ "Model": "HPSU",
+ "Language": "Italian",
+ "Commands": [
+ {
+ "name": "t_hs",
+ "label": "T-GDC",
+ "description": "Viene visualizzata la temperatura corrente (di mandata) del generatore di calore."
+ },
+ {
+ "name": "t_hs_set",
+ "label": "T-GDC nom",
+ "description": "Viene visualizzata la temperatura nominale corrente del generatore di calore in °C con un valore decimale."
+ },
+ {
+ "name": "water_pressure",
+ "label": "Pressione Acqua",
+ "description": "Viene visualizzata la pressione idrica corrente espressa in bar."
+ },
+ {
+ "name": "t_ext",
+ "label": "T-Esterna",
+ "description": "Viene visualizzata la temperatura esterna corrente in °C con un valore decimale."
+ },
+ {
+ "name": "t_dhw",
+ "label": "T-Ac",
+ "description": "Viene visualizzata la temperatura corrente del bollitore di acqua calda in°C con un valore decimale. Se non fosse attivata alcuna funzione acqua calda, viene visualizzato \"- - -\"."
+ },
+ {
+ "name": "t_dhw_set",
+ "label": "T-Accumulatore",
+ "description": "Viene visualizzata la temperatura nominale corrente per l'approntamento di acqua calda in °C con un valore decimale. Se non fosse attivata alcuna funzione acqua calda, viene visualizzato \"- - -\". Il valore nominale corrente qui è sempre il valore massimo di tutte le richieste rilevanti per questo circuito dell'acqua calda."
+ },
+ {
+ "name": "t_return",
+ "label": "T-ritorno",
+ "description": "Viene visualizzata la temperatura di ritorno corrente del generatore di calore in °C con un valore decimale. Se non è collegato il relativo sensore al generatore di calore, viene visualizzato \"- - -"
+ },
+ {
+ "name": "flow_rate",
+ "label": "Flusso volumetrico",
+ "description": "Viene visualizzato il valore filtrato del flusso di volume corrente."
+ },
+ {
+ "name": "t_hc",
+ "label": "Temp. Circ. Riscald",
+ "description": "Viene visualizzata la temperatura del circuito di riscaldamento diretto in °C con un valore decimale."
+ },
+ {
+ "name": "t_hc_set",
+ "label": "Temp. Nomin. Circ. Risc.",
+ "description": "Viene visualizzata la temperatura nominale (di mandata) del circuito di riscaldamento diretto in °C con un valore decimale."
+ },
+ {
+ "name": "status_pump",
+ "label": "Status pompa",
+ "description": "Stato attuale della pompa di circolazione per riscaldamento interna del ROTEX HPSU compact."
+ },
+ {
+ "name": "runtime_comp",
+ "label": "Tempo oper. Comp",
+ "description": "Viene visualizzato il tempo di funzionamento del compressore espresso in ore."
+ },
+ {
+ "name": "runtime_pump",
+ "label": "Tempo oper. Pompa",
+ "description": "Viene visualizzato il tempo di funzionamento della pompa."
+ },
+ {
+ "name": "posmix",
+ "label": "Posizione Miscelatore",
+ "description": "Viene visualizzata la posizione corrente del miscelatore 3UV1 in %."
+ },
+ {
+ "name": "qboh",
+ "label": "Qboh",
+ "description": "Viene visualizzata la quantità di calore del riscaldamento di riserva per l'approntamento di acqua calda in kWh."
+ },
+ {
+ "name": "qchhp",
+ "label": "Qchhp",
+ "description": "Viene visualizzata la quantità di calore del riscaldamento di riserva per la modalità di riscaldamento in kWh."
+ },
+ {
+ "name": "qsc",
+ "label": "Qsc",
+ "description": "Viene visualizzata la quantità di calore della pompa di calore per la modalità di raffrescamento in kWh."
+ },
+ {
+ "name": "qch",
+ "label": "Qch",
+ "description": "Viene visualizzata la quantità di calore della pompa di calore per la modalità di riscaldamento in kWh."
+ },
+ {
+ "name": "qwp",
+ "label": "QWP",
+ "description": "Viene visualizzata l'intera quantità di calore della pompa di calore in kWh."
+ },
+ {
+ "name": "qdhw",
+ "label": "Qdhw",
+ "description": "Viene visualizzata la quantità di calore per l'approntamento di acqua calda in kWh."
+ },
+ {
+ "name": "sw_vers_01",
+ "label": "Numero Software CUI",
+ "description": "Viene visualizzato il software e la versione dell'unità di comando."
+ },
+ {
+ "name": "sw_vers_02",
+ "label": "Num Software Regolat",
+ "description": "Viene visualizzato il numero di software e la versione della scheda di regolazione."
+ },
+ {
+ "name": "sw_vers_03",
+ "label": "SW Nr. RTX RT",
+ "description": "Viene visualizzato il numero di software e la versione della scheda modbus."
+ },
+ {
+ "name": "mode_01",
+ "label": "Modo operativo",
+ "description": "Parametro per l'impostazione della modalità di funzionamento del circuito di riscaldamento interno. Per l'impostazione \"- - - -\" per questo circuito di riscaldamento si utilizza l'interruttore rotante della regolazione. Con l'impostazione della modalità di funzionamento \"Standby/OFF\", e \"Estate\" dell'interruttore rotante della centralina, si ottiene la riduzione di potenza di tutti i circuiti di riscaldamento o di consumo di tutto l'impianto. 0: --- 1: Standby 2: Riduzione 3: Riscaldamento 4: Raffrescamento 5: Estate 6: Automatico 1 7: Automatico 2"
+ },
+ {
+ "name": "tvbh2",
+ "label": "TVBH2 [C]",
+ "description": "Temperatura di mandata attuale riscaldamento (tV,BH)."
+ },
+ {
+ "name": "tliq2",
+ "label": "Tliq2 [C]",
+ "description": "Temperatura corrente del refrigerante (tliq2)."
+ },
+ {
+ "name": "tr2",
+ "label": "TR2 [C]",
+ "description": "Temperatura di ritorno attuale riscaldamento, sensore secondario (tR2)."
+ },
+ {
+ "name": "ta2",
+ "label": "TA2 [C]",
+ "description": "Temperatura esterna attuale (misurata dalla sonda della pompa di calore esterna)."
+ },
+ {
+ "name": "tdhw2",
+ "label": "Tdhw2 [C]",
+ "description": "Temperatura dell'acqua calda attuale nel bollitore dell'acqua calda, sensore secondario (tDHW2)."
+ },
+ {
+ "name": "quiet",
+ "label": "Modalità silenziosa",
+ "description": "Modalità per funzionamento silenzioso Esistono due modalità. In determinati casi, il funzionamento silenzioso si nota a causa della riduzione della potenza. 0: disattivato 1: attivato 2: Intervallo (funzionamento notturno fra le ore 22:00 e le ore 5:00 in modalità silenziosa)"
+ },
+ {
+ "name": "mode",
+ "label": "Mode",
+ "description": "Modalita' attuale della pompa di calore: 0: not active 1: riscaldare 2: Raffreddare 3: Funzione scongelamento attiva (Defrost) 4: Produzione di acqua calda (ACS)"
+ },
+ {
+ "name": "pump",
+ "label": "Pump",
+ "description": "Potenza attuale della pompa di circolazione per riscaldamento interna in %."
+ },
+ {
+ "name": "ext",
+ "label": "Ext",
+ "description": "Modalita' energetica attuale della pompa di calore:\\nLT: Funzione EVU attiva e tariffa ridotta.\\nHT: Funzione EVU attiva e tariffa normale.\\nSGN: SMART GRID - Funzione attiva, funzionamento\\nnormale.\\nSG1: SMART GRID - Funzione attiva, lancio,\\ncorrente piu' cara.\\nSG2: SMART GRID - Funzione attiva, funzionamento\\naumentato, corrente piu' conveniente.\\nSG3: SMART GRID - Funzione attiva, comando di attivazione e funzionamento aumentato, corrente piu' conveniente. '- - -': Nessuna modalita' esterna attiva, la pompa di calore funziona in modo normale."
+ },
+ {
+ "name": "ehs",
+ "label": "EHS",
+ "description": "Potenza attuale del Backup-Heater (BUH) in kW."
+ },
+ {
+ "name": "rt",
+ "label": "Room thermostat",
+ "description": "Attivazione di un termostato ambientale. Attivando questa funzione, la temperatura nominale ambientale viene controllata solo tramite il termostato ambientale. 0: Disattivato 1: Attivato"
+ },
+ {
+ "name": "bpv",
+ "label": "BPV",
+ "description": "Posizione attuale della valvola di miscelazione 3UVB1 (100 % = A, 0 % = B)."
+ },
+ {
+ "name": "t_v1",
+ "label": "TV",
+ "description": "Temperatura di mandata corrente (tV1)."
+ },
+ {
+ "name": "t_dhw1",
+ "label": "Tdhw",
+ "description": "Temperatura dell'acqua calda attuale nel bollitore dell'acqua calda (tDHW1)."
+ },
+ {
+ "name": "t_vbh",
+ "label": "TVBH",
+ "description": "Temperatura di uscita dell'acqua bollitore dell'acqua calda (tV,BH)."
+ },
+ {
+ "name": "t_outdoor_ot1",
+ "label": "TA",
+ "description": "Temperatura esterna attuale (misurata dalla sonda di temperatura opzionale RoCon OT1)."
+ },
+ {
+ "name": "t_r1",
+ "label": "TR",
+ "description": "Temperatura di ritorno attuale riscaldamento (tR1)."
+ },
+ {
+ "name": "v1",
+ "label": "V",
+ "description": "Flusso di volume attuale (portata) nell'impianto di riscaldamento."
+ },
+ {
+ "name": "t_room1_setpoint",
+ "label": "T-Ambiente 1",
+ "description": "Viene impostato il valore nominale della temperatura ambiente in °C con un valore decimale, che vale per il primo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2. (testo dal manuale installatore) Questi parametri influenzano, oltre alla temperatura esterna, la curva calore e possibilmente la temperatura ambiente rilevata dal dispositivo di controllo EHS157034 (se presente e configurato), la temperatura di mandata desiderata per il circuito di riscaldamento. Se questi parametri vengono impostati erroneamente, questo può influenzare fortemente il funzionamento della pompa calore in modalità riscaldamento."
+ },
+ {
+ "name": "t_room2_setpoint",
+ "label": "T-Ambiente 2",
+ "description": "Viene impostato il valore nominale della temperatura ambiente in °C con un valore decimale, che vale per il primo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2. (testo dal manuale installatore) Questi parametri influenzano, oltre alla temperatura esterna, la curva calore e possibilmente la temperatura ambiente rilevata dal dispositivo di controllo EHS157034 (se presente e configurato), la temperatura di mandata desiderata per il circuito di riscaldamento. Se questi parametri vengono impostati erroneamente, questo può influenzare fortemente il funzionamento della pompa calore in modalità riscaldamento."
+ },
+ {
+ "name": "t_room3_setpoint",
+ "label": "T-Ambiente 3",
+ "description": "Viene impostato il valore nominale della temperatura ambiente in °C con un valore decimale, che vale per il primo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2. (testo dal manuale installatore) Questi parametri influenzano, oltre alla temperatura esterna, la curva calore e possibilmente la temperatura ambiente rilevata dal dispositivo di controllo EHS157034 (se presente e configurato), la temperatura di mandata desiderata per il circuito di riscaldamento. Se questi parametri vengono impostati erroneamente, questo può influenzare fortemente il funzionamento della pompa calore in modalità riscaldamento."
+ },
+ {
+ "name": "heat_slope",
+ "label": "Curva riscaldamento",
+ "description": "La curva di riscaldamento riproduce la dipendenza della temperatura nominale di mandata des circuito di riscaldamento dalla temperatura esterna."
+ },
+ {
+ "name": "t_dhw_setpoint1",
+ "label": "T-Acc 1 nom",
+ "description": "Viene impostato il valore nominale della temperatura dell'acqua calda in °C con un valore decimale, che vale per il primo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2. (testo dal manuale installatore) Valore desiderato della temperatura dell'acqua calda. All'avvio non impostare al di sotto di 40°C. Dopo l'avvio non impostare mai al di sotto di 35°C!"
+ },
+ {
+ "name": "t_dhw_setpoint2",
+ "label": "T-Acc 2 nom",
+ "description": "Viene impostato il valore nominale della temperatura dell'acqua calda in °C con un valore decimale, che vale per il secondo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2."
+ },
+ {
+ "name": "t_dhw_setpoint3",
+ "label": "T-Acc 3 nom",
+ "description": "Viene impostato il valore nominale della temperatura dell'acqua calda in °C con un valore decimale, che vale per il terzo blocco di programma a orario del programma a orario Automatico 1 e Automatico 2."
+ },
+ {
+ "name": "hyst_hp",
+ "label": "HP Isteresi TDHW",
+ "description": "Soglia di attivazione caricamento acqua calda. Stabilisce a partire da quale differenza di temperatura si attiva la pompa di calore per il caricamento dell'acqua calda"
+ },
+ {
+ "name": "t_flow_cooling",
+ "label": "T-Imp refrig",
+ "description": "Temperatura nominale di mandata di modalita' di raffreddamento in caso di regolazione in base ad una temperatura di mandata fissa"
+ },
+ {
+ "name": "error",
+ "label": "Errore",
+ "description": "errorcode"
+ },
+ {
+ "name": "outdoor_type",
+ "label": "Outdoor type",
+ "description": "Tipo di apparecchio esterno pompa di calore 0: nessuna selezione 1: 4 kW 2: 6 kW 3: 8 kW 4: 11 kW 5: 14 kW 6: 16 kW"
+ },
+ {
+ "name": "indoor_unit",
+ "label": "Indoor unit",
+ "description": "Tipo apparecchio interno pompa di calore 0: Finora non si verifica alcuna messa in funzione. 1: 304 2: 308 3: 508 4: 516"
+ },
+ {
+ "name": "func_heating",
+ "label": "Function Heating Rod",
+ "description": "Impostazione relativa all'eventuale presenza di generatore di calore aggiuntivo (WEZ) per l'approntamento di acqua calda e il sostegno al riscaldamento. 0: Nessun WEZ aggiuntivo 1: WEZ elettrico 2: WEZ alternativo per le funzioni approntamento di acqua calda e sostegno al riscaldamento 3: WEZ 1 alternativo per la funzione approntamento di acqua calda e WEZ 2 alternativo per la funzione sostegno al riscaldamento (testo manuale installatore) Durante l'utilizzo di un l’elemento riscaldante elettronico supportare la pompa di calore, impostare su 1."
+ },
+ {
+ "name": "hzu",
+ "label": "HUZ",
+ "description": "Sostegno al riscaldamento tramite il bollitore di acqua calda : 0: nessun sostegno al riscaldamento 1: sostegno al riscaldamento attivato"
+ },
+ {
+ "name": "equi_func",
+ "label": "Equilibrium Func",
+ "description": "(o Bivalence Function) La temperatura bivalente è rilevante per il funzionamento del riscaldatore aggiuntivo opzionale a seguito di una richiesta di back-up [modalità di riscaldamento ambientale]. Quando la funzione è attivata, il back-up heater viene sbloccato solo se la temperatura bivalente (impostabile alla voce Configurazione) non è stata raggiunta. Disattivando la funzione \"Temperatura bivalente\", il funzionamento del back-up heater è sempre possibile. 0: Disattivato 1: attivato (testo nel manuale tecnico) Quando attivato, l'elemento riscaldante elettronico per il supporto del riscaldamento verrà attivato per la prima volta quando la temperatura è al di sotto dei valori impostati in„Temp. di bivalenza“."
+ },
+ {
+ "name": "smart_grid",
+ "label": "SMART GRID",
+ "description": "Attivazione della funzione Smart Grid Non appena viene attivata questa funzione, a seconda del segnale inviato dal fornitore di energia elettrica, la pompa di calore viene disattivata o azionata maggiormente. 0: Disattivato 1: attivato"
+ },
+ {
+ "name": "modus_sg",
+ "label": "Mode SG",
+ "description": "Attivando il parametro \"SMART GRID\" (=1), tramite di esso si può regolare la riduzione di temperatura in modalità di risparmio (approntamento di acqua calda e riscaldamento) e l'aumento della temperatura di mandata con un comando di attivazione. 0: Comfort (aumento del valore nominale della temperatura dell'acqua calda di 5 K) 1: Standard (aumento del valore nominale della temperatura di mandata di 2 K e temperatura dell'acqua calda di 5 K) 2: Eco (aumento del valore nominale della temperatura di mandata di 5 K e temperatura dell'acqua calda di 10 K)"
+ },
+ {
+ "name": "ht_nt_func",
+ "label": "HT/NT Function",
+ "description": "Questo parametro stabilisce quali sorgenti di calore vengono disattivate quando si riceve il segnale della tariffa ridotta dall'ente di approvvigionamento energetico (EVU). 0: Disattivato (nessun effetto) 1: Compressore disattivato 2: Il compressore e il riscaldamento di riserva viene disattivato 3: Tutto viene disattivato (nessuna funzione dell'apparecchio, stand-by)"
+ },
+ {
+ "name": "ht_nt_contact",
+ "label": "HT/NT Contact",
+ "description": "Determinare se si tratti di un contatto di apertura o chiusura (NC or NO). 0: Valutazione di un contatto di chiusura 1: Valutazione di un contatto di apertura"
+ },
+ {
+ "name": "room_therm",
+ "label": "Room thermostat",
+ "description": "Attivazione di un termostato ambientale. Attivando questa funzione, la temperatura nominale ambientale viene controllata solo tramite il termostato ambientale. 0: Disattivato 1: Attivato"
+ },
+ {
+ "name": "interlink",
+ "label": "Interlink fct",
+ "description": "È possibile utilizzarlo solo negli impianti dotati di sonde di valore nominale diverse (ad es. 2º termostato ambientale). Questa impostazione di parametro offre la possibilità di utilizzare 2 valori nominali. Non appena viene attivata questa funzione (ad es. connettendo un ulteriore convettore HP), a seconda della richiesta, la regolazione avviene in base a 2 valori nominali. Il secondo valore nominale corrisponde al normale valore nominale +5 K (in caso di raffrescamento -5 K). 0: Disattivato 1: Attivato (testo dal manuale installatore) La temperatura di mandata viene modificata quando il secondo contatto del RT (contatto raffreddamento, Connettore J16) è chiuso al valore impostato nel parametro “T-Flow CH adj“ o „T-Flow Cooling adj“ ( RoCon HP, Cap. 6.2.2, Tab. 6-2)."
+ },
+ {
+ "name": "air_purge",
+ "label": "Air Purge",
+ "description": "Activation of automatic bleeding of the ROTEX HPSU compact and the connected heating circuit"
+ },
+ {
+ "name": "max_perf_pump",
+ "label": "PWM MAX",
+ "description": "Limite superiore della modulazione del segnale PWM. (testo del manuale installatore) Max Performance - Definisce l'energia massima prodotta dalla pompa"
+ },
+ {
+ "name": "min_perf_pump",
+ "label": "PWM MIN",
+ "description": "Limite inferiore della modulazione del segnale PWM. (testo del manuale installatore) Min Performance - Definisce la potenza minima dalla pompa"
+ },
+ {
+ "name": "outside_conf",
+ "label": "Outside Config",
+ "description": "Parametro per la configurazione del sensore di temperatura esterna. Se il parametro è attivato e non è stato collegato alcun sensore esterno, viene generato un messaggio di errore. 0: Disattivato 1: Attivato"
+ },
+ {
+ "name": "storage_conf",
+ "label": "Storage Config",
+ "description": "Con questo parametro, è possibile parametrare il sensore dell'approntamento di acqua calda. Nell'impostazione 0: \"Inattivo\" non viene valutato alcun sensore e la funzionalità dell'approntamento di acqua calda è disattivata. Nell'impostazione 1: \"Sensore\" viene valutato un sensore e la funzionalità dell'approntamento di acqua calda è attivata. Nell'impostazione 2: \"Termostato\", per l'approntamento di acqua calda viene valutato un interruttore del termostato (ON /OFF), in cui il \"contatto aperto\" viene valutato come \"nessuna necessità\". La funzionalità dell'approntamento di acqua calda viene attivata. 0: Inattivo 1: Sensore 2: Termostato"
+ },
+ {
+ "name": "pres_conf",
+ "label": "Pressure Config",
+ "description": "Parametro per la configurazione del sensore per la registrazione della pressione dell'acqua Impianto. 0: Disattivato 1: Attivato"
+ },
+ {
+ "name": "out_temp_adapt",
+ "label": "Outside Temp Adap",
+ "description": "Con questo parametro si può impostare un adeguamento personalizzato per il valore di misurazione della temperatura esterna rilevante per la regolazione."
+ },
+ {
+ "name": "power_dhw",
+ "label": "BOH power",
+ "description": "Potenza calorifica del riscaldatore elettrico aggiuntivo per l'approntamento di acqua calda"
+ },
+ {
+ "name": "buh_s1_pow",
+ "label": "BUH s1 power",
+ "description": "Potenza calorifica del riscaldatore elettrico aggiuntivo per il sostegno al riscaldamento livello 1 (in W) (testo dal manuale installatore) Definisce l'energia prodotta dall'elemento elettronico riscaldante installato, collegato al rispettivo stadio, e limita l'energia che viene utilizzata come supporto al riscaldamento del serbatoio attraverso la valvola miscelatrice. Se durante il supporto al riscaldamento attraverso l'elemento riscaldante elettronico il serbatoio diventa troppo caldo o si raffredda eccessivamente, si può verificare una deriva del sensore. Questo può essere contrastato modificando il valore del parametro come da Tab.3-4."
+ },
+ {
+ "name": "buh_s2_pow",
+ "label": "BUH s2 power",
+ "description": "Potenza calorifica del riscaldatore elettrico aggiuntivo per il sostegno al riscaldamento livello 2 (in W) (testo dal manuale installatore) Definisce l'energia prodotta dall'elemento elettronico riscaldante installato, collegato al rispettivo stadio, e limita l'energia che viene utilizzata come supporto al riscaldamento del serbatoio attraverso la valvola miscelatrice. Se durante il supporto al riscaldamento attraverso l'elemento riscaldante elettronico il serbatoio diventa troppo caldo o si raffredda eccessivamente, si può verificare una deriva del sensore. Questo può essere contrastato modificando il valore del parametro come da Tab.3-4."
+ },
+ {
+ "name": "power_biv",
+ "label": "Power BIV",
+ "description": "Potenza calorifica del generatore di calore alternativo. Serve alla limitazione del sostegno al riscaldamento. La potenza viene azionata con il sostegno al riscaldamento fino a quando non si raggiunge il parametro limite di temperatura [Overtemp CH Support]."
+ },
+ {
+ "name": "tdiff_dhw_ch",
+ "label": "TDiff-DHW CH",
+ "description": "TDiff-DHW CH"
+ },
+ {
+ "name": "t_vbh1_max",
+ "label": "T vbh1 max",
+ "description": "Massima temperatura di mandata (controllata tramite la valvola di miscelazione integrata). Limita il sostegno al riscaldamento alla temperatura immessa. (alternativo) Temperatura di erogazione massima dell'acqua (misurata su tV, BH) con funzione \"heating support\" attiva"
+ },
+ {
+ "name": "equi_temp",
+ "label": "Temp. di bivalenza",
+ "description": "Temperatura esterna a partire dalla quale viene attivato il riscaldatore aggiuntivo opzionale per il sostegno al riscaldamento ambientale. La temperatura bivalente è rilevante per il funzionamento del riscaldatore aggiuntivo opzionale a seguito di una richiesta di back-up [modalità di riscaldamento ambientale]. A tale scopo viene utilizzato il sensore di temperatura integrato sull'apparecchio esterno della pompa di calore (si differenzia da quelli indicato nel display)."
+ },
+ {
+ "name": "quiet_mode",
+ "label": "Quiet Mode",
+ "description": "Modalità per operatività silenziosa con output ridotto"
+ },
+ {
+ "name": "aux_fct",
+ "label": "AUX Fzn",
+ "description": "Attribuzione delle condizioni di attivazione per il contatto AUX. 0: Funzione disattivata 1: TDHW 1 min 2: Modalità di funzionamento 3: BUH 4: Errore 5: TVBH1 save 6: BIV parallelo 7: BIV alternativo 8: BOH"
+ },
+ {
+ "name": "aux_time",
+ "label": "AUX Tempo",
+ "description": "Tempo di ritardo (isteresi) funzione speciale, dopo questo periodo viene attivato il contatto AUX."
+ },
+ {
+ "name": "t_dhw_1_min",
+ "label": "T-DHW min",
+ "description": "Soglia di attivazione per contatto AUX dipendente dalla temperatura vedere RPS3 (BSK) / Soglia di commutazione della temperatura del serbatorio di accumulo (Tdhw) per il contatto di commutazione AUX (vedi parametro [AUX Fct])"
+ },
+ {
+ "name": "delta_t_ch",
+ "label": "Spread CH",
+ "description": "(Delta-T CH) Differenza di temperatura soglia superiore dimodulazione per modalità di riscaldamento. (traduzione non disponibile) Set outdoor temperature spread The ROTEX HPSU compact heating circulation pump controls the flow rate in order to achieve the set spread between the inflow target temperature and the return flow temperature (tV, BH - tR1)"
+ },
+ {
+ "name": "v_var",
+ "label": "V var",
+ "description": "La portata d'aria minima necessaria dell'unità (valore aritmetico, non impostabile)"
+ },
+ {
+ "name": "t_flow_ch_adj",
+ "label": "T-Flow CH adj",
+ "description": "(traduzione non disponibile) Only when parameter [Interlink fct] = On. With a closed cooling RT switching contact, the inflow target temperature is increased by the set value"
+ },
+ {
+ "name": "t_flow_cool_adj",
+ "label": "T-Flow Cooling adj",
+ "description": "(traduzione non disponibile) Only when parameter [Interlink fct] = On. With a closed cooling RT switching contact, the cooling inflow target temperature is reduced by the set value"
+ },
+ {
+ "name": "min_pressure",
+ "label": "Min Pressure",
+ "description": "Indica la pressione minima dell'acqua"
+ },
+ {
+ "name": "max_pressure",
+ "label": "Max Pressure",
+ "description": "Indica la pressione massima dell'acqua"
+ },
+ {
+ "name": "setpoint_pressure",
+ "label": "Set Point Pressure",
+ "description": "Indica la pressione obiettivo dell'acqua"
+ },
+ {
+ "name": "max_pressure_drop",
+ "label": "Max Pressuredrop",
+ "description": "Indica il massimo calo di pressione accettabile nel sistema di riscaldamento"
+ },
+ {
+ "name": "hc_func",
+ "label": "HC Function",
+ "description": "Al circuito di riscaldamento si possono attribuire varie funzionalità. 0: Regolazione circuito di riscaldamento standard (curva climatica) 1: Regolazione a un valore nominale di mandata fisso, a seconda della modalità di riscaldamento o riduzione"
+ },
+ {
+ "name": "t_frost_protect",
+ "label": "Antigelo",
+ "description": "0=Nessuna protezione del circuito di riscaldamento, Altrimenti: Se la temperatura esterna scende al di sotto del valore programmato, l'impianto passa alla modalità di protezione dal congelamento (accensione della pompa). La funzionalità si disattiva una volta che la temperatura esterna ha raggiunto il valore impostato +1 K"
+ },
+ {
+ "name": "insulation",
+ "label": "Livello Isolamento",
+ "description": "Con questo parametro, è possibile parametrare lo standard di coibentazione dell'edificio. IN tal modo si influenza la curva di riscaldamento e i tempi di riscaldamento e raffrescamento. 0: off 1: scarso 2: normale 3: buono 4: ottimo (testo del manuale installatore) A seconda dell'isolamento dell'edificio, la media della temperatura esterna viene calcolata su un dato periodo di tempo. Perciò può succedere che la pompa di calore non si accenda immediatamente quando la temperatura esterna raggiunge un valore inferiore a quello impostato in „Temp.-Lim Giorno“ . La temperatura esterna media può essere visualizzata nel livello Informazioni sotto la voce „T-Esterna“"
+ },
+ {
+ "name": "screed",
+ "label": "Massetto",
+ "description": "Con questo parametro si può attivare la funzione di asciugatura del massetto. La temperatura nominale di mandata viene regolata in base al programma massetto parametrato. Il giorno in cui viene attivata la funzione massetto non viene conteggiato nella durata del programma massetto. Il primo giorno comincia quindi al volgere del giorno ovvero alle ore 00:00. Per le restanti ore del giorno di attivazione, il riscaldamento segue l'impostazione del primo giorno di programma."
+ },
+ {
+ "name": "t_screed_day1",
+ "label": "Temp programma massetto giorno 1",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day2",
+ "label": "Temp programma massetto giorno 2",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day3",
+ "label": "Temp programma massetto giorno 3",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day4",
+ "label": "Temp programma massetto giorno 4",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day5",
+ "label": "Temp programma massetto giorno 5",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day6",
+ "label": "Temp programma massetto giorno 6",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day7",
+ "label": "Temp programma massetto giorno 7",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day8",
+ "label": "Temp programma massetto giorno 8",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day9",
+ "label": "Temp programma massetto giorno 9",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day10",
+ "label": "Temp programma massetto giorno 10",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day11",
+ "label": "Temp programma massetto giorno 11",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day12",
+ "label": "Temp programma massetto giorno 12",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day13",
+ "label": "Temp programma massetto giorno 13",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day14",
+ "label": "Temp programma massetto giorno 14",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day15",
+ "label": "Temp programma massetto giorno 15",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day16",
+ "label": "Temp programma massetto giorno 16",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day17",
+ "label": "Temp programma massetto giorno 17",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day18",
+ "label": "Temp programma massetto giorno 18",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day19",
+ "label": "Temp programma massetto giorno 19",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day20",
+ "label": "Temp programma massetto giorno 20",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day21",
+ "label": "Temp programma massetto giorno 21",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day22",
+ "label": "Temp programma massetto giorno 22",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day23",
+ "label": "Temp programma massetto giorno 23",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day24",
+ "label": "Temp programma massetto giorno 24",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day25",
+ "label": "Temp programma massetto giorno 25",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day26",
+ "label": "Temp programma massetto giorno 26",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day27",
+ "label": "Temp programma massetto giorno 27",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_screed_day28",
+ "label": "Temp programma massetto giorno 28",
+ "description": "In questa immissione si può parametrare il programma di svolgimento del riscaldamento del massetto. Si può impostare una temperatura nominale di mandata propria per una durata massima di 28 giorni separatamente per ogni giorno. La fine del programma massetto viene definita il primo giorno con l'impostazione del valore nominale \"- - - -\"."
+ },
+ {
+ "name": "t_out_lim_day",
+ "label": "Temp.-Lim Giorno (esterna)",
+ "description": "Se la temperatura esterna media misurata tramite il regolatore supera la soglia di calore qui impostata di 1 K, il riscaldamento viene bloccato. Il riscaldamento viene sbloccato di nuovo quando la temperatura esterna scende al di sotto della soglia di calore impostata."
+ },
+ {
+ "name": "t_out_lim_night",
+ "label": "Temp.-Lim Notte (esterna)",
+ "description": "Parametro per l'impostazione del limite di riscaldamento per lo \"Spegnimento\" del circuito di riscaldamento durante il tempo di riduzione."
+ },
+ {
+ "name": "t_flow_day",
+ "label": "T-Flow Day",
+ "description": "(traduzione non disponibile) Setting the inflow target temperature for the heating circuit during the heating time when in operating mode: \"Automatic 1\", \"Automatic 2\", \"Heating"
+ },
+ {
+ "name": "t_flow_night",
+ "label": "T-Flow night",
+ "description": "(traduzione non disponibile) Setting the inflow target temperature for the heating circuit during the setback time when in operating mode: \"Automatic 1\", \"Automatic 2\", \"Reducing"
+ },
+ {
+ "name": "max_t_flow",
+ "label": "Max T-Flow",
+ "description": "La temperatura nominale di mandata del circuito di riscaldamento viene limitata alla temperatura di mandata massima impostata (cioè non salirà sopra)"
+ },
+ {
+ "name": "min_t_flow",
+ "label": "Min T-Flow",
+ "description": "La temperatura nominale di mandata del circuito di riscaldamento viene aumentata alla temperatura di mandata minima impostata (cioè non scenderà sotto)."
+ },
+ {
+ "name": "hc_adapt",
+ "label": "HC Adaption",
+ "description": "Funzione per l'impostazione automatica della curva di riscaldamento 0: Disattivato 1: attivato"
+ },
+ {
+ "name": "start_tout_cool",
+ "label": "T-esterna inizio Raffredd.",
+ "description": "Con questo parametro si fissa a partire da quale temperatura esterna si avvia la modalità di raffrescamento (condizione di impostazione: modalità di raffrescamento). (non tradotto) Setting from which outside temperature the cooling operation with the highest cooling infeed target temperature"
+ },
+ {
+ "name": "max_tout_cool",
+ "label": "T-esterna Rafr Max",
+ "description": "Con questo parametro viene fissato con quale temperatura esterna viene fornita la temperatura nonimale di mandata di raffrescamento [T-madata inizio Rafredd.] più bassa o il valore nominale ambientale più alto [T-Room max cooling] (condizione di impostazione: modalità di raffrescamento). (non tradotto) Setting to determine from which outdoor temperature the lowest cooling flow temperature"
+ },
+ {
+ "name": "t_flow_cool_start",
+ "label": "T-mandata inizio Rafredd.",
+ "description": "(T-Flow Cooling start) Con questo parametro viene stabilito quale temperatura di mandata viene ottenuta all'inizio del raffrescamento (temperatura esterna = parametro [T-esterna inizio Raffredd.]) (condizione di impostazione: Parametro [raffrescare] = ON). (non tradotto) Setting the cooling inflow target temperature at the start of cooling mode"
+ },
+ {
+ "name": "t_flow_cool_max",
+ "label": "T-mandata Rafredd. max",
+ "description": "(T-Flow Cooling max) Con questo parametro viene stabilito quale temperatura di mandata viene ottenuta con massimo raffrescamento (temperatura esterna = parametro [T-mandata Rafredd. max]) (condizione di impostazione: modalità di raffrescamento). (non tradotto) Setting the minimum cooling inflow target temperature. This is kept constant relative to the outside temperature"
+ },
+ {
+ "name": "min_t_flow_cool",
+ "label": "Min T-Flow Cooling",
+ "description": "(traduzione non disponibile) Setting the absolute lower limit of the cooling inflow target temperature. The limitation is effective if a lower cooling inflow target temperature is determined based on other parameter settings"
+ },
+ {
+ "name": "t_flow_cool",
+ "label": "T-Flow Cooling",
+ "description": "(traduzione non disponibile) Setting the cooling inflow target temperature (fixed value) when cooling mode is active"
+ },
+ {
+ "name": "cool_setpoint_adj",
+ "label": "Cooling Setpoint adj",
+ "description": "Parallel displacement of the cooling characteristic curve to match the set value"
+ },
+ {
+ "name": "circ_pump_dhw",
+ "label": "Pompa circ ACS",
+ "description": "Con questo parametro si può impostare la funzione per il controllo di una pompa di circolazione in modo che essa venga sbloccata in sincronia al programma acqua calda. 0: Off 1: On"
+ },
+ {
+ "name": "circ_pump_interval",
+ "label": "Intervallo pompa circ.",
+ "description": "(traduzione non disponibile) Setting the interval control for an optional circulation pump"
+ },
+ {
+ "name": "anti_leg_day",
+ "label": "Anti-Legionella giorno",
+ "description": "Con questo parametro si può impostare la disinfezione termica del bollitore dell'acqua calda. 0 = Spento 1 = Lunedì ... 7 = Domenica"
+ },
+ {
+ "name": "anti_leg_time",
+ "label": "Anti-Legionella tempo",
+ "description": "Con questo parametro si può parametrare il tempo di avvio della disinfezione termica del serbatoio di acqua potabile."
+ },
+ {
+ "name": "anti_leg_temp",
+ "label": "Anti-Legionella temp",
+ "description": "Con questo parametro si può parametrare la temperatura nominale della disinfezione termica del serbatoio di acqua potabile."
+ },
+ {
+ "name": "max_dhw_loading",
+ "label": "Max DHW loading",
+ "description": "(traduzione non disponibile) Setting limits the time period for hot water generation to the set target value"
+ },
+ {
+ "name": "dhw_off_time",
+ "label": "DHW Off Time",
+ "description": "(traduzione non disponibile) Setting the block time following completion or interruption of a hot water generation cycle. New demand of hot water generation is satisfied only after expiry of this block time"
+ },
+ {
+ "name": "one_hot_water",
+ "label": "1x acqua calda",
+ "description": "Quando il valore desiderato [T-DHW Setpoint 1] viene raggiunto, questo parametro DEVE essere disattivato, diversamente, il serbatoio viene sempre mantenuto ad una temperatura di 37°C. Suggerimento: Disattivare sempre questo parametro (Impostazione 0)!"
+ },
+ {
+ "name": "timer_boh",
+ "label": "Timer BOH",
+ "description": "(traduzione non disponibile) Delay time after which the reserve heating may support the heat pump in hot water charging"
+ },
+ {
+ "name": "t_reduced",
+ "label": "T-Riduzione",
+ "description": "Viene impostato il valore nominale della temperatura ambientale di riduzione in °C con un valore decimale che vale per il programma a orario Automatico 1 e Automatico 2."
+ },
+ {
+ "name": "t_absence",
+ "label": "T-Asssenza",
+ "description": "Viene impostato il valore nominale della temperatura ambientale di riduzione in °C con un valore decimale che vale per il programma a orario Assente e Vacanze"
+ },
+ {
+ "name": "t_room",
+ "label": "T-Room",
+ "description": "(traduzione non disponibile) Room temperature measured by an optional Rocon U1 room station"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/definitions/CAN/commands_hpsu.json b/definitions/CAN/commands_hpsu.json
new file mode 100644
index 00000000..993efe99
--- /dev/null
+++ b/definitions/CAN/commands_hpsu.json
@@ -0,0 +1,1463 @@
+{
+ "version" : "2.0",
+ "commands":{
+ "t_hs" : {
+ "name" : "t_hs",
+ "command" : "31 00 FA 01 D6 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_hs_set" : {
+ "name" : "t_hs_set",
+ "command" : "31 00 02 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "water_pressure" : {
+ "name" : "water_pressure",
+ "command" : "31 00 1C 00 00 00 00",
+ "id" : "190",
+ "divisor" : "1000",
+ "writable" : "false",
+ "unit" : "bar",
+ "type" : "float"
+ },
+ "t_ext" : {
+ "name" : "t_ext",
+ "command" : "61 00 FA 0A 0C 00 00",
+ "id" : "310",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_dhw" : {
+ "name" : "t_dhw",
+ "command" : "31 00 0E 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_dhw_set" : {
+ "name" : "t_dhw_set",
+ "command" : "31 00 03 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_return" : {
+ "name" : "t_return",
+ "command" : "31 00 16 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "flow_rate" : {
+ "name" : "flow_rate",
+ "command" : "31 00 FA 01 DA 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "lh",
+ "type" : "longint"
+ },
+ "t_hc" : {
+ "name" : "t_hc",
+ "command" : "C1 00 0F 00 00 00 00",
+ "id" : "610",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_hc_set" : {
+ "name" : "t_hc_set",
+ "command" : "61 00 04 00 00 00 00",
+ "id" : "310",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "status_pump" : {
+ "name" : "status_pump",
+ "command" : "31 00 FA 0A 8C 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "off"
+ }
+ },
+ "runtime_comp" : {
+ "name" : "runtime_comp",
+ "command" : "31 00 FA 06 A5 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "hour",
+ "type" : "longint"
+ },
+ "runtime_pump" : {
+ "name" : "runtime_pump",
+ "command" : "31 00 FA 06 A4 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "longint"
+ },
+ "posmix" : {
+ "name" : "posmix",
+ "command" : "31 00 FA 06 9B 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "percent",
+ "type" : "longint"
+ },
+ "qboh" : {
+ "name" : "qboh",
+ "command" : "31 00 FA 09 1C 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "qchhp" : {
+ "name" : "qchhp",
+ "command" : "31 00 FA 09 20 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "qsc" : {
+ "name" : "qsc",
+ "command" : "31 00 FA 06 A6 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "qch" : {
+ "name" : "qch",
+ "command" : "31 00 FA 06 A7 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "",
+ "type" : "longint"
+ },
+ "qwp" : {
+ "name" : "qwp",
+ "command" : "31 00 FA 09 30 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "qdhw" : {
+ "name" : "qdhw",
+ "command" : "31 00 FA 09 2C 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "sw_vers_01" : {
+ "name" : "sw_vers_01",
+ "command" : "31 00 FA 01 99 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "",
+ "type" : "longint"
+ },
+ "sw_vers_02" : {
+ "name" : "sw_vers_02",
+ "command" : "31 00 FA C0 B4 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "",
+ "type" : "longint"
+ },
+ "sw_vers_03" : {
+ "name" : "sw_vers_03",
+ "command" : "31 00 FA 02 4B 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "",
+ "type" : "longint"
+ },
+ "mode_01" : {
+ "name" : "mode_01",
+ "command" : "31 00 FA 01 12 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "",
+ "type" : "int",
+ "value_code" : {
+ "standby" : "1",
+ "heat" : "3",
+ "sink" : "4",
+ "summer" : "5",
+ "cool" : "17",
+ "auto 1" : "11",
+ "auto 2" : "12"
+ }
+ },
+ "tvbh2" : {
+ "name" : "tvbh2",
+ "command" : "31 00 FA C1 02",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "tliq2" : {
+ "name" : "tliq2",
+ "command" : "31 00 FA C1 03",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "tr2" : {
+ "name" : "tr2",
+ "command" : "31 00 FA C1 04",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "ta2" : {
+ "name" : "ta2",
+ "command" : "31 00 FA C1 05",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "tdhw2" : {
+ "name" : "tdhw2",
+ "command" : "31 00 FA C1 06",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "quiet" : {
+ "name" : "quiet",
+ "command" : "31 00 FA C1 07",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "activated" :"1",
+ "only at night" : "2"
+ }
+ },
+ "mode" : {
+ "name" : "mode",
+ "command" : "31 00 FA C0 F6",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "longint",
+ "value_code" : {
+ "standby" :"0",
+ "heating" : "1",
+ "cooling" : "2",
+ "3": "3"
+ }
+ },
+ "pump" : {
+ "name" : "pump",
+ "command" : "31 00 FA C0 F7",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "percent",
+ "type" : "longint"
+ },
+ "ext" : {
+ "name" : "ext",
+ "command" : "31 00 FA C0 F8",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "longint"
+ },
+ "ehs" : {
+ "name" : "ehs",
+ "command" : "31 00 FA C0 F9",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "kwh",
+ "type" : "longint"
+ },
+ "rt" : {
+ "name" : "rt",
+ "command" : "31 00 FA C0 FA",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "longint",
+ "type" : "longint"
+ },
+ "bpv" : {
+ "name" : "bpv",
+ "command" : "31 00 FA C0 FB",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "percent",
+ "type" : "longint"
+ },
+ "t_v1" : {
+ "name" : "t_v1",
+ "command" : "31 00 FA C0 FC",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_dhw1" : {
+ "name" : "t_dhw1",
+ "command" : "31 00 FA C0 FD",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_vbh" : {
+ "name" : "t_vbh",
+ "command" : "31 00 FA C0 FE",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_outdoor_ot1" : {
+ "name" : "t_outdoor_ot1",
+ "command" : "31 00 FA C0 FF",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_r1" : {
+ "name" : "t_r1",
+ "command" : "31 00 FA C1 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "v1" : {
+ "name" : "v1",
+ "command" : "31 00 FA C1 01",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "lh",
+ "type" : "longint"
+ },
+ "t_room1_setpoint" : {
+ "name" : "t_room1_setpoint",
+ "command" : "31 00 05 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_room2_setpoint" : {
+ "name" : "t_room2_setpoint",
+ "command" : "31 00 06 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_room3_setpoint" : {
+ "name" : "t_room3_setpoint",
+ "command" : "31 00 07 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "heat_slope" : {
+ "name" : "heat_slope",
+ "command" : "31 00 FA 01 0E 00 00",
+ "id" : "190",
+ "divisor" : "100",
+ "writable" : "true",
+ "unit" : "",
+ "type" : "float"
+ },
+ "t_dhw_setpoint1" : {
+ "name" : "t_dhw_setpoint1",
+ "command" : "31 00 13 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_dhw_setpoint2" : {
+ "name" : "t_dhw_setpoint2",
+ "command" : "31 00 FA 0A 06 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_dhw_setpoint3" : {
+ "name" : "t_dhw_setpoint3",
+ "command" : "31 00 FA 01 3E 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "hyst_hp" : {
+ "name" : "hyst_hp",
+ "command" : "31 00 FA 06 91 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_cooling" : {
+ "name" : "t_flow_cooling",
+ "command" : "31 00 FA 03 DD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "error" : {
+ "name" : "error",
+ "command" : "31 00 FA 13 88 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "false",
+ "unit" : "",
+ "type" : "value"
+ },
+ "outdoor_type" : {
+ "name" : "outdoor_type",
+ "command" : "31 00 FA 06 9A 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "KW",
+ "type" : "value",
+ "value_code" : {
+ " " : "0",
+ "4" : "1",
+ "6" : "2",
+ "8" : "3",
+ "11" : "4",
+ "14" : "5",
+ "16" : "6"
+ }
+ },
+ "indoor_unit" : {
+ "name" : "indoor_unit",
+ "command" : "31 00 FA 06 99 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ " " : "0",
+ "304" : "1",
+ "308" : "2",
+ "508" : "3",
+ "516" : "4"
+ }
+ },
+ "func_heating" : {
+ "name" : "func_heating",
+ "command" : "A1 00 FA 06 D2 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "int",
+ "type" : "value"
+ },
+ "hzu" : {
+ "name" : "hzu",
+ "command" : "31 00 FA 06 6C 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1"
+ }
+ },
+ "equi_func" : {
+ "name" : "equi_func",
+ "command" : "A1 00 FA 06 D3 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" :"0",
+ "on" : "1"
+ }
+ },
+ "smart_grid" : {
+ "name" : "smart_grid",
+ "command" : "31 00 FA 06 93 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1"
+ }
+ },
+ "modus_sg" : {
+ "name" : "modus_sg",
+ "command" : "31 00 FA 06 94 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "comfort" : "0",
+ "standard" : "1",
+ "eco" : "2"
+ }
+ },
+ "ht_nt_func" : {
+ "name" : "ht_nt_func",
+ "command" : "31 00 FA 06 6F 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "deactivated" : "0",
+ "compressor off" : "1",
+ "compressor off, reserve heating off" : "2",
+ "all off" : "3"
+ }
+ },
+ "ht_nt_contact" : {
+ "name" : "ht_nt_contact",
+ "command" : "31 00 FA 06 70 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "NO" : "0",
+ "NC" : "1"
+ }
+ },
+ "room_therm" : {
+ "name" : "room_therm",
+ "command" : "31 00 FA 06 78 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1"
+ }
+ },
+ "interlink" : {
+ "name" : "interlink",
+ "command" : "31 00 FA 06 79 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1"
+ }
+ },
+ "air_purge" : {
+ "name" : "air_purge",
+ "command" : "31 00 FA 06 95 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off": "0",
+ "on" : "1"
+ }
+ },
+ "max_perf_pump" : {
+ "name" : "max_perf_pump",
+ "command" : "31 00 FA 06 7E 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "percent",
+ "type" : "longint"
+ },
+ "min_perf_pump" : {
+ "name" : "min_perf_pump",
+ "command" : "31 00 FA 06 7F 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "percent",
+ "type" : "longint"
+ },
+ "outside_conf" : {
+ "name" : "outside_conf",
+ "command" : "31 00 FA 09 61 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "sval",
+ "type" : "value",
+ "value_code" : {
+ "off" : "4",
+ "on" : "5"
+ }
+ },
+ "storage_conf" : {
+ "name" : "storage_conf",
+ "command" : "31 00 FA 09 61 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "sval",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "thermostat" : "2",
+ "sensor" : "4"
+ }
+ },
+ "pres_conf" : {
+ "name" : "pres_conf",
+ "command" : "31 00 FA 09 61 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "sval",
+ "type" : "value",
+ "value_code" : {
+ "off" : "10244",
+ "on" : "26628"
+ }
+ },
+ "out_temp_adapt" : {
+ "name" : "out_temp_adapt",
+ "command" : "61 00 FA 0C 1F 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "power_dhw" : {
+ "name" : "power_dhw",
+ "command" : "31 00 FA 06 68 00 00",
+ "id" : "190",
+ "divisor" : "0.1",
+ "writable" : "true",
+ "unit" : "w",
+ "type" : "longint"
+ },
+ "buh_s1_pow" : {
+ "name" : "buh_s1_pow",
+ "command" : "31 00 FA 06 69 00 00",
+ "id" : "190",
+ "divisor" : "0.1",
+ "writable" : "true",
+ "unit" : "w",
+ "type" : "longint"
+ },
+ "buh_s2_pow" : {
+ "name" : "buh_s2_pow",
+ "command" : "31 00 FA 06 6A 00 00",
+ "id" : "190",
+ "divisor" : "0.1",
+ "writable" : "true",
+ "unit" : "w",
+ "type" : "longint"
+ },
+ "power_biv" : {
+ "name" : "power_biv",
+ "command" : "31 00 FA 06 6B 00 00",
+ "id" : "190",
+ "divisor" : "0.1",
+ "writable" : "true",
+ "unit" : "w",
+ "type" : "longint"
+ },
+ "tdiff_dhw_ch" : {
+ "name" : "tdiff_dhw_ch",
+ "command" : "31 00 FA 06 6D 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "",
+ "type" : "longint"
+ },
+ "t_vbh1_max" : {
+ "name" : "t_vbh1_max",
+ "command" : "31 00 FA 06 6E 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "equi_temp" : {
+ "name" : "equi_temp",
+ "command" : "A1 00 FA 06 D4 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "quiet_mode" : {
+ "name" : "quiet_mode",
+ "command" : "31 00 FA 06 96 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1",
+ "only at night" : "2"
+ }
+ },
+ "aux_fct" : {
+ "name" : "aux_fct",
+ "command" : "31 00 FA 06 96 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value"
+ },
+ "aux_time" : {
+ "name" : "aux_time",
+ "command" : "31 00 FA 06 72 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "sec",
+ "type" : "longint"
+ },
+ "t_dhw_1_min" : {
+ "name" : "t_dhw_1_min",
+ "command" : "31 00 FA 06 73 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "delta_t_ch" : {
+ "name" : "delta_t_ch",
+ "command" : "31 00 FA 06 83 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "v_var" : {
+ "name" : "v_var",
+ "command" : "31 00 FA 06 9C 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "lh",
+ "type" : "longint"
+ },
+ "t_flow_ch_adj" : {
+ "name" : "t_flow_ch_adj",
+ "command" : "31 00 FA 06 A0 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_cool_adj" : {
+ "name" : "t_flow_cool_adj",
+ "command" : "31 00 FA 06 A1 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "min_pressure" : {
+ "name" : "min_pressure",
+ "command" : "31 00 FA 07 28 00 00",
+ "id" : "190",
+ "divisor" : "1000",
+ "writable" : "true",
+ "unit" : "bar",
+ "type" : "float"
+ },
+ "max_pressure" : {
+ "name" : "max_pressure",
+ "command" : "31 00 FA 07 27 00 00",
+ "id" : "190",
+ "divisor" : "1000",
+ "writable" : "true",
+ "unit" : "bar",
+ "type" : "float"
+ },
+ "setpoint_pressure" : {
+ "name" : "setpoint_pressure",
+ "command" : "31 00 FA 07 25 00 00",
+ "id" : "190",
+ "divisor" : "1000",
+ "writable" : "true",
+ "unit" : "bar",
+ "type" : "float"
+ },
+ "max_pressure_drop" : {
+ "name" : "max_pressure_drop",
+ "command" : "31 00 FA 07 26 00 00",
+ "id" : "190",
+ "divisor" : "1000",
+ "writable" : "true",
+ "unit" : "bar",
+ "type" : "float"
+ },
+ "hc_func" : {
+ "name" : "hc_func",
+ "command" : "61 00 FA 01 41 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "weather controlled" : "0",
+ "fixed value" : "1"
+ }
+ },
+ "t_frost_protect" : {
+ "name" : "t_frost_protect",
+ "command" : "61 00 FA 0A 00 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "longint"
+ },
+ "insulation" : {
+ "name" : "insulation",
+ "command" : "61 00 FA 01 0C 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "low" : "512",
+ "normal" : "1024",
+ "good" : "2048",
+ "very good" : "3072"
+ }
+ },
+ "screed" : {
+ "name" : "screed",
+ "command" : "61 00 FA 01 1A 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "256"
+ }
+ },
+ "t_screed_day1" : {
+ "name" : "screed_day1",
+ "command" : "61 00 FA 0B B9 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day2" : {
+ "name" : "screed_day2",
+ "command" : "61 00 FA 0B BA 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day3" : {
+ "name" : "screed_day3",
+ "command" : "61 00 FA 0B BB 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day4" : {
+ "name" : "screed_day4",
+ "command" : "61 00 FA 0B BC 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day5" : {
+ "name" : "screed_day5",
+ "command" : "61 00 FA 0B BD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day6" : {
+ "name" : "screed_day6",
+ "command" : "61 00 FA 0B BE 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day7" : {
+ "name" : "screed_day7",
+ "command" : "61 00 FA 0B BD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day8" : {
+ "name" : "screed_day8",
+ "command" : "61 00 FA 0B C0 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day9" : {
+ "name" : "screed_day9",
+ "command" : "61 00 FA 0B C1 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day10" : {
+ "name" : "screed_day10",
+ "command" : "61 00 FA 0B C2 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day11" : {
+ "name" : "screed_day11",
+ "command" : "61 00 FA 0B C3 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day12" : {
+ "name" : "screed_day12",
+ "command" : "61 00 FA 0B C4 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day13" : {
+ "name" : "screed_day13",
+ "command" : "61 00 FA 0B C5 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day14" : {
+ "name" : "screed_day14",
+ "command" : "61 00 FA 0B C6 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day15" : {
+ "name" : "screed_day15",
+ "command" : "61 00 FA 0B C7 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day16" : {
+ "name" : "screed_day16",
+ "command" : "61 00 FA 0B C8 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day17" : {
+ "name" : "screed_day17",
+ "command" : "61 00 FA 0B C9 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day18" : {
+ "name" : "screed_day18",
+ "command" : "61 00 FA 0B CA 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day19" : {
+ "name" : "screed_day19",
+ "command" : "61 00 FA 0B CB 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day20" : {
+ "name" : "screed_day20",
+ "command" : "61 00 FA 0B CC 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day21" : {
+ "name" : "screed_day21",
+ "command" : "61 00 FA 0B CD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day22" : {
+ "name" : "screed_day22",
+ "command" : "61 00 FA 0B CD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day23" : {
+ "name" : "screed_day23",
+ "command" : "61 00 FA 0B CF 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day24" : {
+ "name" : "screed_day24",
+ "command" : "61 00 FA 0B D0 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day25" : {
+ "name" : "screed_day25",
+ "command" : "61 00 FA 0B D1 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day26" : {
+ "name" : "screed_day26",
+ "command" : "61 00 FA 0B D2 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day27" : {
+ "name" : "screed_day27",
+ "command" : "61 00 FA 0B D3 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_screed_day28" : {
+ "name" : "screed_day28",
+ "command" : "61 00 FA 0B D4 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_out_lim_day" : {
+ "name" : "t_out_lim_day",
+ "command" : "61 00 FA 01 16 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_out_lim_night" : {
+ "name" : "t_out_lim_night",
+ "command" : "61 00 FA 01 17 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_day" : {
+ "name" : "t_flow_day",
+ "command" : "61 00 FA 01 29 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_night" : {
+ "name" : "t_flow_night",
+ "command" : "61 00 FA 01 2A 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "max_t_flow" : {
+ "name" : "max_t_flow",
+ "command" : "61 00 28 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "min_t_flow" : {
+ "name" : "min_t_flow",
+ "command" : "61 00 FA 01 2B 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "hc_adapt" : {
+ "name" : "hc_adapt",
+ "command" : "61 00 FA 01 15 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" :"256"
+ }
+ },
+ "start_tout_cool" : {
+ "name" : "start_tout_cool",
+ "command" : "61 00 FA 13 5B 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "max_tout_cool" : {
+ "name" : "max_tout_cool",
+ "command" : "61 00 FA 13 5C 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_cool_start" : {
+ "name" : "t_flow_cool_start",
+ "command" : "61 00 FA 13 5D 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_cool_max" : {
+ "name" : "t_flow_cool_max",
+ "command" : "61 00 FA 13 5E 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "min_t_flow_cool" : {
+ "name" : "min_t_flow_cool",
+ "command" : "61 00 FA 13 63 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_flow_cool" : {
+ "name" : "t_flow_cool",
+ "command" : "61 00 FA 03 DD 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "cool_setpoint_adj" : {
+ "name" : "cool_setpoint_adj",
+ "command" : "61 00 FA 13 59 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "circ_pump_dhw" : {
+ "name" : "circ_pump_dhw",
+ "command" : "31 00 FA 01 82 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "on" : "1"
+ }
+ },
+ "circ_pump_interval" : {
+ "name" : "circ_pump_interval",
+ "command" : "31 00 FA 06 5E 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value"
+ },
+ "anti_leg_day" : {
+ "name" : "anti_leg_day",
+ "command" : "31 00 FA 01 01 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off" : "0",
+ "monday" : "256",
+ "tuesday" : "512",
+ "wednesday" : "768",
+ "thursday" : "1024",
+ "friday" : "1280",
+ "saturday" : "1536",
+ "sunday" : "1792",
+ "everyday" : "2048"
+ }
+ },
+ "anti_leg_time" : {
+ "name" : "anti_leg_time",
+ "command" : "31 00 FA FD F4 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value"
+ },
+ "anti_leg_temp" : {
+ "name" : "anti_leg_temp",
+ "command" : "31 00 FA 05 87 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "max_dhw_loading" : {
+ "name" : "max_dhw_loading",
+ "command" : "31 00 FA 01 80 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "min",
+ "type" : "longint"
+ },
+ "dhw_off_time" : {
+ "name" : "dhw_off_time",
+ "command" : "31 00 FA 4E 3F 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "",
+ "type" : "float"
+ },
+ "one_hot_water" : {
+ "name" : "one_hot_water",
+ "command" : "31 00 FA 01 44 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "longint",
+ "type" : "value",
+ "value_code" : {
+ "off": "0",
+ "on" : "1"
+ }
+ },
+ "timer_boh" : {
+ "name" : "timer_boh",
+ "command" : "31 00 FA 06 92 00 00",
+ "id" : "190",
+ "divisor" : "1",
+ "writable" : "true",
+ "unit" : "min",
+ "type" : "longint"
+ },
+ "t_reduced" : {
+ "name" : "t_reduced",
+ "command" : "61 00 08 00 00 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_absence" : {
+ "name" : "t_absence",
+ "command" : "61 00 FA 01 3D 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "true",
+ "unit" : "deg",
+ "type" : "float"
+ },
+ "t_room" :{
+ "name" : "t_room",
+ "command" : "81 00 FA 00 11 00 00",
+ "id" : "190",
+ "divisor" : "10",
+ "writable" : "false",
+ "unit" : "deg",
+ "type" : "float"
+ }
+ }
+}
\ No newline at end of file
diff --git a/definitions/X10A/ALTHERMA(HYBRID).json b/definitions/X10A/ALTHERMA(HYBRID).json
new file mode 100644
index 00000000..de74b4dd
--- /dev/null
+++ b/definitions/X10A/ALTHERMA(HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(HYBRID)",
+ "Language": "English",
+ "Presets": {
+ "Light": [146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "O/U Heat Exch. Mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp."],
+ [ 60, 32, 12, 105, 2, 1, "INV fin temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 32, 16, 105, 2, -1, "Not in use"],
+ [ 64, 32, 18, 105, 2, -1, "Not in use"],
+ [ 65, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 66, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 67, 33, 4, 101, 2, -1, "Voltage (V)"],
+ [ 68, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 69, 33, 6, 306, 1, -1, "Not in use"],
+ [ 70, 33, 6, 305, 1, -1, "Not in use"],
+ [ 71, 33, 6, 304, 1, -1, "Not in use"],
+ [ 72, 33, 6, 303, 1, -1, "Not in use"],
+ [ 73, 33, 6, 302, 1, -1, "Not in use"],
+ [ 74, 33, 6, 301, 1, -1, "Not in use"],
+ [ 75, 33, 6, 300, 1, -1, "Not in use"],
+ [ 76, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 77, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 78, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 79, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 80, 33, 15, 105, 1, -1, "Not in use"],
+ [ 81, 33, 16, 105, 1, -1, "Not in use"],
+ [ 82, 33, 17, 105, 1, -1, "Not in use"],
+ [ 83, 33, 18, 105, 1, -1, "Not in use"],
+ [ 84, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 85, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 86, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 87, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 88, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 89, 48, 0, 211, 1, -1, "Fan 1 (10 rpm)"],
+ [ 90, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 91, 48, 0, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 92, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 93, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 94, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 95, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 96, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 97, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 98, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 99, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 100, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 101, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 102, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 103, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 104, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 105, 48, 0, 303, 1, -1, "Crank case heater 5"],
+ [ 106, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 107, 48, 0, 306, 1, -1, "SV (BPH)"],
+ [ 108, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 109, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 110, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 111, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 112, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 113, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 114, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 115, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 116, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 117, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 118, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 119, 96, 3, 204, 1, -1, "Error Code"],
+ [ 120, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 121, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 122, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 123, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 124, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 125, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 126, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 127, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 128, 96, 11, 303, 1, -1, "Solar input"],
+ [ 129, 96, 11, 302, 1, -1, "Not in use"],
+ [ 130, 96, 11, 301, 1, -1, "Not in use"],
+ [ 131, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 132, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 133, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 134, 96, 12, 305, 1, -1, "BSH"],
+ [ 135, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 136, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 137, 96, 12, 302, 1, -1, "BPH"],
+ [ 138, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 139, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 140, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 141, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 142, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 143, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 144, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 145, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 146, 97, 2, 105, 2, 1, "Outlet Water Heat Exch. Temp. (R1T)"],
+ [ 147, 97, 4, 105, 2, 1, "Outlet Water BUH Temp. (R2T)"],
+ [ 148, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 149, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 150, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 151, 97, 12, 105, 2, 1, "RT Temp."],
+ [ 152, 97, 14, 105, 2, 1, "Outdoor Ambient or Ext Sensor"],
+ [ 153, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 154, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 155, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 156, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 157, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 158, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 159, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 160, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 161, 98, 2, 301, 1, -1, "Not in use"],
+ [ 162, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 163, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 164, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 165, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 166, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 167, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 168, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 169, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 170, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 171, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 172, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 173, 98, 8, 307, 1, -1, "None"],
+ [ 174, 98, 8, 306, 1, -1, "Not in use"],
+ [ 175, 98, 8, 305, 1, -1, "Not in use"],
+ [ 176, 98, 8, 304, 1, -1, "Not in use"],
+ [ 177, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 178, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 179, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 180, 98, 8, 300, 1, -1, "Space C/H Op. or BPH"],
+ [ 181, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 182, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 183, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 184, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 185, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 186, 98, 15, 152, 1, -1, "Not in use"],
+ [ 187, 98, 16, 307, 1, -1, "Not in use"],
+ [ 188, 98, 16, 306, 1, -1, "Not in use"],
+ [ 189, 98, 16, 305, 1, -1, "Not in use"],
+ [ 190, 98, 16, 304, 1, -1, "Not in use"],
+ [ 191, 98, 16, 303, 1, -1, "Not in use"],
+ [ 192, 98, 16, 302, 1, -1, "Not in use"],
+ [ 193, 98, 16, 301, 1, -1, "Not in use"],
+ [ 194, 98, 16, 300, 1, -1, "Not in use"],
+ [ 195, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 196, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 197, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 198, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 199, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 200, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 201, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 202, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 203, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 204, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 205, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 206, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 207, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 208, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 209, 100, 2, 300, 1, -1, "Hybrid DHW operation mode"],
+ [ 210, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 211, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 212, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 213, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/ALTHERMA(LT_CA_CB_04-08KW).json b/definitions/X10A/ALTHERMA(LT_CA_CB_04-08KW).json
new file mode 100644
index 00000000..81b4a328
--- /dev/null
+++ b/definitions/X10A/ALTHERMA(LT_CA_CB_04-08KW).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_04-08KW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 144, 145, 146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 118, 96, 5, 203, 1, -1, "Error type"],
+ [ 119, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 120, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 121, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 122, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 123, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 124, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 125, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 126, 96, 11, 303, 1, -1, "Solar input"],
+ [ 127, 96, 11, 302, 1, -1, "Not in use"],
+ [ 128, 96, 11, 301, 1, -1, "Not in use"],
+ [ 129, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 130, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 131, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 132, 96, 12, 305, 1, -1, "BSH"],
+ [ 133, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 134, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 135, 96, 12, 302, 1, -1, "BPH"],
+ [ 136, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 137, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 138, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 139, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 140, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 141, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 142, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 143, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 144, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 145, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 146, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 147, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 148, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 149, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 150, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 151, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 152, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 153, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 154, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 155, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 156, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 157, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 158, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 159, 98, 2, 301, 1, -1, "Not in use"],
+ [ 160, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 161, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 162, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 163, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 164, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 165, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 166, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 167, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 168, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 169, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 170, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 171, 98, 8, 307, 1, -1, "None"],
+ [ 172, 98, 8, 306, 1, -1, "Not in use"],
+ [ 173, 98, 8, 305, 1, -1, "Not in use"],
+ [ 174, 98, 8, 304, 1, -1, "Not in use"],
+ [ 175, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 176, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 177, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 178, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 179, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 180, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 181, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 182, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 183, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 184, 98, 15, 152, 1, -1, "Not in use"],
+ [ 185, 98, 16, 307, 1, -1, "Not in use"],
+ [ 186, 98, 16, 306, 1, -1, "Not in use"],
+ [ 187, 98, 16, 305, 1, -1, "Not in use"],
+ [ 188, 98, 16, 304, 1, -1, "Not in use"],
+ [ 189, 98, 16, 303, 1, -1, "Not in use"],
+ [ 190, 98, 16, 302, 1, -1, "Not in use"],
+ [ 191, 98, 16, 301, 1, -1, "Not in use"],
+ [ 192, 98, 16, 300, 1, -1, "Not in use"],
+ [ 193, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 194, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 195, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 196, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 197, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 198, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 199, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 200, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 201, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 202, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 203, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 204, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 205, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 206, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 207, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 208, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 209, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 210, 100, 9, 302, 1, -1, "Add pump"],
+ [ 211, 100, 9, 301, 1, -1, "Main pump"],
+ [ 212, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"],
+ [ 213, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/ALTHERMA(LT_CA_CB_11-16KW).json b/definitions/X10A/ALTHERMA(LT_CA_CB_11-16KW).json
new file mode 100644
index 00000000..98f6511e
--- /dev/null
+++ b/definitions/X10A/ALTHERMA(LT_CA_CB_11-16KW).json
@@ -0,0 +1,209 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_11-16KW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 132, 133, 134, 135, 136, 137, 138]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 54, 32, 14, 105, 2, 2, "Pressure"],
+ [ 55, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 56, 32, 16, 105, 2, -1, "Not in use"],
+ [ 57, 32, 18, 105, 2, -1, "Not in use"],
+ [ 58, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 59, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 60, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 61, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 62, 33, 6, 306, 1, -1, "Not in use"],
+ [ 63, 33, 6, 305, 1, -1, "Not in use"],
+ [ 64, 33, 6, 304, 1, -1, "Not in use"],
+ [ 65, 33, 6, 303, 1, -1, "Not in use"],
+ [ 66, 33, 6, 302, 1, -1, "Not in use"],
+ [ 67, 33, 6, 301, 1, -1, "Not in use"],
+ [ 68, 33, 6, 300, 1, -1, "Not in use"],
+ [ 69, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 70, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 71, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 72, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 73, 33, 15, 105, 1, -1, "Not in use"],
+ [ 74, 33, 16, 105, 1, -1, "Not in use"],
+ [ 75, 33, 17, 105, 1, -1, "Not in use"],
+ [ 76, 33, 18, 105, 1, -1, "Not in use"],
+ [ 77, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 78, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 79, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 80, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 81, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 82, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 83, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 84, 48, 7, 306, 1, -1, "4 Way Valve 2"],
+ [ 85, 48, 7, 305, 1, -1, "4 Way Valve 3"],
+ [ 86, 48, 7, 304, 1, -1, "4 Way Valve 4"],
+ [ 87, 48, 7, 303, 1, -1, "4 Way Valve 5"],
+ [ 88, 48, 8, 307, 1, -1, "Crank case heater 1"],
+ [ 89, 48, 8, 306, 1, -1, "Crank case heater 2"],
+ [ 90, 48, 8, 305, 1, -1, "Crank case heater 3"],
+ [ 91, 48, 8, 304, 1, -1, "Crank case heater 4"],
+ [ 92, 48, 9, 307, 1, -1, "SV1 (hot gas)"],
+ [ 93, 48, 9, 306, 1, -1, "SV2 (BPH)"],
+ [ 94, 48, 9, 305, 1, -1, "Solenoid Valve 3"],
+ [ 95, 48, 9, 304, 1, -1, "Solenoid Valve 4"],
+ [ 96, 48, 9, 303, 1, -1, "Solenoid Valve 5"],
+ [ 97, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 98, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 99, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 100, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 101, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 102, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 103, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 104, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 105, 96, 3, 204, 1, -1, "Error Code"],
+ [ 106, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 107, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 108, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 109, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 110, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 111, 96, 11, 306, 1, -1, "Thermal Protector BUH"],
+ [ 112, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 113, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 114, 96, 11, 303, 1, -1, "Solar input"],
+ [ 115, 96, 11, 302, 1, -1, "Not in use"],
+ [ 116, 96, 11, 301, 1, -1, "Not in use"],
+ [ 117, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 118, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 119, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 120, 96, 12, 305, 1, -1, "BSH"],
+ [ 121, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 122, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 123, 96, 12, 302, 1, -1, "BPH"],
+ [ 124, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 125, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 126, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 127, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 128, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 129, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 130, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 131, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 132, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 133, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 134, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 135, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 136, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 137, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 138, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 139, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 140, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 141, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 142, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 143, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 144, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 145, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 146, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 147, 98, 2, 301, 1, -1, "Not in use"],
+ [ 148, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 149, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 150, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 151, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 152, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 153, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 154, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 155, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 156, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 157, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 158, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 159, 98, 8, 307, 1, -1, "None"],
+ [ 160, 98, 8, 306, 1, -1, "Not in use"],
+ [ 161, 98, 8, 305, 1, -1, "Not in use"],
+ [ 162, 98, 8, 304, 1, -1, "Not in use"],
+ [ 163, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 164, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 165, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 166, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 167, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 168, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 169, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 170, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 171, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 172, 98, 15, 152, 1, -1, "Not in use"],
+ [ 173, 98, 16, 307, 1, -1, "Not in use"],
+ [ 174, 98, 16, 306, 1, -1, "Not in use"],
+ [ 175, 98, 16, 305, 1, -1, "Not in use"],
+ [ 176, 98, 16, 304, 1, -1, "Not in use"],
+ [ 177, 98, 16, 303, 1, -1, "Not in use"],
+ [ 178, 98, 16, 302, 1, -1, "Not in use"],
+ [ 179, 98, 16, 301, 1, -1, "Not in use"],
+ [ 180, 98, 16, 300, 1, -1, "Not in use"],
+ [ 181, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 182, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 183, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 184, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 185, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 186, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 187, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 188, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 189, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 190, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 191, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 192, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 193, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 194, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 195, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 196, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 197, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 198, 100, 9, 301, 1, -1, "Add pump"],
+ [ 199, 100, 9, 300, 1, -1, "Main pump"],
+ [ 200, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/ALTHERMA(LT_MULTI_DHWHP).json b/definitions/X10A/ALTHERMA(LT_MULTI_DHWHP).json
new file mode 100644
index 00000000..eeb98f26
--- /dev/null
+++ b/definitions/X10A/ALTHERMA(LT_MULTI_DHWHP).json
@@ -0,0 +1,221 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_DHWHP)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 143, 144, 145, 146, 147, 148, 149]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 1, -1, "Override CMD:0x00 N_EV=1"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 2, -1, "Indoor Unit Code"],
+ [ 118, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 119, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 120, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 121, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 122, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 123, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 124, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 125, 96, 11, 303, 1, -1, "Solar input"],
+ [ 126, 96, 11, 302, 1, -1, "Not in use"],
+ [ 127, 96, 11, 301, 1, -1, "Not in use"],
+ [ 128, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 129, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 130, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 131, 96, 12, 305, 1, -1, "BSH"],
+ [ 132, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 133, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 134, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 135, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 136, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 137, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 138, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 139, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 140, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 141, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 142, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 143, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 144, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 145, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 146, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 147, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 148, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 149, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 150, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 151, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 152, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 153, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 154, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 155, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 156, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 157, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 158, 98, 2, 301, 1, -1, "Not in use"],
+ [ 159, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 160, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 161, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 162, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 163, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 164, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 165, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 166, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 167, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 168, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 169, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 170, 98, 8, 307, 1, -1, "None"],
+ [ 171, 98, 8, 306, 1, -1, "Defrost prohibition ON/OFF"],
+ [ 172, 98, 8, 305, 1, -1, "Powerful demand"],
+ [ 173, 98, 8, 304, 1, -1, "DHW priority request"],
+ [ 174, 98, 8, 303, 1, -1, "Mode conflict"],
+ [ 175, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 176, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 177, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 178, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 179, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 180, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 181, 98, 13, 152, 1, -1, "3 way Valve Mixing 1"],
+ [ 182, 98, 14, 152, 1, -1, "3 way Valve Mixing 2"],
+ [ 183, 98, 15, 152, 1, -1, "Not in use"],
+ [ 184, 98, 16, 307, 1, -1, "Not in use"],
+ [ 185, 98, 16, 306, 1, -1, "Not in use"],
+ [ 186, 98, 16, 305, 1, -1, "Not in use"],
+ [ 187, 98, 16, 304, 1, -1, "Not in use"],
+ [ 188, 98, 16, 303, 1, -1, "Not in use"],
+ [ 189, 98, 16, 302, 1, -1, "Not in use"],
+ [ 190, 98, 16, 301, 1, -1, "Not in use"],
+ [ 191, 98, 16, 300, 1, -1, "Not in use"],
+ [ 192, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 193, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 194, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 195, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 196, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 197, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 198, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 199, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 200, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 201, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 202, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 203, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 204, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 205, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 206, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 207, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 208, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 209, 100, 9, 302, 1, -1, "Add pump"],
+ [ 210, 100, 9, 301, 1, -1, "Main pump"],
+ [ 211, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"],
+ [ 212, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/ALTHERMA(LT_MULTI_HYBRID).json b/definitions/X10A/ALTHERMA(LT_MULTI_HYBRID).json
new file mode 100644
index 00000000..939d2a33
--- /dev/null
+++ b/definitions/X10A/ALTHERMA(LT_MULTI_HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_HYBRID)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 143, 144, 145, 146, 147, 148, 149]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 1, -1, "Override CMD:0x00 N_EV=1"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 2, -1, "Indoor Unit Code"],
+ [ 118, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 119, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 120, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 121, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 122, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 123, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 124, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 125, 96, 11, 303, 1, -1, "Solar input"],
+ [ 126, 96, 11, 302, 1, -1, "Not in use"],
+ [ 127, 96, 11, 301, 1, -1, "Not in use"],
+ [ 128, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 129, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 130, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 131, 96, 12, 305, 1, -1, "BSH"],
+ [ 132, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 133, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 134, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 135, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 136, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 137, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 138, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 139, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 140, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 141, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 142, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 143, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 144, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 145, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 146, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 147, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 148, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 149, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 150, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 151, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 152, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 153, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 154, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 155, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 156, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 157, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 158, 98, 2, 301, 1, -1, "Not in use"],
+ [ 159, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 160, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 161, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 162, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 163, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 164, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 165, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 166, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 167, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 168, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 169, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 170, 98, 8, 307, 1, -1, "None"],
+ [ 171, 98, 8, 306, 1, -1, "Defrost prohibition ON/OFF"],
+ [ 172, 98, 8, 305, 1, -1, "Powerful demand"],
+ [ 173, 98, 8, 304, 1, -1, "DHW priority request"],
+ [ 174, 98, 8, 303, 1, -1, "Mode conflict"],
+ [ 175, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 176, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 177, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 178, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 179, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 180, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 181, 98, 13, 152, 1, -1, "3 way Valve Mixing 1"],
+ [ 182, 98, 14, 152, 1, -1, "3 way Valve Mixing 2"],
+ [ 183, 98, 15, 152, 1, -1, "Not in use"],
+ [ 184, 98, 16, 307, 1, -1, "Not in use"],
+ [ 185, 98, 16, 306, 1, -1, "Not in use"],
+ [ 186, 98, 16, 305, 1, -1, "Not in use"],
+ [ 187, 98, 16, 304, 1, -1, "Not in use"],
+ [ 188, 98, 16, 303, 1, -1, "Not in use"],
+ [ 189, 98, 16, 302, 1, -1, "Not in use"],
+ [ 190, 98, 16, 301, 1, -1, "Not in use"],
+ [ 191, 98, 16, 300, 1, -1, "Not in use"],
+ [ 192, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 193, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 194, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 195, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 196, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 197, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 198, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 199, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 200, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 201, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 202, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 203, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 204, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 205, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 206, 100, 2, 300, 1, -1, "Hybrid DHW operation mode"],
+ [ 207, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 208, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 209, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 210, 100, 9, 302, 1, -1, "Add pump"],
+ [ 211, 100, 9, 301, 1, -1, "Main pump"],
+ [ 212, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"],
+ [ 213, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json b/definitions/X10A/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
new file mode 100644
index 00000000..30c053f5
--- /dev/null
+++ b/definitions/X10A/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 4-8kW Monobloc)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Y1S"],
+ [ 74, 48, 13, 306, 1, -1, "SV (drain pan heater)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "SV (drain pan heater)"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 405, 1, 1, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 215, 1, -1, "Not in use"],
+ [ 196, 99, 9, 215, 1, -1, "Not in use"],
+ [ 197, 99, 10, 215, 1, -1, "Not in use"],
+ [ 198, 99, 11, 301, 1, -1, "[RT space thermo ON/OFF] (bit1)"],
+ [ 199, 99, 12, 300, 1, -1, "[RT space thermo ON/OFF] (bit0)"],
+ [ 200, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 201, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 202, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 203, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 204, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 205, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 206, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 207, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 208, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 209, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 210, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 211, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 212, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 213, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 214, 100, 9, 302, 1, -1, "Add pump"],
+ [ 215, 100, 9, 301, 1, -1, "Main pump"],
+ [ 216, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 217, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 218, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 219, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json b/definitions/X10A/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
new file mode 100644
index 00000000..27c66171
--- /dev/null
+++ b/definitions/X10A/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
@@ -0,0 +1,232 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 9-16kW Monobloc)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 99, 8, 215, 1, -1, "Not in use"],
+ [ 195, 99, 9, 215, 1, -1, "Not in use"],
+ [ 196, 99, 10, 215, 1, -1, "Not in use"],
+ [ 197, 99, 11, 215, 1, -1, "Not in use"],
+ [ 198, 99, 12, 215, 1, -1, "Not in use"],
+ [ 199, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 200, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 201, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 202, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 203, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 204, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 205, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 206, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 207, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 208, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 209, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 210, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 211, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 212, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 213, 100, 9, 302, 1, -1, "Add pump"],
+ [ 214, 100, 9, 301, 1, -1, "Main pump"],
+ [ 215, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 216, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 217, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 218, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 219, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 220, 101, 1, 152, 2, -1, "Indoor Unit Address"],
+ [ 221, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 222, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 223, 101, 6, 101, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json b/definitions/X10A/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
new file mode 100644
index 00000000..cc6c4332
--- /dev/null
+++ b/definitions/X10A/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
@@ -0,0 +1,179 @@
+{
+ "Model": "Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 50, 51, 52, 114, 115, 116, 117, 118, 119, 120]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "2 phase thermistor (R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Entering brine temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Leaving brine temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 152, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 152, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 152, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Brine pump feedback"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "4 way valve (Y1S)"],
+ [ 74, 48, 13, 306, 1, -1, "Y2S"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 77, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 78, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 79, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 80, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 81, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 82, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 83, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 84, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 85, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 86, 96, 3, 204, 1, -1, "Error Code"],
+ [ 87, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 88, 96, 5, 203, 1, -1, "Error type"],
+ [ 89, 96, 6, 219, 1, -1, "Indoor Unit Capacity"],
+ [ 90, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 91, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 92, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 93, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 94, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 95, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 96, 96, 11, 303, 1, -1, "Solar input"],
+ [ 97, 96, 11, 302, 1, -1, "Not in use"],
+ [ 98, 96, 11, 301, 1, -1, "Not in use"],
+ [ 99, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 100, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 101, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 102, 96, 12, 305, 1, -1, "BSH"],
+ [ 103, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 104, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 105, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 106, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 107, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 108, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 109, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 110, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 111, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 112, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 113, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 114, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 115, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 116, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 117, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 118, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 119, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 120, 97, 13, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 121, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 122, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 123, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 124, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 125, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 126, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 127, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 128, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 129, 98, 2, 301, 1, -1, "Not in use"],
+ [ 130, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 131, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 132, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 133, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 134, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 135, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 136, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 137, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 138, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 139, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 140, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 141, 98, 8, 307, 1, -1, "None"],
+ [ 142, 98, 8, 306, 1, -1, "Not in use"],
+ [ 143, 98, 8, 305, 1, -1, "Not in use"],
+ [ 144, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 145, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 146, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 147, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 148, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 149, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 150, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 151, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 152, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 153, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 154, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 155, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 156, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 157, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 158, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 159, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 160, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 161, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 162, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 163, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 164, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 165, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 166, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 167, 99, 16, 307, 1, -1, "HP is operation forced OFF by installer"],
+ [ 168, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 169, 100, 14, 152, 1, -1, "Target delta T heating"],
+ [ 170, 100, 15, 152, 1, -1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EGSQH-A series 10kW GEO2).json b/definitions/X10A/Altherma(EGSQH-A series 10kW GEO2).json
new file mode 100644
index 00000000..2beed5c4
--- /dev/null
+++ b/definitions/X10A/Altherma(EGSQH-A series 10kW GEO2).json
@@ -0,0 +1,220 @@
+{
+ "Model": "Altherma(EGSQH-A series 10kW GEO2)",
+ "Language": "English",
+ "Presets": {
+ "Light": [55, 57, 58, 59, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "2 phase thermistor (R4T)"],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 58, 32, 8, 105, 2, 1, "Entering brine temp.(R5T)"],
+ [ 59, 32, 10, 105, 2, 1, "Leaving brine temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp.(R10T)"],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 32, 16, 105, 2, -1, "Not in use"],
+ [ 64, 32, 18, 105, 2, -1, "Not in use"],
+ [ 65, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 66, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 67, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 68, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 69, 33, 6, 306, 1, -1, "Not in use"],
+ [ 70, 33, 6, 305, 1, -1, "Not in use"],
+ [ 71, 33, 6, 304, 1, -1, "Not in use"],
+ [ 72, 33, 6, 303, 1, -1, "Not in use"],
+ [ 73, 33, 6, 302, 1, -1, "Not in use"],
+ [ 74, 33, 6, 301, 1, -1, "Not in use"],
+ [ 75, 33, 6, 300, 1, -1, "Not in use"],
+ [ 76, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 77, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 78, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 79, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 80, 33, 15, 105, 1, -1, "Not in use"],
+ [ 81, 33, 16, 105, 1, -1, "Not in use"],
+ [ 82, 33, 17, 105, 1, -1, "Not in use"],
+ [ 83, 33, 18, 105, 1, -1, "Not in use"],
+ [ 84, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 85, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 86, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 87, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 88, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 89, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 90, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 91, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 92, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 93, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 94, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 95, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 96, 48, 0, 307, 1, -1, "4 Way Valve"],
+ [ 97, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 98, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 99, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 100, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 101, 48, 0, 307, 1, -1, "Crank case heater"],
+ [ 102, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 103, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 104, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 105, 48, 0, 307, 1, -1, "SV (hot Gas)"],
+ [ 106, 48, 0, 306, 1, -1, "SV (BPH)"],
+ [ 107, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 108, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 109, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 110, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 111, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 112, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 113, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 114, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 115, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 116, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 117, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 118, 96, 3, 204, 1, -1, "Error Code"],
+ [ 119, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "Not in use"],
+ [ 129, 96, 11, 301, 1, -1, "Not in use"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "BPH"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 13, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "Not in use"],
+ [ 176, 98, 8, 303, 1, -1, "Not in use"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 152, 1, -1, "Not in use"],
+ [ 186, 98, 16, 307, 1, -1, "Not in use"],
+ [ 187, 98, 16, 306, 1, -1, "Not in use"],
+ [ 188, 98, 16, 305, 1, -1, "Not in use"],
+ [ 189, 98, 16, 304, 1, -1, "Not in use"],
+ [ 190, 98, 16, 303, 1, -1, "Not in use"],
+ [ 191, 98, 16, 302, 1, -1, "Not in use"],
+ [ 192, 98, 16, 301, 1, -1, "Not in use"],
+ [ 193, 98, 16, 300, 1, -1, "Not in use"],
+ [ 194, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 195, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 196, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 197, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 198, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 199, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 200, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 201, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 202, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 203, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 204, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 205, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 206, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 207, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 208, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 209, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 210, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 211, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json b/definitions/X10A/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
new file mode 100644
index 00000000..6371f8fd
--- /dev/null
+++ b/definitions/X10A/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
@@ -0,0 +1,201 @@
+{
+ "Model": "Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 128, 129, 130, 131, 132, 133, 134]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, -1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Brine inlet temp."],
+ [ 61, 33, 8, 105, 2, 1, "Brine outlet temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 33, 12, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 64, 33, 15, 105, 1, -1, "Not in use"],
+ [ 65, 33, 16, 105, 1, -1, "Not in use"],
+ [ 66, 33, 17, 105, 1, -1, "Not in use"],
+ [ 67, 33, 18, 105, 1, -1, "Not in use"],
+ [ 68, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 69, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 70, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 71, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 72, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 73, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 74, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 75, 48, 7, 306, 1, -1, "4 Way Valve 2"],
+ [ 76, 48, 7, 305, 1, -1, "4 Way Valve 3"],
+ [ 77, 48, 7, 304, 1, -1, "4 Way Valve 4"],
+ [ 78, 48, 7, 303, 1, -1, "4 Way Valve 5"],
+ [ 79, 48, 7, 302, 1, -1, "4 Way Valve 6"],
+ [ 80, 48, 7, 301, 1, -1, "4 Way Valve 7"],
+ [ 81, 48, 7, 300, 1, -1, "4 Way Valve 8"],
+ [ 82, 48, 8, 307, 1, -1, "Crank case heater"],
+ [ 83, 48, 9, 307, 1, 1, "Hot gas bypass valve (Y2S)"],
+ [ 84, 48, 9, 306, 1, 1, "LP bypass valve (Y3S)"],
+ [ 85, 48, 10, 112, 1, 1, "Inlet water temp. (DMW)"],
+ [ 86, 48, 11, 112, 1, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 87, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 88, 160, 12, 301, 1, 1, "4 way valve (Y1S)"],
+ [ 89, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 90, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 91, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 92, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 93, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 94, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 95, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 96, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 97, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 98, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 99, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 100, 96, 3, 204, 1, -1, "Error Code"],
+ [ 101, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 102, 96, 5, 203, 1, -1, "Error type"],
+ [ 103, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 104, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 105, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 106, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 107, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 108, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 109, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 110, 96, 11, 303, 1, -1, "Solar input"],
+ [ 111, 96, 11, 302, 1, -1, "Not in use"],
+ [ 112, 96, 11, 301, 1, -1, "Not in use"],
+ [ 113, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 114, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 115, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 116, 96, 12, 305, 1, -1, "BSH"],
+ [ 117, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 118, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 119, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 120, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 121, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 122, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 123, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 124, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 125, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 126, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 127, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 128, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 129, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 130, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 131, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 132, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 133, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 134, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 135, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 136, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 137, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 138, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 139, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 140, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 141, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 142, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 143, 98, 2, 301, 1, -1, "Not in use"],
+ [ 144, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 145, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 146, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 147, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 148, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 149, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 150, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 151, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 152, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 153, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 154, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 155, 98, 8, 307, 1, -1, "None"],
+ [ 156, 98, 8, 306, 1, -1, "Not in use"],
+ [ 157, 98, 8, 305, 1, -1, "Not in use"],
+ [ 158, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 159, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 160, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 161, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 162, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 163, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 164, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 165, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 166, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 167, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 168, 98, 15, 152, 2, 2, "Refrigerant pressure sensor"],
+ [ 169, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 170, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 171, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 172, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 173, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 174, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 175, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 176, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 177, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 178, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 179, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 180, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 181, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 182, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 183, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 184, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 185, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 186, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 187, 100, 9, 302, 1, -1, "Add pump"],
+ [ 188, 100, 9, 301, 1, -1, "Main pump"],
+ [ 189, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 190, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 191, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 192, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json b/definitions/X10A/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
new file mode 100644
index 00000000..8bd3a4f2
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "[HPSU] Tv inflow Temp (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "[HPSU] Tvbh inflow Temp after Buffer/BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 99, 8, 215, 1, -1, "Not in use"],
+ [ 195, 99, 9, 215, 1, -1, "Not in use"],
+ [ 196, 99, 10, 215, 1, -1, "Not in use"],
+ [ 197, 99, 11, 215, 1, -1, "Not in use"],
+ [ 198, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 199, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 200, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 201, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 202, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 203, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 204, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 205, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 206, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 207, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 208, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 209, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 210, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 211, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 212, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 213, 100, 9, 302, 1, -1, "Add pump"],
+ [ 214, 100, 9, 301, 1, -1, "Main pump"],
+ [ 215, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 216, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 217, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 218, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json b/definitions/X10A/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
new file mode 100644
index 00000000..c81b822b
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 99, 8, 215, 1, -1, "Not in use"],
+ [ 195, 99, 9, 215, 1, -1, "Not in use"],
+ [ 196, 99, 10, 215, 1, -1, "Not in use"],
+ [ 197, 99, 11, 215, 1, -1, "Not in use"],
+ [ 198, 99, 12, 215, 1, -1, "Not in use"],
+ [ 199, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 200, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 201, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 202, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 203, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 204, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 205, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 206, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 207, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 208, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 209, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 210, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 211, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 212, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 213, 100, 9, 302, 1, -1, "Add pump"],
+ [ 214, 100, 9, 301, 1, -1, "Main pump"],
+ [ 215, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 216, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 217, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 218, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json b/definitions/X10A/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
new file mode 100644
index 00000000..76128d19
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 173, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 174, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 175, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 176, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 177, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 178, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 179, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 180, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 181, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 182, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 183, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 184, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 185, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 186, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 196, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 197, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 198, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 199, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 200, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 201, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 202, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 203, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 204, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 205, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 206, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 207, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 208, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 209, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 210, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 211, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 212, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 213, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 214, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 215, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 216, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 217, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 218, 100, 9, 302, 1, -1, "Add pump"],
+ [ 219, 100, 9, 301, 1, -1, "Main pump"],
+ [ 220, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 221, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 222, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 223, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 224, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 225, 101, 0, 152, 1, -1, "Indoor Unit Address"],
+ [ 226, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 227, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 228, 101, 6, 152, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json b/definitions/X10A/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
new file mode 100644
index 00000000..2044668f
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 173, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 174, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 175, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 176, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 177, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 178, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 179, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 180, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 181, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 182, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 183, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 184, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 185, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 186, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 196, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 197, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 198, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 199, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 200, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 201, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 202, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 203, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 204, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 205, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 206, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 207, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 208, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 209, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 210, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 211, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 212, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 213, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 214, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 215, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 216, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 217, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 218, 100, 9, 302, 1, -1, "Add pump"],
+ [ 219, 100, 9, 301, 1, -1, "Main pump"],
+ [ 220, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 221, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 222, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 223, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 224, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 225, 101, 0, 152, 1, -1, "Indoor Unit Address"],
+ [ 226, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 227, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 228, 101, 6, 152, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json b/definitions/X10A/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
new file mode 100644
index 00000000..9d4a4a1a
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 146, 147, 148, 149, 150, 151, 152]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 33, 12, 105, 2, 1, "Injection tube temperature"],
+ [ 64, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 65, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 66, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 67, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 68, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 69, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 70, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 71, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 72, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 73, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 74, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 75, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 76, 48, 13, 305, 1, -1, "Y3S"],
+ [ 77, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 78, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 79, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 80, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 81, 160, 6, 119, 2, 2, "Pressure"],
+ [ 82, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 83, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 85, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 86, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 87, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 88, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 89, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 90, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 91, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 92, 160, 12, 300, 1, -1, "52C Output"],
+ [ 93, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 94, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 95, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 96, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 97, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 98, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 99, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 100, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 101, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 102, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 103, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 104, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 105, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 106, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 107, 161, 9, 303, 1, -1, "MT setting"],
+ [ 108, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 109, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 110, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 111, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 112, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 113, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 114, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 115, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 116, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 117, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 118, 96, 3, 204, 1, -1, "Error Code"],
+ [ 119, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 120, 96, 5, 203, 1, -1, "Error type"],
+ [ 121, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 122, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 123, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 124, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 125, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 126, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 127, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 128, 96, 11, 303, 1, -1, "Solar input"],
+ [ 129, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 130, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 131, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 132, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 133, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 134, 96, 12, 305, 1, -1, "BSH"],
+ [ 135, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 136, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 137, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 138, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 139, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 140, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 141, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 142, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 143, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 144, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 145, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 146, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 147, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 148, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 149, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 150, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 151, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 152, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 153, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 154, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 155, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 156, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 157, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 158, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 159, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 160, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 161, 98, 2, 301, 1, -1, "Not in use"],
+ [ 162, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 163, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 164, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 165, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 166, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 167, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 168, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 169, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 170, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 171, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 172, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 173, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 174, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 175, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 176, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 177, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 178, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 179, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 180, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 181, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 182, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 183, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 184, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 185, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 186, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 187, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 188, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 189, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 190, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 191, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 192, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 193, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 194, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 195, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 196, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 197, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 198, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 199, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 200, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 201, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 202, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 203, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 204, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 205, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 206, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 207, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 208, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 209, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 210, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 211, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 212, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 213, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 214, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 215, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 216, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 217, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 218, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 219, 100, 9, 302, 1, -1, "Add pump"],
+ [ 220, 100, 9, 301, 1, -1, "Main pump"],
+ [ 221, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 222, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 223, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 224, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 225, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 226, 101, 0, 152, 1, -1, "Indoor Unit Address"],
+ [ 227, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 228, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 229, 101, 6, 152, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json b/definitions/X10A/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
new file mode 100644
index 00000000..4cb72213
--- /dev/null
+++ b/definitions/X10A/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 146, 147, 148, 149, 150, 151, 152]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 33, 12, 105, 2, 1, "Injection tube temperature"],
+ [ 64, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 65, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 66, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 67, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 68, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 69, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 70, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 71, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 72, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 73, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 74, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 75, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 76, 48, 13, 305, 1, -1, "Y3S"],
+ [ 77, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 78, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 79, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 80, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 81, 160, 6, 119, 2, 2, "Pressure"],
+ [ 82, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 83, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 85, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 86, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 87, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 88, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 89, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 90, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 91, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 92, 160, 12, 300, 1, -1, "52C Output"],
+ [ 93, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 94, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 95, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 96, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 97, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 98, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 99, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 100, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 101, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 102, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 103, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 104, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 105, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 106, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 107, 161, 9, 303, 1, -1, "MT setting"],
+ [ 108, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 109, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 110, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 111, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 112, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 113, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 114, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 115, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 116, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 117, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 118, 96, 3, 204, 1, -1, "Error Code"],
+ [ 119, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 120, 96, 5, 203, 1, -1, "Error type"],
+ [ 121, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 122, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 123, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 124, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 125, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 126, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 127, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 128, 96, 11, 303, 1, -1, "Solar input"],
+ [ 129, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 130, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 131, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 132, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 133, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 134, 96, 12, 305, 1, -1, "BSH"],
+ [ 135, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 136, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 137, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 138, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 139, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 140, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 141, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 142, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 143, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 144, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 145, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 146, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 147, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 148, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 149, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 150, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 151, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 152, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 153, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 154, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 155, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 156, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 157, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 158, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 159, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 160, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 161, 98, 2, 301, 1, -1, "Not in use"],
+ [ 162, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 163, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 164, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 165, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 166, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 167, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 168, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 169, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 170, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 171, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 172, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 173, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 174, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 175, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 176, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 177, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 178, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 179, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 180, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 181, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 182, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 183, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 184, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 185, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 186, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 187, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 188, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 189, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 190, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 191, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 192, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 193, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 194, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 195, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 196, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 197, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 198, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 199, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 200, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 201, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 202, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 203, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 204, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 205, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 206, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 207, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 208, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 209, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 210, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 211, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 212, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 213, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 214, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 215, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 216, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 217, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 218, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 219, 100, 9, 302, 1, -1, "Add pump"],
+ [ 220, 100, 9, 301, 1, -1, "Main pump"],
+ [ 221, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 222, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 223, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 224, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 225, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 226, 101, 0, 152, 1, -1, "Indoor Unit Address"],
+ [ 227, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 228, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 229, 101, 6, 152, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json b/definitions/X10A/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..cdc79709
--- /dev/null
+++ b/definitions/X10A/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 144, 145, 146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure sensor"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure sensor(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (10 rpm)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 118, 96, 5, 203, 1, -1, "Error type"],
+ [ 119, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 120, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 121, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 122, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 123, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 124, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 125, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 126, 96, 11, 303, 1, -1, "Solar input"],
+ [ 127, 96, 11, 302, 1, -1, "Not in use"],
+ [ 128, 96, 11, 301, 1, -1, "Not in use"],
+ [ 129, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 130, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 131, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 132, 96, 12, 305, 1, -1, "BSH"],
+ [ 133, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 134, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 135, 96, 12, 302, 1, -1, "BPH"],
+ [ 136, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 137, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 138, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 139, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 140, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 141, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 142, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 143, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 144, 97, 2, 105, 2, 1, "[HPSU] Tv inflow Temp (R1T)"],
+ [ 145, 97, 4, 105, 2, 1, "[HPSU] Tvbh inflow Temp after Buffer/BUH (R2T)"],
+ [ 146, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 147, 97, 8, 105, 2, 1, "[HPSU] Tr return Temp (R4T)"],
+ [ 148, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 149, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 150, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 151, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 152, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 153, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 154, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 155, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 156, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 157, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 158, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 159, 98, 2, 301, 1, -1, "Not in use"],
+ [ 160, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 161, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 162, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 163, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 164, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 165, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 166, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 167, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 168, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 169, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 170, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 171, 98, 8, 307, 1, -1, "None"],
+ [ 172, 98, 8, 306, 1, -1, "Not in use"],
+ [ 173, 98, 8, 305, 1, -1, "Not in use"],
+ [ 174, 98, 8, 304, 1, -1, "Not in use"],
+ [ 175, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 176, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 177, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 178, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 179, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 180, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 181, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 182, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 183, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 184, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 185, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 195, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 196, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 197, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 198, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 199, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 200, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 201, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 202, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 203, 100, 9, 302, 1, -1, "Add pump"],
+ [ 204, 100, 9, 301, 1, -1, "Main pump"],
+ [ 205, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 206, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 207, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 208, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 209, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json b/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
new file mode 100644
index 00000000..d1e4e570
--- /dev/null
+++ b/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 144, 145, 146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure sensor"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure sensor(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (10 rpm)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 118, 96, 5, 203, 1, -1, "Error type"],
+ [ 119, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 120, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 121, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 122, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 123, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 124, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 125, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 126, 96, 11, 303, 1, -1, "Solar input"],
+ [ 127, 96, 11, 302, 1, -1, "Not in use"],
+ [ 128, 96, 11, 301, 1, -1, "Not in use"],
+ [ 129, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 130, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 131, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 132, 96, 12, 305, 1, -1, "BSH"],
+ [ 133, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 134, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 135, 96, 12, 302, 1, -1, "BPH"],
+ [ 136, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 137, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 138, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 139, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 140, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 141, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 142, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 143, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 144, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 145, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 146, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 147, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 148, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 149, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 150, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 151, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 152, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 153, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 154, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 155, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 156, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 157, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 158, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 159, 98, 2, 301, 1, -1, "Not in use"],
+ [ 160, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 161, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 162, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 163, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 164, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 165, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 166, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 167, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 168, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 169, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 170, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 171, 98, 8, 307, 1, -1, "None"],
+ [ 172, 98, 8, 306, 1, -1, "Not in use"],
+ [ 173, 98, 8, 305, 1, -1, "Not in use"],
+ [ 174, 98, 8, 304, 1, -1, "Not in use"],
+ [ 175, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 176, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 177, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 178, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 179, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 180, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 181, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 182, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 183, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 184, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 185, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 195, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 196, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 197, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 198, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 199, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 200, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 201, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 202, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 203, 100, 9, 302, 1, -1, "Add pump"],
+ [ 204, 100, 9, 301, 1, -1, "Main pump"],
+ [ 205, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 206, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 207, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 208, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 209, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json b/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
new file mode 100644
index 00000000..1c1ad43e
--- /dev/null
+++ b/definitions/X10A/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (10 rpm)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve 1"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Y1S"],
+ [ 74, 48, 13, 306, 1, -1, "SV (drain pan heater)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "SV (drain pan heater)"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 215, 1, -1, "Not in use"],
+ [ 196, 99, 9, 215, 1, -1, "Not in use"],
+ [ 197, 99, 10, 215, 1, -1, "Not in use"],
+ [ 198, 99, 11, 301, 1, -1, "[RT space thermo ON/OFF] (bit1)"],
+ [ 199, 99, 12, 300, 1, -1, "[RT space thermo ON/OFF] (bit0)"],
+ [ 200, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 201, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 202, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 203, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 204, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 205, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 206, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 207, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 208, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 209, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 210, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 211, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 212, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 213, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 214, 100, 9, 302, 1, -1, "Add pump"],
+ [ 215, 100, 9, 301, 1, -1, "Main pump"],
+ [ 216, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 217, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 218, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 219, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json b/definitions/X10A/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..8d23f1e0
--- /dev/null
+++ b/definitions/X10A/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Y1S"],
+ [ 74, 48, 13, 306, 1, -1, "SV (drain pan heater)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "SV (drain pan heater)"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 173, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 174, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 175, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 176, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 177, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 178, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 179, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 180, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 181, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 182, 98, 11, 405, 1, 1, "Water pressure"],
+ [ 183, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 184, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 185, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 186, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 187, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 188, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 189, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 190, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 191, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 192, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 193, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 194, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 195, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 196, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 197, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 198, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 199, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 200, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 201, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 202, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 203, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 204, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 205, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 206, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 207, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 208, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 209, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 210, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 211, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 212, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 213, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 214, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 215, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 216, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 217, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 218, 100, 9, 302, 1, -1, "Add pump"],
+ [ 219, 100, 9, 301, 1, -1, "Main pump"],
+ [ 220, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 221, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 222, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 223, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 224, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 225, 101, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 226, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 227, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 228, 101, 6, 101, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json b/definitions/X10A/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
new file mode 100644
index 00000000..0527e970
--- /dev/null
+++ b/definitions/X10A/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Y1S"],
+ [ 74, 48, 13, 306, 1, -1, "SV (drain pan heater)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "SV (drain pan heater)"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 405, 1, 1, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 215, 1, -1, "Not in use"],
+ [ 196, 99, 9, 215, 1, -1, "Not in use"],
+ [ 197, 99, 10, 215, 1, -1, "Not in use"],
+ [ 198, 99, 12, 301, 1, -1, "[RT space thermo ON/OFF] (bit1)"],
+ [ 199, 99, 12, 300, 1, -1, "[RT space thermo ON/OFF] (bit0)"],
+ [ 200, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 201, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 202, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 203, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 204, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 205, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 206, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 207, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 208, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 209, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 210, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 211, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 212, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 213, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 214, 100, 9, 302, 1, -1, "Add pump"],
+ [ 215, 100, 9, 301, 1, -1, "Main pump"],
+ [ 216, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 217, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 218, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 219, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json b/definitions/X10A/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
new file mode 100644
index 00000000..cc8e6d43
--- /dev/null
+++ b/definitions/X10A/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
@@ -0,0 +1,236 @@
+{
+ "Model": "Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 173, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 174, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 99, 8, 105, 2, 1, "[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"],
+ [ 195, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 196, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 197, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 198, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 199, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 200, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 201, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 202, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 203, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 204, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 205, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 206, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 207, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 208, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 209, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 210, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 211, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 212, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 213, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 214, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 215, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 216, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 217, 100, 9, 302, 1, -1, "Add pump"],
+ [ 218, 100, 9, 301, 1, -1, "Main pump"],
+ [ 219, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 220, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 221, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 222, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 223, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 224, 101, 1, 152, 2, -1, "Indoor Unit Address"],
+ [ 225, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 226, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 227, 101, 6, 101, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json b/definitions/X10A/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
new file mode 100644
index 00000000..6e3f8dc7
--- /dev/null
+++ b/definitions/X10A/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [48, 49, 50, 51, 52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp.(R4T)"],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp.(R2T)"],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp.(R3T)"],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp.(R5T)"],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Hot gas bypass valve (Y3S)"],
+ [ 74, 48, 13, 306, 1, -1, "LP bypass valve (Y2S)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "Solenoid Valve 2"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "Pump Feedback (bit7)"],
+ [ 173, 98, 8, 306, 1, -1, "Pump Feedback (bit6)"],
+ [ 174, 98, 8, 305, 1, -1, "Pump Feedback (bit5)"],
+ [ 175, 98, 8, 336, 1, -1, "Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"],
+ [ 176, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 177, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 178, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 179, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 180, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 181, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 182, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 183, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 184, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 185, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 186, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 105, 2, 1, "Mixed water temp.(R7T)"],
+ [ 196, 99, 10, 101, 1, -1, "[HPSU] Tank valve position (0:Bypass 100:Tank)"],
+ [ 197, 99, 11, 101, 1, -1, "[HPSU] Bypass valve position (0:Bypass 100:Emitter)"],
+ [ 198, 99, 12, 323, 1, -1, "[HPSU] Tank state (1:preheat 2:support 3:excess)"],
+ [ 199, 99, 12, 305, 1, -1, "[HPSU] Tank DHW bivalent output signal"],
+ [ 200, 99, 12, 304, 1, -1, "[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 201, 99, 12, 303, 1, -1, "[HPSU] Tank heating bivalent output signal"],
+ [ 202, 99, 12, 302, 1, -1, "[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"],
+ [ 203, 99, 12, 317, 1, -1, "RT Control State (0:thermo off 1:thermo on 2:buffering)"],
+ [ 204, 99, 13, 152, 1, -1, "BUH output capacity"],
+ [ 205, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 206, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 207, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 208, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 209, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 210, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 211, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 212, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 213, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 214, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 215, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 216, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 217, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 218, 100, 9, 302, 1, -1, "Add pump"],
+ [ 219, 100, 9, 301, 1, -1, "Main pump"],
+ [ 220, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 221, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 222, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 223, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 224, 101, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 225, 101, 1, 152, 2, -1, "Indoor Unit Address"],
+ [ 226, 101, 2, 105, 2, 1, "Outlet water heat exchanger temp (hydro split model) DLWB2"],
+ [ 227, 101, 4, 105, 2, 1, "[EKMIK] Bizone kit mixed leaving water temperature R1T"],
+ [ 228, 101, 6, 152, 1, -1, "[EKMIK] Bizone kit mix valve position M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json b/definitions/X10A/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
new file mode 100644
index 00000000..e0c69b11
--- /dev/null
+++ b/definitions/X10A/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 144, 145, 146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure sensor"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure sensor(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (10 rpm)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 118, 96, 5, 203, 1, -1, "Error type"],
+ [ 119, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 120, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 121, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 122, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 123, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 124, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 125, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 126, 96, 11, 303, 1, -1, "Solar input"],
+ [ 127, 96, 11, 302, 1, -1, "Not in use"],
+ [ 128, 96, 11, 301, 1, -1, "Not in use"],
+ [ 129, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 130, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 131, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 132, 96, 12, 305, 1, -1, "BSH"],
+ [ 133, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 134, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 135, 96, 12, 302, 1, -1, "BPH"],
+ [ 136, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 137, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 138, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 139, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 140, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 141, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 142, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 143, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 144, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 145, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 146, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 147, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 148, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 149, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 150, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 151, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 152, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 153, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 154, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 155, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 156, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 157, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 158, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 159, 98, 2, 301, 1, -1, "Not in use"],
+ [ 160, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 161, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 162, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 163, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 164, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 165, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 166, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 167, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 168, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 169, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 170, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 171, 98, 8, 307, 1, -1, "None"],
+ [ 172, 98, 8, 306, 1, -1, "Not in use"],
+ [ 173, 98, 8, 305, 1, -1, "Not in use"],
+ [ 174, 98, 8, 304, 1, -1, "Not in use"],
+ [ 175, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 176, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 177, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 178, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 179, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 180, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 181, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 182, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 183, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 184, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 185, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 195, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 196, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 197, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 198, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 199, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 200, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 201, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 202, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 203, 100, 9, 302, 1, -1, "Add pump"],
+ [ 204, 100, 9, 301, 1, -1, "Main pump"],
+ [ 205, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 206, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 207, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 208, 100, 15, 152, 1, 1, "Target delta T cooling"],
+ [ 209, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(LT_CB_04-08kW Bizone).json b/definitions/X10A/Altherma(LT_CB_04-08kW Bizone).json
new file mode 100644
index 00000000..fd60b96f
--- /dev/null
+++ b/definitions/X10A/Altherma(LT_CB_04-08kW Bizone).json
@@ -0,0 +1,222 @@
+{
+ "Model": "Altherma(LT_CB_04-08kW Bizone)",
+ "Language": "English",
+ "Presets": {
+ "Light": [59, 144, 145, 146, 147, 148, 149, 150]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 58, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 60, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 67, 33, 6, 306, 1, -1, "Not in use"],
+ [ 68, 33, 6, 305, 1, -1, "Not in use"],
+ [ 69, 33, 6, 304, 1, -1, "Not in use"],
+ [ 70, 33, 6, 303, 1, -1, "Not in use"],
+ [ 71, 33, 6, 302, 1, -1, "Not in use"],
+ [ 72, 33, 6, 301, 1, -1, "Not in use"],
+ [ 73, 33, 6, 300, 1, -1, "Not in use"],
+ [ 74, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 75, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 76, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 77, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 78, 33, 15, 105, 1, -1, "Not in use"],
+ [ 79, 33, 16, 105, 1, -1, "Not in use"],
+ [ 80, 33, 17, 105, 1, -1, "Not in use"],
+ [ 81, 33, 18, 105, 1, -1, "Not in use"],
+ [ 82, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 83, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 84, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 85, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 86, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 87, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 88, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 89, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 90, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 91, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 92, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 93, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 94, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 95, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 96, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 97, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 98, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 99, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 100, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 101, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 102, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 103, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 104, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 105, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 106, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 107, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 108, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 109, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 110, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 111, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 112, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 113, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 114, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 115, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 116, 96, 3, 204, 1, -1, "Error Code"],
+ [ 117, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 118, 96, 5, 203, 1, -1, "Error type"],
+ [ 119, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 120, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 121, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 122, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 123, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 124, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 125, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 126, 96, 11, 303, 1, -1, "Solar input"],
+ [ 127, 96, 11, 302, 1, -1, "Not in use"],
+ [ 128, 96, 11, 301, 1, -1, "Not in use"],
+ [ 129, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 130, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 131, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 132, 96, 12, 305, 1, -1, "BSH"],
+ [ 133, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 134, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 135, 96, 12, 302, 1, -1, "BPH"],
+ [ 136, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 137, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 138, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 139, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 140, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 141, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 142, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 143, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 144, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 145, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 146, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 147, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 148, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 149, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 150, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 151, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 152, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 153, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 154, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 155, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 156, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 157, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 158, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 159, 98, 2, 301, 1, -1, "Not in use"],
+ [ 160, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 161, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 162, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 163, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 164, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 165, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 166, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 167, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 168, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 169, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 170, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 171, 98, 8, 307, 1, -1, "None"],
+ [ 172, 98, 8, 306, 1, -1, "Not in use"],
+ [ 173, 98, 8, 305, 1, -1, "Not in use"],
+ [ 174, 98, 8, 304, 1, -1, "Not in use"],
+ [ 175, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 176, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 177, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 178, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 179, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 180, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 181, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 182, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 183, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 184, 98, 15, 152, 1, -1, "Not in use"],
+ [ 185, 98, 16, 307, 1, -1, "Not in use"],
+ [ 186, 98, 16, 306, 1, -1, "Not in use"],
+ [ 187, 98, 16, 305, 1, -1, "Not in use"],
+ [ 188, 98, 16, 304, 1, -1, "Not in use"],
+ [ 189, 98, 16, 303, 1, -1, "Not in use"],
+ [ 190, 98, 16, 302, 1, -1, "Not in use"],
+ [ 191, 98, 16, 301, 1, -1, "Not in use"],
+ [ 192, 98, 16, 300, 1, -1, "Not in use"],
+ [ 193, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 194, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 195, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 196, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 197, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 198, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 199, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 200, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 201, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 202, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 203, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 204, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 205, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 206, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 207, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 208, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 209, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 210, 100, 9, 302, 1, -1, "Add pump"],
+ [ 211, 100, 9, 301, 1, -1, "Main pump"],
+ [ 212, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"],
+ [ 213, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(LT_CB_11-16kW Bizone).json b/definitions/X10A/Altherma(LT_CB_11-16kW Bizone).json
new file mode 100644
index 00000000..2537f1d5
--- /dev/null
+++ b/definitions/X10A/Altherma(LT_CB_11-16kW Bizone).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Altherma(LT_CB_11-16kW Bizone)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 138, 139, 140, 141, 142, 143, 144]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 54, 32, 14, 105, 2, 2, "Pressure"],
+ [ 55, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 56, 32, 16, 105, 2, -1, "Not in use"],
+ [ 57, 32, 18, 105, 2, -1, "Not in use"],
+ [ 58, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 59, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 60, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 61, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 62, 33, 6, 306, 1, -1, "Not in use"],
+ [ 63, 33, 6, 305, 1, -1, "Not in use"],
+ [ 64, 33, 6, 304, 1, -1, "Not in use"],
+ [ 65, 33, 6, 303, 1, -1, "Not in use"],
+ [ 66, 33, 6, 302, 1, -1, "Not in use"],
+ [ 67, 33, 6, 301, 1, -1, "Not in use"],
+ [ 68, 33, 6, 300, 1, -1, "Not in use"],
+ [ 69, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 70, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 71, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 72, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 73, 33, 15, 105, 1, -1, "Not in use"],
+ [ 74, 33, 16, 105, 1, -1, "Not in use"],
+ [ 75, 33, 17, 105, 1, -1, "Not in use"],
+ [ 76, 33, 18, 105, 1, -1, "Not in use"],
+ [ 77, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 78, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 79, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 80, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 81, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 82, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 83, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 84, 48, 0, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 85, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 86, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 87, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 88, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 89, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 90, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 91, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 92, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 93, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 94, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 95, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 96, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 97, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 98, 48, 0, 307, 1, -1, "SV1 (hot gas)"],
+ [ 99, 48, 0, 306, 1, -1, "SV2 (BPH)"],
+ [ 100, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 101, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 102, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 103, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 104, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 105, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 106, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 107, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 108, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 109, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 110, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 111, 96, 3, 204, 1, -1, "Error Code"],
+ [ 112, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 113, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 114, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 115, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 116, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 117, 96, 11, 306, 1, -1, "Thermal Protector BUH"],
+ [ 118, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 119, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 120, 96, 11, 303, 1, -1, "Solar input"],
+ [ 121, 96, 11, 302, 1, -1, "Not in use"],
+ [ 122, 96, 11, 301, 1, -1, "Not in use"],
+ [ 123, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 124, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 125, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 126, 96, 12, 305, 1, -1, "BSH"],
+ [ 127, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 128, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 129, 96, 12, 302, 1, -1, "BPH"],
+ [ 130, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 131, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 132, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 133, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 134, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 135, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 136, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 137, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 138, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 139, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 140, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 141, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 142, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 143, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 144, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 145, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 146, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 147, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 148, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 149, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 150, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 151, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 152, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 153, 98, 2, 301, 1, -1, "Not in use"],
+ [ 154, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 155, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 156, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 157, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 158, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 159, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 160, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 161, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 162, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 163, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 164, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 165, 98, 8, 307, 1, -1, "None"],
+ [ 166, 98, 8, 306, 1, -1, "Not in use"],
+ [ 167, 98, 8, 305, 1, -1, "Not in use"],
+ [ 168, 98, 8, 304, 1, -1, "Not in use"],
+ [ 169, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 170, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 171, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 172, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 173, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 174, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 175, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 176, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 177, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 178, 98, 15, 152, 1, -1, "Not in use"],
+ [ 179, 98, 16, 307, 1, -1, "Not in use"],
+ [ 180, 98, 16, 306, 1, -1, "Not in use"],
+ [ 181, 98, 16, 305, 1, -1, "Not in use"],
+ [ 182, 98, 16, 304, 1, -1, "Not in use"],
+ [ 183, 98, 16, 303, 1, -1, "Not in use"],
+ [ 184, 98, 16, 302, 1, -1, "Not in use"],
+ [ 185, 98, 16, 301, 1, -1, "Not in use"],
+ [ 186, 98, 16, 300, 1, -1, "Not in use"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 196, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 197, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 198, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 199, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 200, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 201, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 202, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 203, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 204, 100, 9, 301, 1, -1, "Add pump"],
+ [ 205, 100, 9, 300, 1, -1, "Main pump"],
+ [ 206, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json b/definitions/X10A/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
new file mode 100644
index 00000000..ee420649
--- /dev/null
+++ b/definitions/X10A/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc)",
+ "Language": "English",
+ "Presets": {
+ "Light": [131, 132, 133, 134, 135, 136]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "Outdoor heat exchanger temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction Pipe Temperature"],
+ [ 58, 32, 8, 105, 2, 1, "Outdoor heat exchanger mid temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp."],
+ [ 60, 32, 12, 105, 2, 1, "Fin Temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 0, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 2, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 4, 105, 2, 1, "Brine inlet temp."],
+ [ 67, 33, 6, 105, 2, 1, "Brine outlet temp."],
+ [ 68, 33, 8, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 69, 33, 10, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 70, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 71, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 72, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 73, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 74, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 75, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 76, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 77, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 78, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 79, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 80, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 81, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 82, 48, 0, 307, 1, -1, "4 Way Valve"],
+ [ 83, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 84, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 85, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 86, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 87, 48, 0, 307, 1, -1, "Crank case heater"],
+ [ 88, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 89, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 90, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 91, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 92, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 93, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 94, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 95, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 96, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 97, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 98, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 99, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 100, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 101, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 102, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 103, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 104, 96, 3, 204, 1, -1, "Error Code"],
+ [ 105, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 106, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 107, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 108, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 109, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 110, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 111, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 112, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 113, 96, 11, 303, 1, -1, "Solar input"],
+ [ 114, 96, 11, 302, 1, -1, "Not in use"],
+ [ 115, 96, 11, 301, 1, -1, "Not in use"],
+ [ 116, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 117, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 118, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 119, 96, 12, 305, 1, -1, "BSH"],
+ [ 120, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 121, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 122, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 123, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 124, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 125, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 126, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 127, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 128, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 129, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 130, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 131, 97, 2, 105, 2, 1, "Outlet Water Heat Exch. Temp. (R1T)"],
+ [ 132, 97, 4, 105, 2, 1, "Outlet Water BUH Temp. (R2T)"],
+ [ 133, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 134, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 135, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 136, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 137, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 138, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 139, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 140, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 141, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 142, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 143, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 144, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 145, 98, 2, 301, 1, -1, "Not in use"],
+ [ 146, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 147, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 148, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 149, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 150, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 151, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 152, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 153, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 154, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 155, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 156, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 157, 98, 8, 307, 1, -1, "None"],
+ [ 158, 98, 8, 306, 1, -1, "Not in use"],
+ [ 159, 98, 8, 305, 1, -1, "Not in use"],
+ [ 160, 98, 8, 304, 1, -1, "Not in use"],
+ [ 161, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 162, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 163, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 164, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 165, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 166, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 167, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 168, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 169, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 170, 98, 15, 152, 1, -1, "Not in use"],
+ [ 171, 98, 16, 307, 1, -1, "Not in use"],
+ [ 172, 98, 16, 306, 1, -1, "Not in use"],
+ [ 173, 98, 16, 305, 1, -1, "Not in use"],
+ [ 174, 98, 16, 304, 1, -1, "Not in use"],
+ [ 175, 98, 16, 303, 1, -1, "Not in use"],
+ [ 176, 98, 16, 302, 1, -1, "Not in use"],
+ [ 177, 98, 16, 301, 1, -1, "Not in use"],
+ [ 178, 98, 16, 300, 1, -1, "Not in use"],
+ [ 179, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 180, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 181, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 182, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 183, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 184, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 185, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 186, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 187, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 190, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 191, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 192, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 193, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 194, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 195, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 196, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json b/definitions/X10A/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
new file mode 100644
index 00000000..da16188f
--- /dev/null
+++ b/definitions/X10A/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
@@ -0,0 +1,209 @@
+{
+ "Model": "Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 132, 133, 134, 135, 136, 137, 138]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 54, 32, 14, 105, 2, 2, "Pressure"],
+ [ 55, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 56, 32, 16, 105, 2, -1, "Not in use"],
+ [ 57, 32, 18, 105, 2, -1, "Not in use"],
+ [ 58, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 59, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 60, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 61, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 62, 33, 6, 306, 1, -1, "Not in use"],
+ [ 63, 33, 6, 305, 1, -1, "Not in use"],
+ [ 64, 33, 6, 304, 1, -1, "Not in use"],
+ [ 65, 33, 6, 303, 1, -1, "Not in use"],
+ [ 66, 33, 6, 302, 1, -1, "Not in use"],
+ [ 67, 33, 6, 301, 1, -1, "Not in use"],
+ [ 68, 33, 6, 300, 1, -1, "Not in use"],
+ [ 69, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 70, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 71, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 72, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 73, 33, 15, 105, 1, -1, "Not in use"],
+ [ 74, 33, 16, 105, 1, -1, "Not in use"],
+ [ 75, 33, 17, 105, 1, -1, "Not in use"],
+ [ 76, 33, 18, 105, 1, -1, "Not in use"],
+ [ 77, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 78, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 79, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 80, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 81, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 82, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 83, 48, 7, 307, 1, -1, "4 Way Valve 1"],
+ [ 84, 48, 7, 306, 1, -1, "4 Way Valve 2"],
+ [ 85, 48, 7, 305, 1, -1, "4 Way Valve 3"],
+ [ 86, 48, 7, 304, 1, -1, "4 Way Valve 4"],
+ [ 87, 48, 7, 303, 1, -1, "4 Way Valve 5"],
+ [ 88, 48, 8, 307, 1, -1, "Crank case heater 1"],
+ [ 89, 48, 8, 306, 1, -1, "Crank case heater 2"],
+ [ 90, 48, 8, 305, 1, -1, "Crank case heater 3"],
+ [ 91, 48, 8, 304, 1, -1, "Crank case heater 4"],
+ [ 92, 48, 9, 307, 1, -1, "SV1 (hot gas)"],
+ [ 93, 48, 9, 306, 1, -1, "SV2 (BPH)"],
+ [ 94, 48, 9, 305, 1, -1, "Solenoid Valve 3"],
+ [ 95, 48, 9, 304, 1, -1, "Solenoid Valve 4"],
+ [ 96, 48, 9, 303, 1, -1, "Solenoid Valve 5"],
+ [ 97, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 98, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 99, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 100, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 101, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 102, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 103, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 104, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 105, 96, 3, 204, 1, -1, "Error Code"],
+ [ 106, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 107, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 108, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 109, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 110, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 111, 96, 11, 306, 1, -1, "Thermal Protector BUH"],
+ [ 112, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 113, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 114, 96, 11, 303, 1, -1, "Solar input"],
+ [ 115, 96, 11, 302, 1, -1, "Not in use"],
+ [ 116, 96, 11, 301, 1, -1, "Not in use"],
+ [ 117, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 118, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 119, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 120, 96, 12, 305, 1, -1, "BSH"],
+ [ 121, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 122, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 123, 96, 12, 302, 1, -1, "BPH"],
+ [ 124, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 125, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 126, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 127, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 128, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 129, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 130, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 131, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 132, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 133, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 134, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 135, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 136, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 137, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 138, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 139, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 140, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 141, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 142, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 143, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 144, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 145, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 146, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 147, 98, 2, 301, 1, -1, "Not in use"],
+ [ 148, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 149, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 150, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 151, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 152, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 153, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 154, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 155, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 156, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 157, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 158, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 159, 98, 8, 307, 1, -1, "None"],
+ [ 160, 98, 8, 306, 1, -1, "Not in use"],
+ [ 161, 98, 8, 305, 1, -1, "Not in use"],
+ [ 162, 98, 8, 304, 1, -1, "Not in use"],
+ [ 163, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 164, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 165, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 166, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 167, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 168, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 169, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 170, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 171, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 172, 98, 15, 152, 1, -1, "Not in use"],
+ [ 173, 98, 16, 307, 1, -1, "Not in use"],
+ [ 174, 98, 16, 306, 1, -1, "Not in use"],
+ [ 175, 98, 16, 305, 1, -1, "Not in use"],
+ [ 176, 98, 16, 304, 1, -1, "Not in use"],
+ [ 177, 98, 16, 303, 1, -1, "Not in use"],
+ [ 178, 98, 16, 302, 1, -1, "Not in use"],
+ [ 179, 98, 16, 301, 1, -1, "Not in use"],
+ [ 180, 98, 16, 300, 1, -1, "Not in use"],
+ [ 181, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 182, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 183, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 184, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 185, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 186, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 187, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 188, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 189, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 190, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 191, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 192, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 193, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 194, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 195, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 196, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 197, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 198, 100, 9, 301, 1, -1, "Add pump"],
+ [ 199, 100, 9, 300, 1, -1, "Main pump"],
+ [ 200, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/DEFAULT.json b/definitions/X10A/DEFAULT.json
new file mode 100644
index 00000000..43b4e523
--- /dev/null
+++ b/definitions/X10A/DEFAULT.json
@@ -0,0 +1,148 @@
+{
+ "Model": "DEFAULT",
+ "Language": "English",
+ "Presets": {
+ "Normal": [14, 18, 53, 65, 66, 77, 78, 103, 135, 136, 137],
+ "Light": [133, 134, 135, 136, 137]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD Compressor"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 213, 1, -1, "O/U MPU ID"],
+ [ 13, 0, 11, 213, 1, -1, "O/U MPU ID"],
+ [ 14, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 15, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 16, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 17, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 18, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 19, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 20, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 21, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 22, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 23, 16, 2, 307, 1, -1, "Other control 1"],
+ [ 24, 16, 2, 306, 1, -1, "Other control 2"],
+ [ 25, 16, 2, 305, 1, -1, "Other control 3"],
+ [ 26, 16, 2, 304, 1, -1, "Other control 4"],
+ [ 27, 16, 2, 303, 1, -1, "Other control 5"],
+ [ 28, 16, 2, 302, 1, -1, "Other control 6"],
+ [ 29, 16, 2, 301, 1, -1, "Other control 7"],
+ [ 30, 16, 2, 300, 1, -1, "Other control 8"],
+ [ 31, 16, 3, 307, 1, -1, "Other control 9"],
+ [ 32, 16, 3, 306, 1, -1, "Other control 10"],
+ [ 33, 16, 3, 305, 1, -1, "Other control 11"],
+ [ 34, 16, 3, 304, 1, -1, "Other control 12"],
+ [ 35, 16, 3, 303, 1, -1, "Other control 13"],
+ [ 36, 16, 3, 302, 1, -1, "Other control 14"],
+ [ 37, 16, 3, 301, 1, -1, "Other control 15"],
+ [ 38, 16, 3, 300, 1, -1, "Other control 16"],
+ [ 39, 16, 4, 203, 1, -1, "Error type"],
+ [ 40, 16, 5, 204, 1, -1, "Error Code"],
+ [ 41, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 42, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 43, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 44, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 45, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 46, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 47, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 48, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 49, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 50, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 51, 16, 12, 303, 1, -1, "Other Control"],
+ [ 52, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 53, 32, 0, 105, 2, 1, "Outdoor air temp."],
+ [ 54, 32, 2, 105, 2, 1, "Outdoor heat exchanger temp."],
+ [ 55, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 56, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 57, 32, 8, 105, 2, 1, "Outdoor heat exchanger mid temp."],
+ [ 58, 32, 10, 105, 2, 1, "Liquid pipe temp."],
+ [ 59, 32, 12, 105, 2, 1, "INV fin temp."],
+ [ 60, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 61, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 62, 32, 16, 105, 2, -1, "Sensor data 9"],
+ [ 63, 32, 18, 105, 2, -1, "Sensor data 10"],
+ [ 64, 32, 20, 105, 2, -1, "Sensor data 11"],
+ [ 65, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 66, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 67, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 68, 33, 6, 105, 2, -1, "Sensor data 4"],
+ [ 69, 33, 8, 105, 2, -1, "Sensor data 5"],
+ [ 70, 33, 10, 105, 2, -1, "Sensor data 6"],
+ [ 71, 33, 12, 105, 2, -1, "Sensor data 7"],
+ [ 72, 33, 14, 105, 2, -1, "Sensor data 8"],
+ [ 73, 33, 16, 105, 2, -1, "Sensor data 9"],
+ [ 74, 33, 18, 105, 2, -1, "Sensor data 10"],
+ [ 75, 33, 20, 105, 2, -1, "Sensor data 11"],
+ [ 76, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 77, 48, 0, 152, 1, -1, "INV frequency 1 (rps)"],
+ [ 78, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 79, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 80, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 81, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 82, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 83, 48, 0, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 84, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 85, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 86, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 87, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 88, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 89, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 90, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 91, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 92, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 93, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 94, 48, 0, 302, 1, -1, "Solenoid Valve 6"],
+ [ 95, 48, 0, 301, 1, -1, "Solenoid Valve 7"],
+ [ 96, 48, 0, 300, 1, -1, "Solenoid Valve 8"],
+ [ 97, 48, 1, 307, 1, -1, "Solenoid Valve 9"],
+ [ 98, 48, 1, 306, 1, -1, "Solenoid Valve 10"],
+ [ 99, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 100, 96, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 101, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 102, 96, 2, 315, 1, -1, "Indoor Operation Mode"],
+ [ 103, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 104, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 105, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 106, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 107, 96, 3, 204, 1, -1, "Error Code"],
+ [ 108, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 109, 96, 6, 219, 1, -1, "Indoor Unit Capacity"],
+ [ 110, 96, 7, 105, 2, 1, "R/C Setpoint"],
+ [ 111, 96, 9, 105, 2, 1, "H/P Outlet Setpoint"],
+ [ 112, 96, 11, 307, 1, -1, "Flow Switch"],
+ [ 113, 96, 11, 306, 1, -1, "Clixon BUH"],
+ [ 114, 96, 11, 305, 1, -1, "Clixon BSH"],
+ [ 115, 96, 11, 304, 1, -1, "HP tariff input"],
+ [ 116, 96, 11, 303, 1, -1, "Solar input"],
+ [ 117, 96, 11, 302, 1, -1, "Not in use"],
+ [ 118, 96, 11, 301, 1, -1, "Not in use"],
+ [ 119, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 120, 96, 12, 307, 1, -1, "3way Valve(Cool/Heat)"],
+ [ 121, 96, 12, 306, 1, -1, "4way Valve(Space/DHW)"],
+ [ 122, 96, 12, 305, 1, -1, "BSH"],
+ [ 123, 96, 12, 304, 1, -1, "BUH1"],
+ [ 124, 96, 12, 303, 1, -1, "BUH2"],
+ [ 125, 96, 12, 302, 1, -1, "Bottom Plate Heater"],
+ [ 126, 96, 12, 301, 1, -1, "Pump Output"],
+ [ 127, 96, 12, 300, 1, -1, "Solar Output Signal"],
+ [ 128, 96, 13, 212, 1, -1, "Indoor Option Code"],
+ [ 129, 96, 14, 314, 2, -1, "Indoor Software Version"],
+ [ 130, 96, 15, 212, 1, -1, "Indoor EEPROM Version"],
+ [ 131, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 132, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 133, 97, 2, 105, 2, 1, "Outlet PHE(R1T)"],
+ [ 134, 97, 4, 105, 2, 1, "Outlet BUH(R2T)"],
+ [ 135, 97, 6, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 136, 97, 8, 105, 2, 1, "Inlet temperature(R4T)"],
+ [ 137, 97, 10, 105, 2, 1, "DHW temperature(R5T)"],
+ [ 138, 97, 12, 105, 2, 1, "Remocon thermistor"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json b/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
new file mode 100644
index 00000000..a14a9e4a
--- /dev/null
+++ b/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 4-8kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid temperature(R3T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Low Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Low Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "Y1S"],
+ [ 74, 48, 13, 306, 1, -1, "SV (drain pan heater)"],
+ [ 75, 48, 13, 305, 1, -1, "Y3S"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "Solenoid Valve 3"],
+ [ 88, 160, 12, 303, 1, -1, "SV (drain pan heater)"],
+ [ 89, 160, 12, 302, 1, -1, "Solenoid Valve 1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "SmartGridContact2"],
+ [ 129, 96, 11, 301, 1, -1, "SmartGridContact1"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 405, 1, 1, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 98, 15, 405, 2, 1, "Pressure sensor(T)"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 99, 8, 215, 1, -1, "Not in use"],
+ [ 196, 99, 9, 215, 1, -1, "Not in use"],
+ [ 197, 99, 10, 215, 1, -1, "Not in use"],
+ [ 198, 99, 11, 301, 1, -1, "[RT space thermo ON/OFF] (bit1)"],
+ [ 199, 99, 12, 300, 1, -1, "[RT space thermo ON/OFF] (bit0)"],
+ [ 200, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 201, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 202, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 203, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 204, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 205, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 206, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 207, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 208, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 209, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 210, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 211, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 212, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 213, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 214, 100, 9, 302, 1, -1, "Add pump"],
+ [ 215, 100, 9, 301, 1, -1, "Main pump"],
+ [ 216, 100, 10, 118, 2, 1, "Mixed water temp."],
+ [ 217, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 218, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 219, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json b/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
new file mode 100644
index 00000000..fc65abd7
--- /dev/null
+++ b/definitions/X10A/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 9-16kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 138, 139, 140, 141, 142, 143, 144]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 1, "Heat sink temp."],
+ [ 54, 32, 14, 105, 2, 2, "Pressure"],
+ [ 55, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 56, 32, 16, 105, 2, -1, "Not in use"],
+ [ 57, 32, 18, 105, 2, -1, "Not in use"],
+ [ 58, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 59, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 60, 33, 4, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 61, 33, 6, 307, 1, -1, "Brine Flow Switch"],
+ [ 62, 33, 6, 306, 1, -1, "Not in use"],
+ [ 63, 33, 6, 305, 1, -1, "Not in use"],
+ [ 64, 33, 6, 304, 1, -1, "Not in use"],
+ [ 65, 33, 6, 303, 1, -1, "Not in use"],
+ [ 66, 33, 6, 302, 1, -1, "Not in use"],
+ [ 67, 33, 6, 301, 1, -1, "Not in use"],
+ [ 68, 33, 6, 300, 1, -1, "Not in use"],
+ [ 69, 33, 7, 105, 2, 1, "Brine inlet temp."],
+ [ 70, 33, 9, 105, 2, 1, "Brine outlet temp."],
+ [ 71, 33, 11, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 72, 33, 13, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 73, 33, 15, 105, 1, -1, "Not in use"],
+ [ 74, 33, 16, 105, 1, -1, "Not in use"],
+ [ 75, 33, 17, 105, 1, -1, "Not in use"],
+ [ 76, 33, 18, 105, 1, -1, "Not in use"],
+ [ 77, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 78, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 79, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 80, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 81, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 82, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 83, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 84, 48, 0, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 85, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 86, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 87, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 88, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 89, 48, 0, 307, 1, -1, "4 Way Valve 1"],
+ [ 90, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 91, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 92, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 93, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 94, 48, 0, 307, 1, -1, "Crank case heater 1"],
+ [ 95, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 96, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 97, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 98, 48, 0, 307, 1, -1, "SV1 (hot gas)"],
+ [ 99, 48, 0, 306, 1, -1, "SV2 (BPH)"],
+ [ 100, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 101, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 102, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 103, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 104, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 105, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 106, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 107, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 108, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 109, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 110, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 111, 96, 3, 204, 1, -1, "Error Code"],
+ [ 112, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 113, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 114, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 115, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 116, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 117, 96, 11, 306, 1, -1, "Thermal Protector BUH"],
+ [ 118, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 119, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 120, 96, 11, 303, 1, -1, "Solar input"],
+ [ 121, 96, 11, 302, 1, -1, "Not in use"],
+ [ 122, 96, 11, 301, 1, -1, "Not in use"],
+ [ 123, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 124, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 125, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 126, 96, 12, 305, 1, -1, "BSH"],
+ [ 127, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 128, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 129, 96, 12, 302, 1, -1, "BPH"],
+ [ 130, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 131, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 132, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 133, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 134, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 135, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 136, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 137, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 138, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 139, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 140, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 141, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 142, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 143, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 144, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 145, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 146, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 147, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 148, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 149, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 150, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 151, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 152, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 153, 98, 2, 301, 1, -1, "Not in use"],
+ [ 154, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 155, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 156, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 157, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 158, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 159, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 160, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 161, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 162, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 163, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 164, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 165, 98, 8, 307, 1, -1, "None"],
+ [ 166, 98, 8, 306, 1, -1, "Not in use"],
+ [ 167, 98, 8, 305, 1, -1, "Not in use"],
+ [ 168, 98, 8, 304, 1, -1, "Not in use"],
+ [ 169, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 170, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 171, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 172, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 173, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 174, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 175, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 176, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 177, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 178, 98, 15, 152, 1, -1, "Not in use"],
+ [ 179, 98, 16, 307, 1, -1, "Not in use"],
+ [ 180, 98, 16, 306, 1, -1, "Not in use"],
+ [ 181, 98, 16, 305, 1, -1, "Not in use"],
+ [ 182, 98, 16, 304, 1, -1, "Not in use"],
+ [ 183, 98, 16, 303, 1, -1, "Not in use"],
+ [ 184, 98, 16, 302, 1, -1, "Not in use"],
+ [ 185, 98, 16, 301, 1, -1, "Not in use"],
+ [ 186, 98, 16, 300, 1, -1, "Not in use"],
+ [ 187, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 190, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 191, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 192, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 193, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 194, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 195, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 196, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 197, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 198, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 199, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 200, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 201, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 202, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 203, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 204, 100, 9, 301, 1, -1, "Add pump"],
+ [ 205, 100, 9, 300, 1, -1, "Main pump"],
+ [ 206, 100, 10, 118, 2, 1, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json b/definitions/X10A/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
new file mode 100644
index 00000000..819a84fe
--- /dev/null
+++ b/definitions/X10A/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW)",
+ "Language": "English",
+ "Presets": {
+ "Light": [131, 132, 133, 134, 135, 136]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 801, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 1, 996, 1, -1, "Override CMD:0x00 N_INV=1"],
+ [ 3, 0, 2, 996, 0, -1, "Override CMD:0x00 N_STD=0"],
+ [ 4, 0, 3, 996, 2, -1, "Override CMD:0x00 N_FAN=2"],
+ [ 5, 0, 4, 996, 2, -1, "Override CMD:0x00 N_EV=2"],
+ [ 6, 0, 5, 996, 1, -1, "Override CMD:0x00 N_20S=1"],
+ [ 7, 0, 6, 996, 1, -1, "Override CMD:0x00 N_CH=1"],
+ [ 8, 0, 7, 996, 3, -1, "Override CMD:0x00 N_SV=3"],
+ [ 9, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 10, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 11, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 12, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 13, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 14, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 15, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 16, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 17, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 18, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 19, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 20, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 21, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 22, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 23, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 24, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 25, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 26, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 27, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 28, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 29, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 30, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 31, 16, 4, 203, 1, -1, "Error type"],
+ [ 32, 16, 5, 204, 1, -1, "Error Code"],
+ [ 33, 16, 6, 114, 2, 1, "Target Evap. Temp."],
+ [ 34, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 35, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 36, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 37, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 38, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 39, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 40, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 41, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 42, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 43, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 44, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 45, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 46, 16, 12, 311, 1, -1, "Not in use"],
+ [ 47, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 48, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 49, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 50, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 51, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 52, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 53, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 54, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 55, 32, 2, 105, 2, 1, "Outdoor heat exchanger temp."],
+ [ 56, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 57, 32, 6, 105, 2, 1, "Suction Pipe Temperature"],
+ [ 58, 32, 8, 105, 2, 1, "Outdoor heat exchanger mid temp."],
+ [ 59, 32, 10, 105, 2, 1, "Liquid pipe temp."],
+ [ 60, 32, 12, 105, 2, 1, "Fin Temp."],
+ [ 61, 32, 14, 105, 2, 2, "Pressure"],
+ [ 62, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 63, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 64, 33, 0, 105, 2, -1, "INV secondary current (A)"],
+ [ 65, 33, 2, 101, 2, -1, "Voltage (N-phase) (V)"],
+ [ 66, 33, 4, 105, 2, 1, "Brine inlet temp."],
+ [ 67, 33, 6, 105, 2, 1, "Brine outlet temp."],
+ [ 68, 33, 8, 105, 2, 1, "Refrig. temp. evap. In"],
+ [ 69, 33, 10, 105, 2, 1, "Refrig. temp. evap.Out"],
+ [ 70, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 71, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 72, 48, 1, 152, 1, -1, "INV frequency 2 (rps)"],
+ [ 73, 48, 0, 307, 1, -1, "STD Compressor 1"],
+ [ 74, 48, 0, 306, 1, -1, "STD Compressor 2"],
+ [ 75, 48, 0, 211, 1, -1, "Fan 1 (step)"],
+ [ 76, 48, 1, 211, 1, -1, "Fan 2 (step)"],
+ [ 77, 48, 0, 151, 2, -1, "Expansion valve (pls)"],
+ [ 78, 48, 2, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 79, 48, 4, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 80, 48, 6, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 81, 48, 8, 151, 2, -1, "Expansion valve 5 (pls)"],
+ [ 82, 48, 0, 307, 1, -1, "4 Way Valve"],
+ [ 83, 48, 0, 306, 1, -1, "4 Way Valve 2"],
+ [ 84, 48, 0, 305, 1, -1, "4 Way Valve 3"],
+ [ 85, 48, 0, 304, 1, -1, "4 Way Valve 4"],
+ [ 86, 48, 0, 303, 1, -1, "4 Way Valve 5"],
+ [ 87, 48, 0, 307, 1, -1, "Crank case heater"],
+ [ 88, 48, 0, 306, 1, -1, "Crank case heater 2"],
+ [ 89, 48, 0, 305, 1, -1, "Crank case heater 3"],
+ [ 90, 48, 0, 304, 1, -1, "Crank case heater 4"],
+ [ 91, 48, 0, 307, 1, -1, "Solenoid Valve 1"],
+ [ 92, 48, 0, 306, 1, -1, "Solenoid Valve 2"],
+ [ 93, 48, 0, 305, 1, -1, "Solenoid Valve 3"],
+ [ 94, 48, 0, 304, 1, -1, "Solenoid Valve 4"],
+ [ 95, 48, 0, 303, 1, -1, "Solenoid Valve 5"],
+ [ 96, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 97, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 98, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 99, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 100, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 101, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 102, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 103, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 104, 96, 3, 204, 1, -1, "Error Code"],
+ [ 105, 96, 4, 314, 2, -1, "Indoor Unit Code"],
+ [ 106, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 107, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 108, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 109, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 110, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 111, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 112, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 113, 96, 11, 303, 1, -1, "Solar input"],
+ [ 114, 96, 11, 302, 1, -1, "Not in use"],
+ [ 115, 96, 11, 301, 1, -1, "Not in use"],
+ [ 116, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 117, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 118, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 119, 96, 12, 305, 1, -1, "BSH"],
+ [ 120, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 121, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 122, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 123, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 124, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 125, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 126, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 127, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 128, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 129, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 130, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 131, 97, 2, 105, 2, 1, "Outlet Water Heat Exch. Temp. (R1T)"],
+ [ 132, 97, 4, 105, 2, 1, "Outlet Water BUH Temp. (R2T)"],
+ [ 133, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 134, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 135, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 136, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 137, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 138, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 139, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 140, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 141, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 142, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 143, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 144, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 145, 98, 2, 301, 1, -1, "Not in use"],
+ [ 146, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 147, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 148, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 149, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 150, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 151, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 152, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 153, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 154, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 155, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 156, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 157, 98, 8, 307, 1, -1, "None"],
+ [ 158, 98, 8, 306, 1, -1, "Not in use"],
+ [ 159, 98, 8, 305, 1, -1, "Not in use"],
+ [ 160, 98, 8, 304, 1, -1, "Not in use"],
+ [ 161, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 162, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 163, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 164, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 165, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 166, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 167, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 168, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 169, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 170, 98, 15, 152, 1, -1, "Not in use"],
+ [ 171, 98, 16, 307, 1, -1, "Not in use"],
+ [ 172, 98, 16, 306, 1, -1, "Not in use"],
+ [ 173, 98, 16, 305, 1, -1, "Not in use"],
+ [ 174, 98, 16, 304, 1, -1, "Not in use"],
+ [ 175, 98, 16, 303, 1, -1, "Not in use"],
+ [ 176, 98, 16, 302, 1, -1, "Not in use"],
+ [ 177, 98, 16, 301, 1, -1, "Not in use"],
+ [ 178, 98, 16, 300, 1, -1, "Not in use"],
+ [ 179, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 180, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 181, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 182, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 183, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 184, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 185, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 186, 99, 7, 214, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 187, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 188, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 189, 100, 2, 316, 1, -1, "Hybrid Op. Mode"],
+ [ 190, 100, 2, 303, 1, -1, "Boiler Operation Demand"],
+ [ 191, 100, 2, 302, 1, -1, "Boiler DHW Demand"],
+ [ 192, 100, 2, 301, 1, -1, "Bypass Valve Output"],
+ [ 193, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 194, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 195, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 196, 0, 0, 996, 0, -1, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/EKHWET-BAV3(Multi DHW tank).json b/definitions/X10A/EKHWET-BAV3(Multi DHW tank).json
new file mode 100644
index 00000000..0a6efa85
--- /dev/null
+++ b/definitions/X10A/EKHWET-BAV3(Multi DHW tank).json
@@ -0,0 +1,231 @@
+{
+ "Model": "EKHWET-BAV3(MULTI DHW TANK)",
+ "Language": "English",
+ "Presets": {
+ "Light": [52, 145, 146, 147, 148, 149, 150, 151]
+ },
+ "Parameters": [
+ [ 1, 0, 0, 802, 0, -1, "*Refrigerant type"],
+ [ 2, 0, 0, 152, 1, -1, "Sensor Data Qty"],
+ [ 3, 0, 1, 152, 1, -1, "INV compressor Qty"],
+ [ 4, 0, 2, 152, 1, -1, "STD compressor Qty"],
+ [ 5, 0, 3, 152, 1, -1, "Fan Data Qty"],
+ [ 6, 0, 4, 152, 1, -1, "Expansion Valve Data Qty"],
+ [ 7, 0, 5, 152, 1, -1, "4 Way Valve Data Qty"],
+ [ 8, 0, 6, 152, 1, -1, "Crank Case Heater Qty"],
+ [ 9, 0, 7, 152, 1, -1, "Solenoid valve Qty"],
+ [ 10, 0, 8, 152, 1, -1, "Max. connectable indoor units"],
+ [ 11, 0, 9, 152, 1, -1, "Connected Indoor Unit Qty"],
+ [ 12, 0, 10, 152, 1, -1, "O/U MPU ID (xx)"],
+ [ 13, 0, 11, 152, 1, -1, "O/U MPU ID (yy)"],
+ [ 14, 0, 12, 105, 1, -1, "O/U capacity (kW)"],
+ [ 15, 16, 0, 217, 1, -1, "Operation Mode"],
+ [ 16, 16, 1, 307, 1, -1, "Thermostat ON/OFF"],
+ [ 17, 16, 1, 306, 1, -1, "Restart standby"],
+ [ 18, 16, 1, 305, 1, -1, "Startup Control"],
+ [ 19, 16, 1, 304, 1, -1, "Defrost Operation"],
+ [ 20, 16, 1, 303, 1, -1, "Oil Return Operation"],
+ [ 21, 16, 1, 302, 1, -1, "Pressure equalizing operation"],
+ [ 22, 16, 1, 301, 1, -1, "Demand Signal"],
+ [ 23, 16, 1, 300, 1, -1, "Low noise control"],
+ [ 24, 16, 4, 203, 1, -1, "Error type"],
+ [ 25, 16, 5, 204, 1, -1, "Error Code"],
+ [ 26, 16, 6, 114, 2, 1, "DHW supply temperature"],
+ [ 27, 16, 8, 114, 2, 1, "Target Cond. Temp."],
+ [ 28, 16, 10, 307, 1, -1, "Discharge Temp. Drop"],
+ [ 29, 16, 10, 310, 1, -1, "Discharge Temp. Protection Retry Qty"],
+ [ 30, 16, 10, 303, 1, -1, "Comp. INV Current Drop"],
+ [ 31, 16, 10, 311, 1, -1, "Comp. INV Current Protection Retry Qty"],
+ [ 32, 16, 11, 307, 1, -1, "HP Drop Control"],
+ [ 33, 16, 11, 310, 1, -1, "HP Protection Retry Qty"],
+ [ 34, 16, 11, 303, 1, -1, "LP Drop Control"],
+ [ 35, 16, 11, 311, 1, -1, "LP Protection Retry Qty"],
+ [ 36, 16, 12, 307, 1, -1, "Fin Temp. Drop Control"],
+ [ 37, 16, 12, 310, 1, -1, "Fin Temp. Protection Retry Qty"],
+ [ 38, 16, 12, 303, 1, -1, "Other Drop Control"],
+ [ 39, 16, 12, 311, 1, -1, "Not in use"],
+ [ 40, 17, 0, 215, 1, -1, "O/U EEPROM (1st digit)"],
+ [ 41, 17, 1, 215, 1, -1, "O/U EEPROM (3rd 4th digit)"],
+ [ 42, 17, 2, 215, 1, -1, "O/U EEPROM (5th 6th digit)"],
+ [ 43, 17, 3, 215, 1, -1, "O/U EEPROM (7th 8th digit)"],
+ [ 44, 17, 4, 215, 1, -1, "O/U EEPROM (10th digit)"],
+ [ 45, 17, 5, 214, 1, -1, "O/U EEPROM (11th digit)"],
+ [ 46, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 47, 32, 0, 105, 2, 1, "R1T-Outdoor air temp."],
+ [ 48, 32, 2, 105, 2, 1, "O/U Heat Exch. Temp."],
+ [ 49, 32, 4, 105, 2, 1, "Discharge pipe temp."],
+ [ 50, 32, 6, 105, 2, 1, "Suction pipe temp."],
+ [ 51, 32, 8, 105, 2, 1, "Heat exchanger mid-temp."],
+ [ 52, 32, 10, 105, 2, 1, "Liquid pipe temp.(R6T)"],
+ [ 53, 32, 12, 105, 2, 2, "High Pressure"],
+ [ 54, 32, 12, 405, 2, 1, "High Pressure(T)"],
+ [ 55, 32, 14, 105, 2, 2, "Pressure"],
+ [ 56, 32, 14, 405, 2, 1, "Pressure(T)"],
+ [ 57, 33, 0, 105, 2, -1, "INV primary current (A)"],
+ [ 58, 33, 2, 105, 2, -1, "INV secondary current (A)"],
+ [ 59, 33, 4, 105, 2, 1, "INV fin temp."],
+ [ 60, 33, 6, 105, 2, 1, "Fan1 Fin temp."],
+ [ 61, 33, 8, 105, 2, 1, "Fan2 Fin temp."],
+ [ 62, 33, 10, 105, 2, 1, "Compressor outlet temperature"],
+ [ 63, 0, 0, 995, 1, -1, "NextDataGrid"],
+ [ 64, 48, 0, 152, 1, -1, "INV frequency (rps)"],
+ [ 65, 48, 1, 211, 1, -1, "Fan 1 (step)"],
+ [ 66, 48, 2, 211, 1, -1, "Fan 2 (step)"],
+ [ 67, 48, 3, 151, 2, -1, "Expansion valve 1 (pls)"],
+ [ 68, 48, 5, 151, 2, -1, "Expansion valve 2 (pls)"],
+ [ 69, 48, 7, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 70, 48, 9, 151, 2, -1, "Expansion valve 4 (pls)"],
+ [ 71, 48, 11, 307, 1, -1, "4 Way Valve"],
+ [ 72, 48, 12, 307, 1, -1, "Crank case heater"],
+ [ 73, 48, 13, 307, 1, -1, "DHW:SV1"],
+ [ 74, 48, 13, 306, 1, -1, "Drain pan heater"],
+ [ 75, 48, 13, 305, 1, -1, "RA:SV2"],
+ [ 76, 0, 0, 998, 1, -1, "In-Out separator"],
+ [ 77, 160, 0, 119, 2, 1, "Suction temp"],
+ [ 78, 160, 2, 119, 2, 1, "Outdoor heat exchanger temp."],
+ [ 79, 160, 4, 119, 2, 1, "Liquid pipe temp."],
+ [ 80, 160, 6, 119, 2, 2, "Pressure"],
+ [ 81, 160, 8, 151, 2, -1, "Expansion valve 3 (pls)"],
+ [ 82, 160, 10, 152, 1, -1, "O/U MPU ID"],
+ [ 83, 160, 11, 152, 1, -1, "O/U MPU ID"],
+ [ 84, 160, 12, 307, 1, -1, "HPS operation"],
+ [ 85, 160, 12, 306, 1, -1, "Safeguard operation"],
+ [ 86, 160, 12, 305, 1, -1, "Crank case heater"],
+ [ 87, 160, 12, 304, 1, -1, "RA:SV2"],
+ [ 88, 160, 12, 303, 1, -1, "Drain pan heater"],
+ [ 89, 160, 12, 302, 1, -1, "DHW:SV1"],
+ [ 90, 160, 12, 301, 1, -1, "4 way valve (Y1S)"],
+ [ 91, 160, 12, 300, 1, -1, "52C Output"],
+ [ 92, 160, 13, 303, 1, -1, "Discharge Temp. Drop"],
+ [ 93, 160, 13, 302, 1, -1, "During emergency operation"],
+ [ 94, 160, 13, 301, 1, -1, "Indoor unit blowout 50 ° C flag"],
+ [ 95, 160, 13, 300, 1, -1, "Powerful bit (MT setting bit)"],
+ [ 96, 160, 14, 105, 2, 1, "Compressor port temperature"],
+ [ 97, 161, 0, 119, 2, 1, "(Raw data)Water heat exchanger inlet temp."],
+ [ 98, 161, 2, 119, 2, 1, "(Raw data)Water heat exchanger outlet temp."],
+ [ 99, 161, 4, 302, 1, -1, "Liquid INJ solenoid valve (Y4S)"],
+ [ 100, 161, 4, 301, 1, -1, "Bottom Plate Heater"],
+ [ 101, 161, 4, 300, 1, -1, "PHE Heater"],
+ [ 102, 161, 5, 114, 2, 1, "Target Discharge Temp."],
+ [ 103, 161, 7, 114, 2, 1, "Target port temperature"],
+ [ 104, 161, 9, 305, 1, -1, "Monobloc setting"],
+ [ 105, 161, 9, 304, 1, -1, "Minichiller setting"],
+ [ 106, 161, 9, 303, 1, -1, "MT setting"],
+ [ 107, 161, 9, 302, 1, -1, "GSHP setting"],
+ [ 108, 161, 9, 301, 1, -1, "Hydro split setting"],
+ [ 109, 161, 9, 300, 1, -1, "Alterma LT setting"],
+ [ 110, 96, 0, 304, 1, -1, "Data Enable/Disable"],
+ [ 111, 96, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 112, 96, 2, 315, 1, -1, "I/U operation mode"],
+ [ 113, 96, 2, 303, 1, -1, "Thermostat ON/OFF"],
+ [ 114, 96, 2, 302, 1, -1, "Freeze Protection"],
+ [ 115, 96, 2, 301, 1, -1, "Silent Mode"],
+ [ 116, 96, 2, 300, 1, -1, "Freeze Protection for water piping"],
+ [ 117, 96, 3, 204, 1, -1, "Error Code"],
+ [ 118, 96, 4, 152, 1, -1, "Error detailed code"],
+ [ 119, 96, 5, 203, 1, -1, "Error type"],
+ [ 120, 96, 6, 219, 1, -1, "I/U capacity code"],
+ [ 121, 96, 7, 105, 2, 1, "DHW setpoint"],
+ [ 122, 96, 9, 105, 2, 1, "LW setpoint (main)"],
+ [ 123, 96, 11, 307, 1, -1, "Water flow switch"],
+ [ 124, 96, 11, 306, 1, -1, "Thermal protector (Q1L) BUH"],
+ [ 125, 96, 11, 305, 1, -1, "Thermal protector BSH"],
+ [ 126, 96, 11, 304, 1, -1, "Benefit kWh rate power supply"],
+ [ 127, 96, 11, 303, 1, -1, "Solar input"],
+ [ 128, 96, 11, 302, 1, -1, "Not in use"],
+ [ 129, 96, 11, 301, 1, -1, "Not in use"],
+ [ 130, 96, 11, 300, 1, -1, "Bivalent Operation"],
+ [ 131, 96, 12, 307, 1, -1, "2way valve(On:Heat_Off:Cool)"],
+ [ 132, 96, 12, 306, 1, -1, "3way valve(On:DHW_Off:Space)"],
+ [ 133, 96, 12, 305, 1, -1, "BSH"],
+ [ 134, 96, 12, 304, 1, -1, "BUH Step1"],
+ [ 135, 96, 12, 303, 1, -1, "BUH Step2"],
+ [ 136, 96, 12, 302, 1, -1, "Floor loop shut off valve"],
+ [ 137, 96, 12, 301, 1, -1, "Water pump operation"],
+ [ 138, 96, 12, 300, 1, -1, "Solar pump operation"],
+ [ 139, 96, 13, 152, 1, -1, "Indoor Option Code"],
+ [ 140, 96, 15, 215, 1, -1, "I/U Software ID (xx)"],
+ [ 141, 96, 14, 215, 1, -1, "I/U Software ID (yy)"],
+ [ 142, 96, 16, 152, 1, -1, "I/U EEPROM Ver."],
+ [ 143, 97, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 144, 97, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 145, 97, 2, 105, 2, 1, "Leaving water temp. before BUH (R1T)"],
+ [ 146, 97, 4, 105, 2, 1, "Leaving water temp. after BUH (R2T)"],
+ [ 147, 97, 6, 105, 2, 1, "Refrig. Temp. liquid side (R3T)"],
+ [ 148, 97, 8, 105, 2, 1, "Inlet water temp.(R4T)"],
+ [ 149, 97, 10, 105, 2, 1, "DHW tank temp. (R5T)"],
+ [ 150, 97, 12, 105, 2, 1, "Indoor ambient temp. (R1T)"],
+ [ 151, 97, 14, 105, 2, 1, "Ext. indoor ambient sensor (R6T)"],
+ [ 152, 98, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 153, 98, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 154, 98, 2, 307, 1, -1, "Reheat ON/OFF"],
+ [ 155, 98, 2, 306, 1, -1, "Storage ECO ON/OFF"],
+ [ 156, 98, 2, 305, 1, -1, "Storage comfort ON/OFF"],
+ [ 157, 98, 2, 304, 1, -1, "Powerful DHW Operation. ON/OFF"],
+ [ 158, 98, 2, 303, 1, -1, "Space heating Operation ON/OFF"],
+ [ 159, 98, 2, 302, 1, -1, "System OFF (ON:System off)"],
+ [ 160, 98, 2, 301, 1, -1, "Not in use"],
+ [ 161, 98, 2, 300, 1, -1, "Emergency (indoor) active/not active"],
+ [ 162, 98, 3, 105, 2, 1, "LW setpoint (add)"],
+ [ 163, 98, 5, 105, 2, 1, "RT setpoint"],
+ [ 164, 98, 7, 307, 1, -1, "Add. Ext. RT Input Cool."],
+ [ 165, 98, 7, 306, 1, -1, "Add. Ext. RT Input Heat."],
+ [ 166, 98, 7, 305, 1, -1, "Main RT Cooling"],
+ [ 167, 98, 7, 304, 1, -1, "Main RT Heating"],
+ [ 168, 98, 7, 303, 1, -1, "Pwr consumption limit 4"],
+ [ 169, 98, 7, 302, 1, -1, "Pwr consumption limit 3"],
+ [ 170, 98, 7, 301, 1, -1, "Pwr consumption limit 2"],
+ [ 171, 98, 7, 300, 1, -1, "Pwr consumption limit 1"],
+ [ 172, 98, 8, 307, 1, -1, "None"],
+ [ 173, 98, 8, 306, 1, -1, "Not in use"],
+ [ 174, 98, 8, 305, 1, -1, "Not in use"],
+ [ 175, 98, 8, 304, 1, -1, "PHE Heater"],
+ [ 176, 98, 8, 303, 1, -1, "Tank preheat ON/OFF"],
+ [ 177, 98, 8, 302, 1, -1, "Circulation pump operation"],
+ [ 178, 98, 8, 301, 1, -1, "Alarm output"],
+ [ 179, 98, 8, 300, 1, -1, "Space H Operation output"],
+ [ 180, 98, 9, 105, 2, -1, "Flow sensor (l/min)"],
+ [ 181, 98, 11, 105, 1, 2, "Water pressure"],
+ [ 182, 98, 12, 152, 1, -1, "Water pump signal (0:max-100:stop)"],
+ [ 183, 98, 13, 152, 1, -1, "[Future] 3 way Valve Mixing 1"],
+ [ 184, 98, 14, 152, 1, -1, "[Future] 3 way Valve Mixing 2"],
+ [ 185, 98, 15, 105, 2, 2, "Refrigerant pressure sensor"],
+ [ 186, 99, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 187, 99, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 188, 99, 2, 215, 1, -1, "I/U EEPROM (3rd digit)"],
+ [ 189, 99, 3, 215, 1, -1, "I/U EEPROM (4th 5th digit)"],
+ [ 190, 99, 4, 215, 1, -1, "I/U EEPROM (6th 7th digit)"],
+ [ 191, 99, 5, 215, 1, -1, "I/U EEPROM (8th 9th digit)"],
+ [ 192, 99, 6, 215, 1, -1, "I/U EEPROM (11th digit)"],
+ [ 193, 99, 7, 215, 1, -1, "I/U EEPROM (12th digit)(rev.)"],
+ [ 194, 99, 8, 215, 1, -1, "Not in use"],
+ [ 195, 99, 9, 215, 1, -1, "Not in use"],
+ [ 196, 99, 10, 215, 1, -1, "Not in use"],
+ [ 197, 99, 11, 215, 1, -1, "Not in use"],
+ [ 198, 99, 12, 215, 1, -1, "Not in use"],
+ [ 199, 99, 13, 311, 1, -1, "BUH output capacity"],
+ [ 200, 99, 14, 161, 1, -1, "Current measured by CT sensor of L1"],
+ [ 201, 99, 15, 161, 1, -1, "Current measured by CT sensor of L2"],
+ [ 202, 99, 16, 307, 1, -1, "HP Forced FG"],
+ [ 203, 99, 16, 161, 1, -1, "Current measured by CT sensor of L3"],
+ [ 204, 100, 0, 307, 1, -1, "Data Enable/Disable"],
+ [ 205, 100, 1, 152, 1, -1, "Indoor Unit Address"],
+ [ 206, 100, 2, 307, 1, -1, "DHW in standby due to defrost in ODU"],
+ [ 207, 100, 2, 306, 1, -1, "Defrost"],
+ [ 208, 100, 2, 305, 1, -1, "Powerful demand"],
+ [ 209, 100, 2, 304, 1, -1, "DHW priority request"],
+ [ 210, 100, 2, 303, 1, -1, "Mode conflict (DHW in standby)"],
+ [ 211, 100, 2, 302, 1, -1, "Add pump"],
+ [ 212, 100, 2, 301, 1, -1, "Main pump"],
+ [ 213, 100, 2, 300, 1, -1, "BSH allowance Multi"],
+ [ 214, 100, 3, 105, 2, -1, "BE_COP"],
+ [ 215, 100, 5, 105, 2, 1, "Hybrid Heating Target Temp."],
+ [ 216, 100, 7, 105, 2, 1, "Boiler Heating Target Temp."],
+ [ 217, 100, 9, 302, 1, -1, "Add pump"],
+ [ 218, 100, 9, 301, 1, -1, "Main pump"],
+ [ 219, 100, 10, 105, 2, 1, "Mixed water temp."],
+ [ 220, 100, 12, 105, 2, 1, "2nd Domestic hot water temperature"],
+ [ 221, 100, 14, 152, 1, 1, "Target delta T heating"],
+ [ 222, 100, 15, 152, 1, 1, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/ALTHERMA(HYBRID).json b/definitions/X10A/French/ALTHERMA(HYBRID).json
new file mode 100644
index 00000000..6a487069
--- /dev/null
+++ b/definitions/X10A/French/ALTHERMA(HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(HYBRID)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. air extérieur"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire éch. chaleur O/U"],
+ [ 59, "Temp. tuyau de liquide"],
+ [ 60, "Temp. ailette INV"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Courant primaire INV (A)"],
+ [ 66, "Courant secondaire INV (A)"],
+ [ 67, "Tension (V)"],
+ [ 68, "Interrupteur de débit d eau glycolée"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Temp. d entrée d eau glycolée"],
+ [ 77, "Temp. de sortie d eau glycolée"],
+ [ 78, "Temp. réfrig. entrée évap."],
+ [ 79, "Temp. réfrig. sortie évap."],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "Non utilisé"],
+ [ 83, "Non utilisé"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Fréquence INV (rps)"],
+ [ 86, "Fréquence INV 2 (rps)"],
+ [ 87, "Compresseur STD 1"],
+ [ 88, "Compresseur STD 2"],
+ [ 89, "Ventilateur 1 (10 rpm)"],
+ [ 90, "Ventilateur 2 (palier)"],
+ [ 91, "Détendeur électronique1 (pls)"],
+ [ 92, "Détendeur électronique2 (pls)"],
+ [ 93, "Détendeur électronique3 (pls)"],
+ [ 94, "Détendeur électronique4 (pls)"],
+ [ 95, "Détendeur électronique5 (pls)"],
+ [ 96, "Vanne à 4 voies 1"],
+ [ 97, "Vanne à 4 voies 2"],
+ [ 98, "Vanne à 4 voies 3"],
+ [ 99, "Vanne à 4 voies 4"],
+ [ 100, "Vanne à 4 voies 5"],
+ [ 101, "Résistance de carter 1"],
+ [ 102, "Résistance de carter 2"],
+ [ 103, "Résistance de carter 3"],
+ [ 104, "Résistance de carter 4"],
+ [ 105, "Résistance de carter 5"],
+ [ 106, "Electrovanne 1"],
+ [ 107, "SV (BPH)"],
+ [ 108, "Electrovanne 3"],
+ [ 109, "Electrovanne 4"],
+ [ 110, "Electrovanne 5"],
+ [ 111, "In-Out separator"],
+ [ 112, "Activer/Désactiver les données"],
+ [ 113, "Adresse d unité intérieure"],
+ [ 114, "I/U mode de fonctionnement"],
+ [ 115, "Thermostat ON/OFF"],
+ [ 116, "Protection antigel"],
+ [ 117, "Mode silencieux"],
+ [ 118, "Protection antigel pour tuyauterie eau"],
+ [ 119, "Code de dysfonctionnement"],
+ [ 120, "Code d unité intérieure"],
+ [ 121, "Code de capacité I/U"],
+ [ 122, "Point de réglage de DHW"],
+ [ 123, "Point de réglage LW (principal)"],
+ [ 124, "Interrupteur de débit d eau"],
+ [ 125, "Protecteur thermique (Q1L) BUH"],
+ [ 126, "Protecteur thermique BSH"],
+ [ 127, "Alimentation débit kWh avantageux"],
+ [ 128, "Entrée solaire"],
+ [ 129, "Non utilisé"],
+ [ 130, "Non utilisé"],
+ [ 131, "Fonctionnement bivalent"],
+ [ 132, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 133, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 134, "BSH"],
+ [ 135, "Palier1 BUH"],
+ [ 136, "Palier2 BUH"],
+ [ 137, "BPH"],
+ [ 138, "Fonctionnement de la pompe à eau"],
+ [ 139, "Fonctionnement pompe solaire"],
+ [ 140, "Code d option intérieur"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Activer/Désactiver les données"],
+ [ 145, "Adresse d unité intérieure"],
+ [ 146, "Temp. éch. chaleur eau de sortie (R1T)"],
+ [ 147, "Temp. BUH eau de sortie (R2T)"],
+ [ 148, "Temp. réfrig. côté liquide (R3T)"],
+ [ 149, "Temp. d eau d entrée (R4T)"],
+ [ 150, "Temp. de réservoir de DHW (R5T)"],
+ [ 151, "Temp. RT"],
+ [ 152, "Temp. ambiante extérieure ou capteur ext."],
+ [ 153, "Activer/Désactiver les données"],
+ [ 154, "Adresse d unité intérieure"],
+ [ 155, "Réchauffement ON/OFF"],
+ [ 156, "Stockage éco ON/OFF"],
+ [ 157, "Stockage confort ON/OFF"],
+ [ 158, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 159, "Fonctionnement chauffage espace ON/OFF"],
+ [ 160, "Système OFF"],
+ [ 161, "Non utilisé"],
+ [ 162, "Mode secours (intérieur) activé/désactivé"],
+ [ 163, "Point de réglage LW (ajouté)"],
+ [ 164, "Point de réglage RT"],
+ [ 165, "Rafraîch. entrée RT ext. ajouté"],
+ [ 166, "Chauff. entrée RT ext. ajouté"],
+ [ 167, "Rafraîchissement RT principal"],
+ [ 168, "Chauffage RT principal"],
+ [ 169, "Limite consommation courant 4"],
+ [ 170, "Limite consommation courant 3"],
+ [ 171, "Limite consommation courant 2"],
+ [ 172, "Limite consommation courant 1"],
+ [ 173, "Aucun"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Préchauffage Réservoir ON/OFF"],
+ [ 178, "Fonctionnement de pompe de circulation"],
+ [ 179, "Sortie d alarme"],
+ [ 180, "Op. C/H espace ou BPH"],
+ [ 181, "Capteur de débit (l/min)"],
+ [ 182, "Pression d eau"],
+ [ 183, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Non utilisé"],
+ [ 193, "Non utilisé"],
+ [ 194, "Non utilisé"],
+ [ 195, "Activer/Désactiver les données"],
+ [ 196, "Adresse d unité intérieure"],
+ [ 197, "I/U EEPROM (3ème chiffres)"],
+ [ 198, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 199, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 200, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 201, "I/U EEPROM (11ème chiffres)"],
+ [ 202, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 203, "Activer/Désactiver les données"],
+ [ 204, "Adresse d unité intérieure"],
+ [ 205, "Mode de fonctionnement hybride"],
+ [ 206, "Demande de fonctionnement de chaudière"],
+ [ 207, "Demande DHW chaudière"],
+ [ 208, "Sortie de vanne de dérivation"],
+ [ 209, "Mode fonctionnement ECS Hybride"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. cible de chauffage hybride"],
+ [ 212, "Temp. cible de chauffage de chaudière"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/ALTHERMA(LT_CA_CB_04-08KW).json b/definitions/X10A/French/ALTHERMA(LT_CA_CB_04-08KW).json
new file mode 100644
index 00000000..7b602882
--- /dev/null
+++ b/definitions/X10A/French/ALTHERMA(LT_CA_CB_04-08KW).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_04-08KW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (palier)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d erreur détaillé"],
+ [ 118, "Type de dysfonctionnement"],
+ [ 119, "Code de capacité I/U"],
+ [ 120, "Point de réglage de DHW"],
+ [ 121, "Point de réglage LW (principal)"],
+ [ 122, "Interrupteur de débit d eau"],
+ [ 123, "Protecteur thermique (Q1L) BUH"],
+ [ 124, "Protecteur thermique BSH"],
+ [ 125, "Alimentation débit kWh avantageux"],
+ [ 126, "Entrée solaire"],
+ [ 127, "Non utilisé"],
+ [ 128, "Non utilisé"],
+ [ 129, "Fonctionnement bivalent"],
+ [ 130, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 131, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 132, "BSH"],
+ [ 133, "Palier1 BUH"],
+ [ 134, "Palier2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Fonctionnement de la pompe à eau"],
+ [ 137, "Fonctionnement pompe solaire"],
+ [ 138, "Code d option intérieur"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Activer/Désactiver les données"],
+ [ 143, "Adresse d unité intérieure"],
+ [ 144, "Laisser temp. eau avant BUH (R1T)"],
+ [ 145, "Laisser temp. eau après BUH (R2T)"],
+ [ 146, "Temp. réfrig. côté liquide (R3T)"],
+ [ 147, "Temp. d eau d entrée (R4T)"],
+ [ 148, "Temp. de réservoir de DHW (R5T)"],
+ [ 149, "Temp. ambiante intérieure (R1T)"],
+ [ 150, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 151, "Activer/Désactiver les données"],
+ [ 152, "Adresse d unité intérieure"],
+ [ 153, "Réchauffement ON/OFF"],
+ [ 154, "Stockage éco ON/OFF"],
+ [ 155, "Stockage confort ON/OFF"],
+ [ 156, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 157, "Fonctionnement chauffage espace ON/OFF"],
+ [ 158, "Système OFF"],
+ [ 159, "Non utilisé"],
+ [ 160, "Mode secours (intérieur) activé/désactivé"],
+ [ 161, "Point de réglage LW (ajouté)"],
+ [ 162, "Point de réglage RT"],
+ [ 163, "Rafraîch. entrée RT ext. ajouté"],
+ [ 164, "Chauff. entrée RT ext. ajouté"],
+ [ 165, "Rafraîchissement RT principal"],
+ [ 166, "Chauffage RT principal"],
+ [ 167, "Limite consommation courant 4"],
+ [ 168, "Limite consommation courant 3"],
+ [ 169, "Limite consommation courant 2"],
+ [ 170, "Limite consommation courant 1"],
+ [ 171, "Aucun"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Préchauffage Réservoir ON/OFF"],
+ [ 176, "Fonctionnement de pompe de circulation"],
+ [ 177, "Sortie d alarme"],
+ [ 178, "Sortie fonctionnement espace H"],
+ [ 179, "Capteur de débit (l/min)"],
+ [ 180, "Pression d eau"],
+ [ 181, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 182, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Non utilisé"],
+ [ 193, "Activer/Désactiver les données"],
+ [ 194, "Adresse d unité intérieure"],
+ [ 195, "I/U EEPROM (3ème chiffres)"],
+ [ 196, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 197, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 198, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 199, "I/U EEPROM (11ème chiffres)"],
+ [ 200, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 201, "Activer/Désactiver les données"],
+ [ 202, "Adresse d unité intérieure"],
+ [ 203, "Mode de fonctionnement hybride"],
+ [ 204, "Demande de fonctionnement de chaudière"],
+ [ 205, "Demande DHW chaudière"],
+ [ 206, "Sortie de vanne de dérivation"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. cible de chauffage hybride"],
+ [ 209, "Temp. cible de chauffage de chaudière"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/ALTHERMA(LT_CA_CB_11-16KW).json b/definitions/X10A/French/ALTHERMA(LT_CA_CB_11-16KW).json
new file mode 100644
index 00000000..2ec61709
--- /dev/null
+++ b/definitions/X10A/French/ALTHERMA(LT_CA_CB_11-16KW).json
@@ -0,0 +1,209 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_11-16KW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Temp. de dissipateur de chaleur"],
+ [ 54, "Pression"],
+ [ 55, "Pression(T)"],
+ [ 56, "Non utilisé"],
+ [ 57, "Non utilisé"],
+ [ 58, "Courant primaire INV (A)"],
+ [ 59, "Courant secondaire INV (A)"],
+ [ 60, "Tension (phase N) (V)"],
+ [ 61, "Interrupteur de débit d eau glycolée"],
+ [ 62, "Non utilisé"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Non utilisé"],
+ [ 66, "Non utilisé"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Temp. d entrée d eau glycolée"],
+ [ 70, "Temp. de sortie d eau glycolée"],
+ [ 71, "Temp. réfrig. entrée évap."],
+ [ 72, "Temp. réfrig. sortie évap."],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Non utilisé"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Fréquence INV (rps)"],
+ [ 79, "Ventilateur 1 (palier)"],
+ [ 80, "Ventilateur 2 (palier)"],
+ [ 81, "Détendeur électronique1 (pls)"],
+ [ 82, "Détendeur électronique2 (pls)"],
+ [ 83, "Vanne à 4 voies 1"],
+ [ 84, "Vanne à 4 voies 2"],
+ [ 85, "Vanne à 4 voies 3"],
+ [ 86, "Vanne à 4 voies 4"],
+ [ 87, "Vanne à 4 voies 5"],
+ [ 88, "Résistance de carter 1"],
+ [ 89, "Résistance de carter 2"],
+ [ 90, "Résistance de carter 3"],
+ [ 91, "Résistance de carter 4"],
+ [ 92, "SV1 (gaz chaud)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Electrovanne 3"],
+ [ 95, "Electrovanne 4"],
+ [ 96, "Electrovanne 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Activer/Désactiver les données"],
+ [ 99, "Adresse d unité intérieure"],
+ [ 100, "I/U mode de fonctionnement"],
+ [ 101, "Thermostat ON/OFF"],
+ [ 102, "Protection antigel"],
+ [ 103, "Mode silencieux"],
+ [ 104, "Protection antigel pour tuyauterie eau"],
+ [ 105, "Code de dysfonctionnement"],
+ [ 106, "Code d unité intérieure"],
+ [ 107, "Code de capacité I/U"],
+ [ 108, "Point de réglage de DHW"],
+ [ 109, "Point de réglage LW (principal)"],
+ [ 110, "Interrupteur de débit d eau"],
+ [ 111, "BHU protecteur thermique"],
+ [ 112, "Protecteur thermique BSH"],
+ [ 113, "Alimentation débit kWh avantageux"],
+ [ 114, "Entrée solaire"],
+ [ 115, "Non utilisé"],
+ [ 116, "Non utilisé"],
+ [ 117, "Fonctionnement bivalent"],
+ [ 118, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 119, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 120, "BSH"],
+ [ 121, "Palier1 BUH"],
+ [ 122, "Palier2 BUH"],
+ [ 123, "BPH"],
+ [ 124, "Fonctionnement de la pompe à eau"],
+ [ 125, "Fonctionnement pompe solaire"],
+ [ 126, "Code d option intérieur"],
+ [ 127, "I/U Software ID (xx)"],
+ [ 128, "I/U Software ID (yy)"],
+ [ 129, "I/U EEPROM Ver."],
+ [ 130, "Activer/Désactiver les données"],
+ [ 131, "Adresse d unité intérieure"],
+ [ 132, "Laisser temp. eau avant BUH (R1T)"],
+ [ 133, "Laisser temp. eau après BUH (R2T)"],
+ [ 134, "Temp. réfrig. côté liquide (R3T)"],
+ [ 135, "Temp. d eau d entrée (R4T)"],
+ [ 136, "Temp. de réservoir de DHW (R5T)"],
+ [ 137, "Temp. ambiante intérieure (R1T)"],
+ [ 138, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 139, "Activer/Désactiver les données"],
+ [ 140, "Adresse d unité intérieure"],
+ [ 141, "Réchauffement ON/OFF"],
+ [ 142, "Stockage éco ON/OFF"],
+ [ 143, "Stockage confort ON/OFF"],
+ [ 144, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 145, "Fonctionnement chauffage espace ON/OFF"],
+ [ 146, "Système OFF"],
+ [ 147, "Non utilisé"],
+ [ 148, "Mode secours (intérieur) activé/désactivé"],
+ [ 149, "Point de réglage LW (ajouté)"],
+ [ 150, "Point de réglage RT"],
+ [ 151, "Rafraîch. entrée RT ext. ajouté"],
+ [ 152, "Chauff. entrée RT ext. ajouté"],
+ [ 153, "Rafraîchissement RT principal"],
+ [ 154, "Chauffage RT principal"],
+ [ 155, "Limite consommation courant 4"],
+ [ 156, "Limite consommation courant 3"],
+ [ 157, "Limite consommation courant 2"],
+ [ 158, "Limite consommation courant 1"],
+ [ 159, "Aucun"],
+ [ 160, "Non utilisé"],
+ [ 161, "Non utilisé"],
+ [ 162, "Non utilisé"],
+ [ 163, "Préchauffage Réservoir ON/OFF"],
+ [ 164, "Fonctionnement de pompe de circulation"],
+ [ 165, "Sortie d alarme"],
+ [ 166, "Sortie fonctionnement espace H"],
+ [ 167, "Capteur de débit (l/min)"],
+ [ 168, "Pression d eau"],
+ [ 169, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 170, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 171, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Non utilisé"],
+ [ 178, "Non utilisé"],
+ [ 179, "Non utilisé"],
+ [ 180, "Non utilisé"],
+ [ 181, "Activer/Désactiver les données"],
+ [ 182, "Adresse d unité intérieure"],
+ [ 183, "I/U EEPROM (3ème chiffres)"],
+ [ 184, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 185, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 186, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 187, "I/U EEPROM (11ème chiffres)"],
+ [ 188, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 189, "Activer/Désactiver les données"],
+ [ 190, "Adresse d unité intérieure"],
+ [ 191, "Mode de fonctionnement hybride"],
+ [ 192, "Demande de fonctionnement de chaudière"],
+ [ 193, "Demande DHW chaudière"],
+ [ 194, "Sortie de vanne de dérivation"],
+ [ 195, "BE_COP"],
+ [ 196, "Temp. cible de chauffage hybride"],
+ [ 197, "Temp. cible de chauffage de chaudière"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/ALTHERMA(LT_MULTI_DHWHP).json b/definitions/X10A/French/ALTHERMA(LT_MULTI_DHWHP).json
new file mode 100644
index 00000000..26f05c33
--- /dev/null
+++ b/definitions/X10A/French/ALTHERMA(LT_MULTI_DHWHP).json
@@ -0,0 +1,221 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_DHWHP)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (palier)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d unité intérieure"],
+ [ 118, "Code de capacité I/U"],
+ [ 119, "Point de réglage de DHW"],
+ [ 120, "Point de réglage LW (principal)"],
+ [ 121, "Interrupteur de débit d eau"],
+ [ 122, "Protecteur thermique (Q1L) BUH"],
+ [ 123, "Protecteur thermique BSH"],
+ [ 124, "Alimentation débit kWh avantageux"],
+ [ 125, "Entrée solaire"],
+ [ 126, "Non utilisé"],
+ [ 127, "Non utilisé"],
+ [ 128, "Fonctionnement bivalent"],
+ [ 129, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 130, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 131, "BSH"],
+ [ 132, "Palier1 BUH"],
+ [ 133, "Palier2 BUH"],
+ [ 134, "Vanne d isolement du plancher chauffant"],
+ [ 135, "Fonctionnement de la pompe à eau"],
+ [ 136, "Fonctionnement pompe solaire"],
+ [ 137, "Code d option intérieur"],
+ [ 138, "I/U Software ID (xx)"],
+ [ 139, "I/U Software ID (yy)"],
+ [ 140, "I/U EEPROM Ver."],
+ [ 141, "Activer/Désactiver les données"],
+ [ 142, "Adresse d unité intérieure"],
+ [ 143, "Laisser temp. eau avant BUH (R1T)"],
+ [ 144, "Laisser temp. eau après BUH (R2T)"],
+ [ 145, "Temp. réfrig. côté liquide (R3T)"],
+ [ 146, "Temp. d eau d entrée (R4T)"],
+ [ 147, "Temp. de réservoir de DHW (R5T)"],
+ [ 148, "Temp. ambiante intérieure (R1T)"],
+ [ 149, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 150, "Activer/Désactiver les données"],
+ [ 151, "Adresse d unité intérieure"],
+ [ 152, "Réchauffement ON/OFF"],
+ [ 153, "Stockage éco ON/OFF"],
+ [ 154, "Stockage confort ON/OFF"],
+ [ 155, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 156, "Fonctionnement chauffage espace ON/OFF"],
+ [ 157, "Système OFF"],
+ [ 158, "Non utilisé"],
+ [ 159, "Mode secours (intérieur) activé/désactivé"],
+ [ 160, "Point de réglage LW (ajouté)"],
+ [ 161, "Point de réglage RT"],
+ [ 162, "Rafraîch. entrée RT ext. ajouté"],
+ [ 163, "Chauff. entrée RT ext. ajouté"],
+ [ 164, "Rafraîchissement RT principal"],
+ [ 165, "Chauffage RT principal"],
+ [ 166, "Limite consommation courant 4"],
+ [ 167, "Limite consommation courant 3"],
+ [ 168, "Limite consommation courant 2"],
+ [ 169, "Limite consommation courant 1"],
+ [ 170, "Aucun"],
+ [ 171, "Dégivrage interdit ON/OFF"],
+ [ 172, "Mode Powerful"],
+ [ 173, "Demande ECS prioritaire"],
+ [ 174, "Mode Conflict"],
+ [ 175, "Fonctionnement de pompe de circulation"],
+ [ 176, "Sortie d alarme"],
+ [ 177, "Sortie fonctionnement espace H"],
+ [ 178, "Capteur de débit (l/min)"],
+ [ 179, "Pression d eau"],
+ [ 180, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 181, "Mélange vanne à 3 voies 1"],
+ [ 182, "Mélange vanne à 3 voies 2"],
+ [ 183, "Non utilisé"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Activer/Désactiver les données"],
+ [ 193, "Adresse d unité intérieure"],
+ [ 194, "I/U EEPROM (3ème chiffres)"],
+ [ 195, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 196, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 197, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 198, "I/U EEPROM (11ème chiffres)"],
+ [ 199, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 200, "Activer/Désactiver les données"],
+ [ 201, "Adresse d unité intérieure"],
+ [ 202, "Mode de fonctionnement hybride"],
+ [ 203, "Demande de fonctionnement de chaudière"],
+ [ 204, "Demande DHW chaudière"],
+ [ 205, "Sortie de vanne de dérivation"],
+ [ 206, "BE_COP"],
+ [ 207, "Temp. cible de chauffage hybride"],
+ [ 208, "Temp. cible de chauffage de chaudière"],
+ [ 209, "Add pump"],
+ [ 210, "Main pump"],
+ [ 211, "Mixed water temp.(R7T)"],
+ [ 212, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/ALTHERMA(LT_MULTI_HYBRID).json b/definitions/X10A/French/ALTHERMA(LT_MULTI_HYBRID).json
new file mode 100644
index 00000000..99928211
--- /dev/null
+++ b/definitions/X10A/French/ALTHERMA(LT_MULTI_HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_HYBRID)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (palier)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d unité intérieure"],
+ [ 118, "Code de capacité I/U"],
+ [ 119, "Point de réglage de DHW"],
+ [ 120, "Point de réglage LW (principal)"],
+ [ 121, "Interrupteur de débit d eau"],
+ [ 122, "Protecteur thermique (Q1L) BUH"],
+ [ 123, "Protecteur thermique BSH"],
+ [ 124, "Alimentation débit kWh avantageux"],
+ [ 125, "Entrée solaire"],
+ [ 126, "Non utilisé"],
+ [ 127, "Non utilisé"],
+ [ 128, "Fonctionnement bivalent"],
+ [ 129, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 130, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 131, "BSH"],
+ [ 132, "Palier1 BUH"],
+ [ 133, "Palier2 BUH"],
+ [ 134, "Vanne d isolement du plancher chauffant"],
+ [ 135, "Fonctionnement de la pompe à eau"],
+ [ 136, "Fonctionnement pompe solaire"],
+ [ 137, "Code d option intérieur"],
+ [ 138, "I/U Software ID (xx)"],
+ [ 139, "I/U Software ID (yy)"],
+ [ 140, "I/U EEPROM Ver."],
+ [ 141, "Activer/Désactiver les données"],
+ [ 142, "Adresse d unité intérieure"],
+ [ 143, "Laisser temp. eau avant BUH (R1T)"],
+ [ 144, "Laisser temp. eau après BUH (R2T)"],
+ [ 145, "Temp. réfrig. côté liquide (R3T)"],
+ [ 146, "Temp. d eau d entrée (R4T)"],
+ [ 147, "Temp. de réservoir de DHW (R5T)"],
+ [ 148, "Temp. ambiante intérieure (R1T)"],
+ [ 149, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 150, "Activer/Désactiver les données"],
+ [ 151, "Adresse d unité intérieure"],
+ [ 152, "Réchauffement ON/OFF"],
+ [ 153, "Stockage éco ON/OFF"],
+ [ 154, "Stockage confort ON/OFF"],
+ [ 155, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 156, "Fonctionnement chauffage espace ON/OFF"],
+ [ 157, "Système OFF"],
+ [ 158, "Non utilisé"],
+ [ 159, "Mode secours (intérieur) activé/désactivé"],
+ [ 160, "Point de réglage LW (ajouté)"],
+ [ 161, "Point de réglage RT"],
+ [ 162, "Rafraîch. entrée RT ext. ajouté"],
+ [ 163, "Chauff. entrée RT ext. ajouté"],
+ [ 164, "Rafraîchissement RT principal"],
+ [ 165, "Chauffage RT principal"],
+ [ 166, "Limite consommation courant 4"],
+ [ 167, "Limite consommation courant 3"],
+ [ 168, "Limite consommation courant 2"],
+ [ 169, "Limite consommation courant 1"],
+ [ 170, "Aucun"],
+ [ 171, "Dégivrage interdit ON/OFF"],
+ [ 172, "Mode Powerful"],
+ [ 173, "Demande ECS prioritaire"],
+ [ 174, "Mode Conflict"],
+ [ 175, "Fonctionnement de pompe de circulation"],
+ [ 176, "Sortie d alarme"],
+ [ 177, "Sortie fonctionnement espace H"],
+ [ 178, "Capteur de débit (l/min)"],
+ [ 179, "Pression d eau"],
+ [ 180, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 181, "Mélange vanne à 3 voies 1"],
+ [ 182, "Mélange vanne à 3 voies 2"],
+ [ 183, "Non utilisé"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Activer/Désactiver les données"],
+ [ 193, "Adresse d unité intérieure"],
+ [ 194, "I/U EEPROM (3ème chiffres)"],
+ [ 195, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 196, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 197, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 198, "I/U EEPROM (11ème chiffres)"],
+ [ 199, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 200, "Activer/Désactiver les données"],
+ [ 201, "Adresse d unité intérieure"],
+ [ 202, "Mode de fonctionnement hybride"],
+ [ 203, "Demande de fonctionnement de chaudière"],
+ [ 204, "Demande DHW chaudière"],
+ [ 205, "Sortie de vanne de dérivation"],
+ [ 206, "Mode fonctionnement ECS Hybride"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. cible de chauffage hybride"],
+ [ 209, "Temp. cible de chauffage de chaudière"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json b/definitions/X10A/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
new file mode 100644
index 00000000..17598893
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 4-8kW Monobloc)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Température de liquide (R3T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Capteur de pression(T)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacité de sortie"],
+ [ 201, "Mesure du capteur CT (L1)"],
+ [ 202, "Mesure du capteur CT (L2)"],
+ [ 203, "HP forcé FG"],
+ [ 204, "Mesure du capteur CT (L3)"],
+ [ 205, "Activer/Désactiver les données"],
+ [ 206, "Adresse d unité intérieure"],
+ [ 207, "Mode de fonctionnement hybride"],
+ [ 208, "Demande de fonctionnement de chaudière"],
+ [ 209, "Demande DHW chaudière"],
+ [ 210, "Sortie de vanne de dérivation"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. cible de chauffage hybride"],
+ [ 213, "Temp. cible de chauffage de chaudière"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Température de l eau mélangée"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json b/definitions/X10A/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
new file mode 100644
index 00000000..e02b54dd
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
@@ -0,0 +1,232 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 9-16kW Monobloc)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Non utilisé"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Non utilisé"],
+ [ 199, "BUH capacité de sortie"],
+ [ 200, "Mesure du capteur CT (L1)"],
+ [ 201, "Mesure du capteur CT (L2)"],
+ [ 202, "HP forcé FG"],
+ [ 203, "Mesure du capteur CT (L3)"],
+ [ 204, "Activer/Désactiver les données"],
+ [ 205, "Adresse d unité intérieure"],
+ [ 206, "Mode de fonctionnement hybride"],
+ [ 207, "Demande de fonctionnement de chaudière"],
+ [ 208, "Demande DHW chaudière"],
+ [ 209, "Sortie de vanne de dérivation"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. cible de chauffage hybride"],
+ [ 212, "Temp. cible de chauffage de chaudière"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Température de l eau mélangée"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"],
+ [ 219, "Activer/Désactiver les données"],
+ [ 220, "Adresse d unité intérieure"],
+ [ 221, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 222, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 223, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json b/definitions/X10A/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
new file mode 100644
index 00000000..6bba29ee
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
@@ -0,0 +1,179 @@
+{
+ "Model": "Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Thermistor à 2 phases (R4T)"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Entrée de temp. d eau glycolée (R5T)"],
+ [ 52, "Laisser temp. eau glycolée (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Retour de la pompe à saumure"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Vanne à 4 voies (Y1S)"],
+ [ 74, "Y2S"],
+ [ 75, "Y3S"],
+ [ 76, "Electrovanne 4"],
+ [ 77, "Electrovanne 5"],
+ [ 78, "In-Out separator"],
+ [ 79, "Activer/Désactiver les données"],
+ [ 80, "Adresse d unité intérieure"],
+ [ 81, "I/U mode de fonctionnement"],
+ [ 82, "Thermostat ON/OFF"],
+ [ 83, "Protection antigel"],
+ [ 84, "Mode silencieux"],
+ [ 85, "Protection antigel pour tuyauterie eau"],
+ [ 86, "Code de dysfonctionnement"],
+ [ 87, "Code d erreur détaillé"],
+ [ 88, "Type de dysfonctionnement"],
+ [ 89, "Capacité d unité intérieure"],
+ [ 90, "Point de réglage de DHW"],
+ [ 91, "Point de réglage LW (principal)"],
+ [ 92, "Interrupteur de débit d eau"],
+ [ 93, "Protecteur thermique (Q1L) BUH"],
+ [ 94, "Protecteur thermique BSH"],
+ [ 95, "Alimentation débit kWh avantageux"],
+ [ 96, "Entrée solaire"],
+ [ 97, "Non utilisé"],
+ [ 98, "Non utilisé"],
+ [ 99, "Fonctionnement bivalent"],
+ [ 100, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 101, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 102, "BSH"],
+ [ 103, "Palier1 BUH"],
+ [ 104, "Palier2 BUH"],
+ [ 105, "Vanne d isolement du plancher chauffant"],
+ [ 106, "Fonctionnement de la pompe à eau"],
+ [ 107, "Fonctionnement pompe solaire"],
+ [ 108, "Code d option intérieur"],
+ [ 109, "I/U Software ID (xx)"],
+ [ 110, "I/U Software ID (yy)"],
+ [ 111, "I/U EEPROM Ver."],
+ [ 112, "Activer/Désactiver les données"],
+ [ 113, "Adresse d unité intérieure"],
+ [ 114, "Laisser temp. eau avant BUH (R1T)"],
+ [ 115, "Laisser temp. eau après BUH (R2T)"],
+ [ 116, "Temp. réfrig. côté liquide (R3T)"],
+ [ 117, "Temp. d eau d entrée (R4T)"],
+ [ 118, "Temp. de réservoir de DHW (R5T)"],
+ [ 119, "Temp. ambiante intérieure (R1T)"],
+ [ 120, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 121, "Activer/Désactiver les données"],
+ [ 122, "Adresse d unité intérieure"],
+ [ 123, "Réchauffement ON/OFF"],
+ [ 124, "Stockage éco ON/OFF"],
+ [ 125, "Stockage confort ON/OFF"],
+ [ 126, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 127, "Fonctionnement chauffage espace ON/OFF"],
+ [ 128, "Système OFF"],
+ [ 129, "Non utilisé"],
+ [ 130, "Mode secours (intérieur) activé/désactivé"],
+ [ 131, "Point de réglage LW (ajouté)"],
+ [ 132, "Point de réglage RT"],
+ [ 133, "Rafraîch. entrée RT ext. ajouté"],
+ [ 134, "Chauff. entrée RT ext. ajouté"],
+ [ 135, "Rafraîchissement RT principal"],
+ [ 136, "Chauffage RT principal"],
+ [ 137, "Limite consommation courant 4"],
+ [ 138, "Limite consommation courant 3"],
+ [ 139, "Limite consommation courant 2"],
+ [ 140, "Limite consommation courant 1"],
+ [ 141, "Aucun"],
+ [ 142, "Non utilisé"],
+ [ 143, "Non utilisé"],
+ [ 144, "Chauffage PHE"],
+ [ 145, "Préchauffage Réservoir ON/OFF"],
+ [ 146, "Fonctionnement de pompe de circulation"],
+ [ 147, "Sortie d alarme"],
+ [ 148, "Sortie fonctionnement espace H"],
+ [ 149, "Capteur de débit (l/min)"],
+ [ 150, "Pression d eau"],
+ [ 151, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 152, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 153, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 154, "Capteur de pression de réfrigérant"],
+ [ 155, "Activer/Désactiver les données"],
+ [ 156, "Adresse d unité intérieure"],
+ [ 157, "I/U EEPROM (3ème chiffres)"],
+ [ 158, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 159, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 160, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 161, "I/U EEPROM (11ème chiffres)"],
+ [ 162, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 163, "BUH capacité de sortie"],
+ [ 164, "Mesure du capteur CT (L1)"],
+ [ 165, "Mesure du capteur CT (L2)"],
+ [ 166, "Mesure du capteur CT (L3)"],
+ [ 167, "Opération HP forcée par l installateur"],
+ [ 168, "2nd Domestic hot water temperature"],
+ [ 169, "Target delta T heating"],
+ [ 170, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EGSQH-A series 10kW GEO2).json b/definitions/X10A/French/Altherma(EGSQH-A series 10kW GEO2).json
new file mode 100644
index 00000000..3a8bf203
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EGSQH-A series 10kW GEO2).json
@@ -0,0 +1,220 @@
+{
+ "Model": "Altherma(EGSQH-A series 10kW GEO2)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Thermistor à 2 phases (R4T)"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Temp. tuyau d aspiration (R3T)"],
+ [ 58, "Entrée de temp. d eau glycolée (R5T)"],
+ [ 59, "Laisser temp. eau glycolée (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur (R10T)"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Courant primaire INV (A)"],
+ [ 66, "Courant secondaire INV (A)"],
+ [ 67, "Tension (phase N) (V)"],
+ [ 68, "Interrupteur de débit d eau glycolée"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Temp. d entrée d eau glycolée"],
+ [ 77, "Temp. de sortie d eau glycolée"],
+ [ 78, "Temp. réfrig. entrée évap."],
+ [ 79, "Temp. réfrig. sortie évap."],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "Non utilisé"],
+ [ 83, "Non utilisé"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Fréquence INV (rps)"],
+ [ 86, "Fréquence INV 2 (rps)"],
+ [ 87, "Compresseur STD 1"],
+ [ 88, "Compresseur STD 2"],
+ [ 89, "Ventilateur 1 (palier)"],
+ [ 90, "Ventilateur 2 (palier)"],
+ [ 91, "Détendeur électronique (pls)"],
+ [ 92, "Détendeur électronique2 (pls)"],
+ [ 93, "Détendeur électronique3 (pls)"],
+ [ 94, "Détendeur électronique4 (pls)"],
+ [ 95, "Détendeur électronique5 (pls)"],
+ [ 96, "Vanne à 4 voies"],
+ [ 97, "Vanne à 4 voies 2"],
+ [ 98, "Vanne à 4 voies 3"],
+ [ 99, "Vanne à 4 voies 4"],
+ [ 100, "Vanne à 4 voies 5"],
+ [ 101, "Résistance de carter"],
+ [ 102, "Résistance de carter 2"],
+ [ 103, "Résistance de carter 3"],
+ [ 104, "Résistance de carter 4"],
+ [ 105, "SV (gaz chaud)"],
+ [ 106, "SV (BPH)"],
+ [ 107, "Electrovanne 3"],
+ [ 108, "Electrovanne 4"],
+ [ 109, "Electrovanne 5"],
+ [ 110, "In-Out separator"],
+ [ 111, "Activer/Désactiver les données"],
+ [ 112, "Adresse d unité intérieure"],
+ [ 113, "I/U mode de fonctionnement"],
+ [ 114, "Thermostat ON/OFF"],
+ [ 115, "Protection antigel"],
+ [ 116, "Mode silencieux"],
+ [ 117, "Protection antigel pour tuyauterie eau"],
+ [ 118, "Code de dysfonctionnement"],
+ [ 119, "Code d unité intérieure"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Non utilisé"],
+ [ 129, "Non utilisé"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "BPH"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Non utilisé"],
+ [ 193, "Non utilisé"],
+ [ 194, "Activer/Désactiver les données"],
+ [ 195, "Adresse d unité intérieure"],
+ [ 196, "I/U EEPROM (3ème chiffres)"],
+ [ 197, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 198, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 199, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 200, "I/U EEPROM (11ème chiffres)"],
+ [ 201, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 202, "Activer/Désactiver les données"],
+ [ 203, "Adresse d unité intérieure"],
+ [ 204, "Mode de fonctionnement hybride"],
+ [ 205, "Demande de fonctionnement de chaudière"],
+ [ 206, "Demande DHW chaudière"],
+ [ 207, "Sortie de vanne de dérivation"],
+ [ 208, "BE_COP"],
+ [ 209, "Temp. cible de chauffage hybride"],
+ [ 210, "Temp. cible de chauffage de chaudière"],
+ [ 211, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json b/definitions/X10A/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
new file mode 100644
index 00000000..9389e836
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
@@ -0,0 +1,201 @@
+{
+ "Model": "Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Temp. d entrée d eau glycolée"],
+ [ 61, "Temp. de sortie d eau glycolée"],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "Temp. réfrig. sortie évap."],
+ [ 64, "Non utilisé"],
+ [ 65, "Non utilisé"],
+ [ 66, "Non utilisé"],
+ [ 67, "Non utilisé"],
+ [ 68, "NextDataGrid"],
+ [ 69, "Fréquence INV (rps)"],
+ [ 70, "Ventilateur 1 (palier)"],
+ [ 71, "Ventilateur 2 (palier)"],
+ [ 72, "Détendeur électronique1 (pls)"],
+ [ 73, "Détendeur électronique2 (pls)"],
+ [ 74, "Vanne à 4 voies 1"],
+ [ 75, "Vanne à 4 voies 2"],
+ [ 76, "Vanne à 4 voies 3"],
+ [ 77, "Vanne à 4 voies 4"],
+ [ 78, "Vanne à 4 voies 5"],
+ [ 79, "Vanne à 4 voies 6"],
+ [ 80, "Vanne à 4 voies 7"],
+ [ 81, "Vanne à 4 voies 8"],
+ [ 82, "Résistance de carter"],
+ [ 83, "Soupape de dérivation de gaz chaud (Y2S)"],
+ [ 84, "Vanne de dérivation basse pression (Y3S)"],
+ [ 85, "Température de l eau d entrée. (DMW)"],
+ [ 86, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 87, "In-Out separator"],
+ [ 88, "Vanne à 4 voies (Y1S)"],
+ [ 89, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 90, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 91, "Chauffage de plaque inférieure"],
+ [ 92, "Chauffage PHE"],
+ [ 93, "Activer/Désactiver les données"],
+ [ 94, "Adresse d unité intérieure"],
+ [ 95, "I/U mode de fonctionnement"],
+ [ 96, "Thermostat ON/OFF"],
+ [ 97, "Protection antigel"],
+ [ 98, "Mode silencieux"],
+ [ 99, "Protection antigel pour tuyauterie eau"],
+ [ 100, "Code de dysfonctionnement"],
+ [ 101, "Code d erreur détaillé"],
+ [ 102, "Type de dysfonctionnement"],
+ [ 103, "Code de capacité I/U"],
+ [ 104, "Point de réglage de DHW"],
+ [ 105, "Point de réglage LW (principal)"],
+ [ 106, "Interrupteur de débit d eau"],
+ [ 107, "Protecteur thermique (Q1L) BUH"],
+ [ 108, "Protecteur thermique BSH"],
+ [ 109, "Alimentation débit kWh avantageux"],
+ [ 110, "Entrée solaire"],
+ [ 111, "Non utilisé"],
+ [ 112, "Non utilisé"],
+ [ 113, "Fonctionnement bivalent"],
+ [ 114, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 115, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 116, "BSH"],
+ [ 117, "Palier1 BUH"],
+ [ 118, "Palier2 BUH"],
+ [ 119, "Vanne d isolement du plancher chauffant"],
+ [ 120, "Fonctionnement de la pompe à eau"],
+ [ 121, "Fonctionnement pompe solaire"],
+ [ 122, "Code d option intérieur"],
+ [ 123, "I/U Software ID (xx)"],
+ [ 124, "I/U Software ID (yy)"],
+ [ 125, "I/U EEPROM Ver."],
+ [ 126, "Activer/Désactiver les données"],
+ [ 127, "Adresse d unité intérieure"],
+ [ 128, "Laisser temp. eau avant BUH (R1T)"],
+ [ 129, "Laisser temp. eau après BUH (R2T)"],
+ [ 130, "Temp. réfrig. côté liquide (R3T)"],
+ [ 131, "Temp. d eau d entrée (R4T)"],
+ [ 132, "Temp. de réservoir de DHW (R5T)"],
+ [ 133, "Temp. ambiante intérieure (R1T)"],
+ [ 134, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 135, "Activer/Désactiver les données"],
+ [ 136, "Adresse d unité intérieure"],
+ [ 137, "Réchauffement ON/OFF"],
+ [ 138, "Stockage éco ON/OFF"],
+ [ 139, "Stockage confort ON/OFF"],
+ [ 140, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 141, "Fonctionnement chauffage espace ON/OFF"],
+ [ 142, "Système OFF"],
+ [ 143, "Non utilisé"],
+ [ 144, "Mode secours (intérieur) activé/désactivé"],
+ [ 145, "Point de réglage LW (ajouté)"],
+ [ 146, "Point de réglage RT"],
+ [ 147, "Rafraîch. entrée RT ext. ajouté"],
+ [ 148, "Chauff. entrée RT ext. ajouté"],
+ [ 149, "Rafraîchissement RT principal"],
+ [ 150, "Chauffage RT principal"],
+ [ 151, "Limite consommation courant 4"],
+ [ 152, "Limite consommation courant 3"],
+ [ 153, "Limite consommation courant 2"],
+ [ 154, "Limite consommation courant 1"],
+ [ 155, "Aucun"],
+ [ 156, "Non utilisé"],
+ [ 157, "Non utilisé"],
+ [ 158, "Chauffage PHE"],
+ [ 159, "Préchauffage Réservoir ON/OFF"],
+ [ 160, "Fonctionnement de pompe de circulation"],
+ [ 161, "Sortie d alarme"],
+ [ 162, "Sortie fonctionnement espace H"],
+ [ 163, "Capteur de débit (l/min)"],
+ [ 164, "Pression d eau"],
+ [ 165, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 166, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 167, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 168, "Capteur de pression de réfrigérant"],
+ [ 169, "Activer/Désactiver les données"],
+ [ 170, "Adresse d unité intérieure"],
+ [ 171, "I/U EEPROM (3ème chiffres)"],
+ [ 172, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 173, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 174, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 175, "I/U EEPROM (11ème chiffres)"],
+ [ 176, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 177, "HP forcé FG"],
+ [ 178, "Activer/Désactiver les données"],
+ [ 179, "Adresse d unité intérieure"],
+ [ 180, "Mode de fonctionnement hybride"],
+ [ 181, "Demande de fonctionnement de chaudière"],
+ [ 182, "Demande DHW chaudière"],
+ [ 183, "Sortie de vanne de dérivation"],
+ [ 184, "BE_COP"],
+ [ 185, "Temp. cible de chauffage hybride"],
+ [ 186, "Temp. cible de chauffage de chaudière"],
+ [ 187, "Add pump"],
+ [ 188, "Main pump"],
+ [ 189, "Température de l eau mélangée"],
+ [ 190, "2nd Domestic hot water temperature"],
+ [ 191, "Target delta T heating"],
+ [ 192, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json b/definitions/X10A/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
new file mode 100644
index 00000000..f89fdf79
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "[HPSU] Tv Temp d amission (R1T)"],
+ [ 146, "[HPSU] Tvbh Temp d amission après Ballon/BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Non utilisé"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Not translated yet"],
+ [ 199, "BUH capacité de sortie"],
+ [ 200, "Mesure du capteur CT (L1)"],
+ [ 201, "Mesure du capteur CT (L2)"],
+ [ 202, "HP forcé FG"],
+ [ 203, "Mesure du capteur CT (L3)"],
+ [ 204, "Activer/Désactiver les données"],
+ [ 205, "Adresse d unité intérieure"],
+ [ 206, "Mode de fonctionnement hybride"],
+ [ 207, "Demande de fonctionnement de chaudière"],
+ [ 208, "Demande DHW chaudière"],
+ [ 209, "Sortie de vanne de dérivation"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. cible de chauffage hybride"],
+ [ 212, "Temp. cible de chauffage de chaudière"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Température de l eau mélangée"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json b/definitions/X10A/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
new file mode 100644
index 00000000..2da5d93e
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Non utilisé"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Non utilisé"],
+ [ 199, "BUH capacité de sortie"],
+ [ 200, "Mesure du capteur CT (L1)"],
+ [ 201, "Mesure du capteur CT (L2)"],
+ [ 202, "HP forcé FG"],
+ [ 203, "Mesure du capteur CT (L3)"],
+ [ 204, "Activer/Désactiver les données"],
+ [ 205, "Adresse d unité intérieure"],
+ [ 206, "Mode de fonctionnement hybride"],
+ [ 207, "Demande de fonctionnement de chaudière"],
+ [ 208, "Demande DHW chaudière"],
+ [ 209, "Sortie de vanne de dérivation"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. cible de chauffage hybride"],
+ [ 212, "Temp. cible de chauffage de chaudière"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Température de l eau mélangée"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json b/definitions/X10A/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
new file mode 100644
index 00000000..2f34705f
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Chauffage PHE"],
+ [ 177, "Préchauffage Réservoir ON/OFF"],
+ [ 178, "Fonctionnement de pompe de circulation"],
+ [ 179, "Sortie d alarme"],
+ [ 180, "Sortie fonctionnement espace H"],
+ [ 181, "Capteur de débit (l/min)"],
+ [ 182, "Pression d eau"],
+ [ 183, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 186, "Capteur de pression de réfrigérant"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacité de sortie"],
+ [ 205, "Mesure du capteur CT (L1)"],
+ [ 206, "Mesure du capteur CT (L2)"],
+ [ 207, "HP forcé FG"],
+ [ 208, "Mesure du capteur CT (L3)"],
+ [ 209, "Activer/Désactiver les données"],
+ [ 210, "Adresse d unité intérieure"],
+ [ 211, "Mode de fonctionnement hybride"],
+ [ 212, "Demande de fonctionnement de chaudière"],
+ [ 213, "Demande DHW chaudière"],
+ [ 214, "Sortie de vanne de dérivation"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. cible de chauffage hybride"],
+ [ 217, "Temp. cible de chauffage de chaudière"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Température de l eau mélangée"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activer/Désactiver les données"],
+ [ 225, "Adresse d unité intérieure"],
+ [ 226, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 228, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json b/definitions/X10A/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
new file mode 100644
index 00000000..a8e051e2
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Chauffage PHE"],
+ [ 177, "Préchauffage Réservoir ON/OFF"],
+ [ 178, "Fonctionnement de pompe de circulation"],
+ [ 179, "Sortie d alarme"],
+ [ 180, "Sortie fonctionnement espace H"],
+ [ 181, "Capteur de débit (l/min)"],
+ [ 182, "Pression d eau"],
+ [ 183, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 186, "Capteur de pression de réfrigérant"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacité de sortie"],
+ [ 205, "Mesure du capteur CT (L1)"],
+ [ 206, "Mesure du capteur CT (L2)"],
+ [ 207, "HP forcé FG"],
+ [ 208, "Mesure du capteur CT (L3)"],
+ [ 209, "Activer/Désactiver les données"],
+ [ 210, "Adresse d unité intérieure"],
+ [ 211, "Mode de fonctionnement hybride"],
+ [ 212, "Demande de fonctionnement de chaudière"],
+ [ 213, "Demande DHW chaudière"],
+ [ 214, "Sortie de vanne de dérivation"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. cible de chauffage hybride"],
+ [ 217, "Temp. cible de chauffage de chaudière"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Température de l eau mélangée"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activer/Désactiver les données"],
+ [ 225, "Adresse d unité intérieure"],
+ [ 226, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 228, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json b/definitions/X10A/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
new file mode 100644
index 00000000..266097ed
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Fréquence INV (rps)"],
+ [ 66, "Ventilateur 1 (palier)"],
+ [ 67, "Ventilateur 2 (palier)"],
+ [ 68, "Détendeur électronique1 (pls)"],
+ [ 69, "Détendeur électronique2 (pls)"],
+ [ 70, "Détendeur électronique3 (pls)"],
+ [ 71, "Détendeur électronique4 (pls)"],
+ [ 72, "Vanne à 4 voies"],
+ [ 73, "Résistance de carter"],
+ [ 74, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 75, "Vanne de dérivation basse pression (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Température du tuyau d aspiration"],
+ [ 79, "Temp. échangeur de chaleur extérieur"],
+ [ 80, "Temp. tuyau de liquide"],
+ [ 81, "Pression"],
+ [ 82, "Détendeur électronique3 (pls)"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "O/U MPU ID"],
+ [ 85, "HPS activé"],
+ [ 86, "Opération de sauvegarde"],
+ [ 87, "Résistance de carter"],
+ [ 88, "Electrovanne 3"],
+ [ 89, "Electrovanne 2"],
+ [ 90, "Electrovanne 1"],
+ [ 91, "Vanne à 4 voies (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Chute de temp. refoulement"],
+ [ 94, "Pendant l opération d urgence"],
+ [ 95, "Drapeau unité éruption 50 ° C"],
+ [ 96, "Bit puissant (bit de réglage MT)"],
+ [ 97, "Température du port du compresseur"],
+ [ 98, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 99, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 100, "Électrovanne INJ liquide (Y4S)"],
+ [ 101, "Chauffage de plaque inférieure"],
+ [ 102, "Chauffage PHE"],
+ [ 103, "Temp. de refoulement cible"],
+ [ 104, "Température du port cible"],
+ [ 105, "Réglage Monobloc"],
+ [ 106, "Réglage Minichiller"],
+ [ 107, "Réglage MT"],
+ [ 108, "Réglage GSHP"],
+ [ 109, "Réglage Hydro split"],
+ [ 110, "Réglage Altherma LT"],
+ [ 111, "Activer/Désactiver les données"],
+ [ 112, "Adresse d unité intérieure"],
+ [ 113, "I/U mode de fonctionnement"],
+ [ 114, "Thermostat ON/OFF"],
+ [ 115, "Protection antigel"],
+ [ 116, "Mode silencieux"],
+ [ 117, "Protection antigel pour tuyauterie eau"],
+ [ 118, "Code de dysfonctionnement"],
+ [ 119, "Code d erreur détaillé"],
+ [ 120, "Type de dysfonctionnement"],
+ [ 121, "Code de capacité I/U"],
+ [ 122, "Point de réglage de DHW"],
+ [ 123, "Point de réglage LW (principal)"],
+ [ 124, "Interrupteur de débit d eau"],
+ [ 125, "Protecteur thermique (Q1L) BUH"],
+ [ 126, "Protecteur thermique BSH"],
+ [ 127, "Alimentation débit kWh avantageux"],
+ [ 128, "Entrée solaire"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Fonctionnement bivalent"],
+ [ 132, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 133, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 134, "BSH"],
+ [ 135, "Palier1 BUH"],
+ [ 136, "Palier2 BUH"],
+ [ 137, "Vanne d isolement du plancher chauffant"],
+ [ 138, "Fonctionnement de la pompe à eau"],
+ [ 139, "Fonctionnement pompe solaire"],
+ [ 140, "Code d option intérieur"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Activer/Désactiver les données"],
+ [ 145, "Adresse d unité intérieure"],
+ [ 146, "Laisser temp. eau avant BUH (R1T)"],
+ [ 147, "Laisser temp. eau après BUH (R2T)"],
+ [ 148, "Temp. réfrig. côté liquide (R3T)"],
+ [ 149, "Temp. d eau d entrée (R4T)"],
+ [ 150, "Temp. de réservoir de DHW (R5T)"],
+ [ 151, "Temp. ambiante intérieure (R1T)"],
+ [ 152, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 153, "Activer/Désactiver les données"],
+ [ 154, "Adresse d unité intérieure"],
+ [ 155, "Réchauffement ON/OFF"],
+ [ 156, "Stockage éco ON/OFF"],
+ [ 157, "Stockage confort ON/OFF"],
+ [ 158, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 159, "Fonctionnement chauffage espace ON/OFF"],
+ [ 160, "Système OFF"],
+ [ 161, "Non utilisé"],
+ [ 162, "Mode secours (intérieur) activé/désactivé"],
+ [ 163, "Point de réglage LW (ajouté)"],
+ [ 164, "Point de réglage RT"],
+ [ 165, "Rafraîch. entrée RT ext. ajouté"],
+ [ 166, "Chauff. entrée RT ext. ajouté"],
+ [ 167, "Rafraîchissement RT principal"],
+ [ 168, "Chauffage RT principal"],
+ [ 169, "Limite consommation courant 4"],
+ [ 170, "Limite consommation courant 3"],
+ [ 171, "Limite consommation courant 2"],
+ [ 172, "Limite consommation courant 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Chauffage PHE"],
+ [ 178, "Préchauffage Réservoir ON/OFF"],
+ [ 179, "Fonctionnement de pompe de circulation"],
+ [ 180, "Sortie d alarme"],
+ [ 181, "Sortie fonctionnement espace H"],
+ [ 182, "Capteur de débit (l/min)"],
+ [ 183, "Pression d eau"],
+ [ 184, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 186, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 187, "Capteur de pression de réfrigérant"],
+ [ 188, "Activer/Désactiver les données"],
+ [ 189, "Adresse d unité intérieure"],
+ [ 190, "I/U EEPROM (3ème chiffres)"],
+ [ 191, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 192, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 193, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 194, "I/U EEPROM (11ème chiffres)"],
+ [ 195, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH capacité de sortie"],
+ [ 206, "Mesure du capteur CT (L1)"],
+ [ 207, "Mesure du capteur CT (L2)"],
+ [ 208, "HP forcé FG"],
+ [ 209, "Mesure du capteur CT (L3)"],
+ [ 210, "Activer/Désactiver les données"],
+ [ 211, "Adresse d unité intérieure"],
+ [ 212, "Mode de fonctionnement hybride"],
+ [ 213, "Demande de fonctionnement de chaudière"],
+ [ 214, "Demande DHW chaudière"],
+ [ 215, "Sortie de vanne de dérivation"],
+ [ 216, "BE_COP"],
+ [ 217, "Temp. cible de chauffage hybride"],
+ [ 218, "Temp. cible de chauffage de chaudière"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Température de l eau mélangée"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Activer/Désactiver les données"],
+ [ 226, "Adresse d unité intérieure"],
+ [ 227, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 229, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json b/definitions/X10A/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
new file mode 100644
index 00000000..931b1991
--- /dev/null
+++ b/definitions/X10A/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Fréquence INV (rps)"],
+ [ 66, "Ventilateur 1 (palier)"],
+ [ 67, "Ventilateur 2 (palier)"],
+ [ 68, "Détendeur électronique1 (pls)"],
+ [ 69, "Détendeur électronique2 (pls)"],
+ [ 70, "Détendeur électronique3 (pls)"],
+ [ 71, "Détendeur électronique4 (pls)"],
+ [ 72, "Vanne à 4 voies"],
+ [ 73, "Résistance de carter"],
+ [ 74, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 75, "Vanne de dérivation basse pression (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Température du tuyau d aspiration"],
+ [ 79, "Temp. échangeur de chaleur extérieur"],
+ [ 80, "Temp. tuyau de liquide"],
+ [ 81, "Pression"],
+ [ 82, "Détendeur électronique3 (pls)"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "O/U MPU ID"],
+ [ 85, "HPS activé"],
+ [ 86, "Opération de sauvegarde"],
+ [ 87, "Résistance de carter"],
+ [ 88, "Electrovanne 3"],
+ [ 89, "Electrovanne 2"],
+ [ 90, "Electrovanne 1"],
+ [ 91, "Vanne à 4 voies (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Chute de temp. refoulement"],
+ [ 94, "Pendant l opération d urgence"],
+ [ 95, "Drapeau unité éruption 50 ° C"],
+ [ 96, "Bit puissant (bit de réglage MT)"],
+ [ 97, "Température du port du compresseur"],
+ [ 98, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 99, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 100, "Électrovanne INJ liquide (Y4S)"],
+ [ 101, "Chauffage de plaque inférieure"],
+ [ 102, "Chauffage PHE"],
+ [ 103, "Temp. de refoulement cible"],
+ [ 104, "Température du port cible"],
+ [ 105, "Réglage Monobloc"],
+ [ 106, "Réglage Minichiller"],
+ [ 107, "Réglage MT"],
+ [ 108, "Réglage GSHP"],
+ [ 109, "Réglage Hydro split"],
+ [ 110, "Réglage Altherma LT"],
+ [ 111, "Activer/Désactiver les données"],
+ [ 112, "Adresse d unité intérieure"],
+ [ 113, "I/U mode de fonctionnement"],
+ [ 114, "Thermostat ON/OFF"],
+ [ 115, "Protection antigel"],
+ [ 116, "Mode silencieux"],
+ [ 117, "Protection antigel pour tuyauterie eau"],
+ [ 118, "Code de dysfonctionnement"],
+ [ 119, "Code d erreur détaillé"],
+ [ 120, "Type de dysfonctionnement"],
+ [ 121, "Code de capacité I/U"],
+ [ 122, "Point de réglage de DHW"],
+ [ 123, "Point de réglage LW (principal)"],
+ [ 124, "Interrupteur de débit d eau"],
+ [ 125, "Protecteur thermique (Q1L) BUH"],
+ [ 126, "Protecteur thermique BSH"],
+ [ 127, "Alimentation débit kWh avantageux"],
+ [ 128, "Entrée solaire"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Fonctionnement bivalent"],
+ [ 132, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 133, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 134, "BSH"],
+ [ 135, "Palier1 BUH"],
+ [ 136, "Palier2 BUH"],
+ [ 137, "Vanne d isolement du plancher chauffant"],
+ [ 138, "Fonctionnement de la pompe à eau"],
+ [ 139, "Fonctionnement pompe solaire"],
+ [ 140, "Code d option intérieur"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Activer/Désactiver les données"],
+ [ 145, "Adresse d unité intérieure"],
+ [ 146, "Laisser temp. eau avant BUH (R1T)"],
+ [ 147, "Laisser temp. eau après BUH (R2T)"],
+ [ 148, "Temp. réfrig. côté liquide (R3T)"],
+ [ 149, "Temp. d eau d entrée (R4T)"],
+ [ 150, "Temp. de réservoir de DHW (R5T)"],
+ [ 151, "Temp. ambiante intérieure (R1T)"],
+ [ 152, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 153, "Activer/Désactiver les données"],
+ [ 154, "Adresse d unité intérieure"],
+ [ 155, "Réchauffement ON/OFF"],
+ [ 156, "Stockage éco ON/OFF"],
+ [ 157, "Stockage confort ON/OFF"],
+ [ 158, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 159, "Fonctionnement chauffage espace ON/OFF"],
+ [ 160, "Système OFF"],
+ [ 161, "Non utilisé"],
+ [ 162, "Mode secours (intérieur) activé/désactivé"],
+ [ 163, "Point de réglage LW (ajouté)"],
+ [ 164, "Point de réglage RT"],
+ [ 165, "Rafraîch. entrée RT ext. ajouté"],
+ [ 166, "Chauff. entrée RT ext. ajouté"],
+ [ 167, "Rafraîchissement RT principal"],
+ [ 168, "Chauffage RT principal"],
+ [ 169, "Limite consommation courant 4"],
+ [ 170, "Limite consommation courant 3"],
+ [ 171, "Limite consommation courant 2"],
+ [ 172, "Limite consommation courant 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Chauffage PHE"],
+ [ 178, "Préchauffage Réservoir ON/OFF"],
+ [ 179, "Fonctionnement de pompe de circulation"],
+ [ 180, "Sortie d alarme"],
+ [ 181, "Sortie fonctionnement espace H"],
+ [ 182, "Capteur de débit (l/min)"],
+ [ 183, "Pression d eau"],
+ [ 184, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 186, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 187, "Capteur de pression de réfrigérant"],
+ [ 188, "Activer/Désactiver les données"],
+ [ 189, "Adresse d unité intérieure"],
+ [ 190, "I/U EEPROM (3ème chiffres)"],
+ [ 191, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 192, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 193, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 194, "I/U EEPROM (11ème chiffres)"],
+ [ 195, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH capacité de sortie"],
+ [ 206, "Mesure du capteur CT (L1)"],
+ [ 207, "Mesure du capteur CT (L2)"],
+ [ 208, "HP forcé FG"],
+ [ 209, "Mesure du capteur CT (L3)"],
+ [ 210, "Activer/Désactiver les données"],
+ [ 211, "Adresse d unité intérieure"],
+ [ 212, "Mode de fonctionnement hybride"],
+ [ 213, "Demande de fonctionnement de chaudière"],
+ [ 214, "Demande DHW chaudière"],
+ [ 215, "Sortie de vanne de dérivation"],
+ [ 216, "BE_COP"],
+ [ 217, "Temp. cible de chauffage hybride"],
+ [ 218, "Temp. cible de chauffage de chaudière"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Température de l eau mélangée"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Activer/Désactiver les données"],
+ [ 226, "Adresse d unité intérieure"],
+ [ 227, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 229, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json b/definitions/X10A/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..983f5d3b
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Capteur de pression"],
+ [ 62, "Capteur de pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (10 rpm)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d erreur détaillé"],
+ [ 118, "Type de dysfonctionnement"],
+ [ 119, "Code de capacité I/U"],
+ [ 120, "Point de réglage de DHW"],
+ [ 121, "Point de réglage LW (principal)"],
+ [ 122, "Interrupteur de débit d eau"],
+ [ 123, "Protecteur thermique (Q1L) BUH"],
+ [ 124, "Protecteur thermique BSH"],
+ [ 125, "Alimentation débit kWh avantageux"],
+ [ 126, "Entrée solaire"],
+ [ 127, "Non utilisé"],
+ [ 128, "Non utilisé"],
+ [ 129, "Fonctionnement bivalent"],
+ [ 130, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 131, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 132, "BSH"],
+ [ 133, "Palier1 BUH"],
+ [ 134, "Palier2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Fonctionnement de la pompe à eau"],
+ [ 137, "Fonctionnement pompe solaire"],
+ [ 138, "Code d option intérieur"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Activer/Désactiver les données"],
+ [ 143, "Adresse d unité intérieure"],
+ [ 144, "[HPSU] Tv Temp d amission (R1T)"],
+ [ 145, "[HPSU] Tvbh Temp d amission après Ballon/BUH (R2T)"],
+ [ 146, "Temp. réfrig. côté liquide (R3T)"],
+ [ 147, "[HPSU] Tr Temp retour (R4T)"],
+ [ 148, "Temp. de réservoir de DHW (R5T)"],
+ [ 149, "Temp. ambiante intérieure (R1T)"],
+ [ 150, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 151, "Activer/Désactiver les données"],
+ [ 152, "Adresse d unité intérieure"],
+ [ 153, "Réchauffement ON/OFF"],
+ [ 154, "Stockage éco ON/OFF"],
+ [ 155, "Stockage confort ON/OFF"],
+ [ 156, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 157, "Fonctionnement chauffage espace ON/OFF"],
+ [ 158, "Système OFF"],
+ [ 159, "Non utilisé"],
+ [ 160, "Mode secours (intérieur) activé/désactivé"],
+ [ 161, "Point de réglage LW (ajouté)"],
+ [ 162, "Point de réglage RT"],
+ [ 163, "Rafraîch. entrée RT ext. ajouté"],
+ [ 164, "Chauff. entrée RT ext. ajouté"],
+ [ 165, "Rafraîchissement RT principal"],
+ [ 166, "Chauffage RT principal"],
+ [ 167, "Limite consommation courant 4"],
+ [ 168, "Limite consommation courant 3"],
+ [ 169, "Limite consommation courant 2"],
+ [ 170, "Limite consommation courant 1"],
+ [ 171, "Aucun"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Préchauffage Réservoir ON/OFF"],
+ [ 176, "Fonctionnement de pompe de circulation"],
+ [ 177, "Sortie d alarme"],
+ [ 178, "Sortie fonctionnement espace H"],
+ [ 179, "Capteur de débit (l/min)"],
+ [ 180, "Pression d eau"],
+ [ 181, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 182, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 184, "Capteur de pression de réfrigérant"],
+ [ 185, "Capteur de pression(T)"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Activer/Désactiver les données"],
+ [ 195, "Adresse d unité intérieure"],
+ [ 196, "Mode de fonctionnement hybride"],
+ [ 197, "Demande de fonctionnement de chaudière"],
+ [ 198, "Demande DHW chaudière"],
+ [ 199, "Sortie de vanne de dérivation"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. cible de chauffage hybride"],
+ [ 202, "Temp. cible de chauffage de chaudière"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Température de l eau mélangée"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json b/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
new file mode 100644
index 00000000..5cc6d779
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Capteur de pression"],
+ [ 62, "Capteur de pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (10 rpm)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d erreur détaillé"],
+ [ 118, "Type de dysfonctionnement"],
+ [ 119, "Code de capacité I/U"],
+ [ 120, "Point de réglage de DHW"],
+ [ 121, "Point de réglage LW (principal)"],
+ [ 122, "Interrupteur de débit d eau"],
+ [ 123, "Protecteur thermique (Q1L) BUH"],
+ [ 124, "Protecteur thermique BSH"],
+ [ 125, "Alimentation débit kWh avantageux"],
+ [ 126, "Entrée solaire"],
+ [ 127, "Non utilisé"],
+ [ 128, "Non utilisé"],
+ [ 129, "Fonctionnement bivalent"],
+ [ 130, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 131, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 132, "BSH"],
+ [ 133, "Palier1 BUH"],
+ [ 134, "Palier2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Fonctionnement de la pompe à eau"],
+ [ 137, "Fonctionnement pompe solaire"],
+ [ 138, "Code d option intérieur"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Activer/Désactiver les données"],
+ [ 143, "Adresse d unité intérieure"],
+ [ 144, "Laisser temp. eau avant BUH (R1T)"],
+ [ 145, "Laisser temp. eau après BUH (R2T)"],
+ [ 146, "Temp. réfrig. côté liquide (R3T)"],
+ [ 147, "Temp. d eau d entrée (R4T)"],
+ [ 148, "Temp. de réservoir de DHW (R5T)"],
+ [ 149, "Temp. ambiante intérieure (R1T)"],
+ [ 150, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 151, "Activer/Désactiver les données"],
+ [ 152, "Adresse d unité intérieure"],
+ [ 153, "Réchauffement ON/OFF"],
+ [ 154, "Stockage éco ON/OFF"],
+ [ 155, "Stockage confort ON/OFF"],
+ [ 156, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 157, "Fonctionnement chauffage espace ON/OFF"],
+ [ 158, "Système OFF"],
+ [ 159, "Non utilisé"],
+ [ 160, "Mode secours (intérieur) activé/désactivé"],
+ [ 161, "Point de réglage LW (ajouté)"],
+ [ 162, "Point de réglage RT"],
+ [ 163, "Rafraîch. entrée RT ext. ajouté"],
+ [ 164, "Chauff. entrée RT ext. ajouté"],
+ [ 165, "Rafraîchissement RT principal"],
+ [ 166, "Chauffage RT principal"],
+ [ 167, "Limite consommation courant 4"],
+ [ 168, "Limite consommation courant 3"],
+ [ 169, "Limite consommation courant 2"],
+ [ 170, "Limite consommation courant 1"],
+ [ 171, "Aucun"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Préchauffage Réservoir ON/OFF"],
+ [ 176, "Fonctionnement de pompe de circulation"],
+ [ 177, "Sortie d alarme"],
+ [ 178, "Sortie fonctionnement espace H"],
+ [ 179, "Capteur de débit (l/min)"],
+ [ 180, "Pression d eau"],
+ [ 181, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 182, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 184, "Capteur de pression de réfrigérant"],
+ [ 185, "Capteur de pression(T)"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Activer/Désactiver les données"],
+ [ 195, "Adresse d unité intérieure"],
+ [ 196, "Mode de fonctionnement hybride"],
+ [ 197, "Demande de fonctionnement de chaudière"],
+ [ 198, "Demande DHW chaudière"],
+ [ 199, "Sortie de vanne de dérivation"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. cible de chauffage hybride"],
+ [ 202, "Temp. cible de chauffage de chaudière"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Température de l eau mélangée"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json b/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
new file mode 100644
index 00000000..3669501c
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Température de liquide (R3T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (10 rpm)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies 1"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Capteur de pression(T)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacité de sortie"],
+ [ 201, "Mesure du capteur CT (L1)"],
+ [ 202, "Mesure du capteur CT (L2)"],
+ [ 203, "HP forcé FG"],
+ [ 204, "Mesure du capteur CT (L3)"],
+ [ 205, "Activer/Désactiver les données"],
+ [ 206, "Adresse d unité intérieure"],
+ [ 207, "Mode de fonctionnement hybride"],
+ [ 208, "Demande de fonctionnement de chaudière"],
+ [ 209, "Demande DHW chaudière"],
+ [ 210, "Sortie de vanne de dérivation"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. cible de chauffage hybride"],
+ [ 213, "Temp. cible de chauffage de chaudière"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Température de l eau mélangée"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json b/definitions/X10A/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..f9a4a0eb
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Température de liquide (R3T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Chauffage PHE"],
+ [ 177, "Préchauffage Réservoir ON/OFF"],
+ [ 178, "Fonctionnement de pompe de circulation"],
+ [ 179, "Sortie d alarme"],
+ [ 180, "Sortie fonctionnement espace H"],
+ [ 181, "Capteur de débit (l/min)"],
+ [ 182, "Pression d eau"],
+ [ 183, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 186, "Capteur de pression de réfrigérant"],
+ [ 187, "Capteur de pression(T)"],
+ [ 188, "Activer/Désactiver les données"],
+ [ 189, "Adresse d unité intérieure"],
+ [ 190, "I/U EEPROM (3ème chiffres)"],
+ [ 191, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 192, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 193, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 194, "I/U EEPROM (11ème chiffres)"],
+ [ 195, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "Mesure du capteur CT (L1)"],
+ [ 206, "Mesure du capteur CT (L2)"],
+ [ 207, "HP forcé FG"],
+ [ 208, "Mesure du capteur CT (L3)"],
+ [ 209, "Activer/Désactiver les données"],
+ [ 210, "Adresse d unité intérieure"],
+ [ 211, "Mode de fonctionnement hybride"],
+ [ 212, "Demande de fonctionnement de chaudière"],
+ [ 213, "Demande DHW chaudière"],
+ [ 214, "Sortie de vanne de dérivation"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. cible de chauffage hybride"],
+ [ 217, "Temp. cible de chauffage de chaudière"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Température de l eau mélangée"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activer/Désactiver les données"],
+ [ 225, "Adresse d unité intérieure"],
+ [ 226, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 228, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json b/definitions/X10A/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
new file mode 100644
index 00000000..21e27112
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Température de liquide (R3T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Capteur de pression(T)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacité de sortie"],
+ [ 201, "Mesure du capteur CT (L1)"],
+ [ 202, "Mesure du capteur CT (L2)"],
+ [ 203, "HP forcé FG"],
+ [ 204, "Mesure du capteur CT (L3)"],
+ [ 205, "Activer/Désactiver les données"],
+ [ 206, "Adresse d unité intérieure"],
+ [ 207, "Mode de fonctionnement hybride"],
+ [ 208, "Demande de fonctionnement de chaudière"],
+ [ 209, "Demande DHW chaudière"],
+ [ 210, "Sortie de vanne de dérivation"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. cible de chauffage hybride"],
+ [ 213, "Temp. cible de chauffage de chaudière"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Température de l eau mélangée"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json b/definitions/X10A/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
new file mode 100644
index 00000000..d1f18432
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
@@ -0,0 +1,236 @@
+{
+ "Model": "Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Not translated yet"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "BUH capacité de sortie"],
+ [ 204, "Mesure du capteur CT (L1)"],
+ [ 205, "Mesure du capteur CT (L2)"],
+ [ 206, "HP forcé FG"],
+ [ 207, "Mesure du capteur CT (L3)"],
+ [ 208, "Activer/Désactiver les données"],
+ [ 209, "Adresse d unité intérieure"],
+ [ 210, "Mode de fonctionnement hybride"],
+ [ 211, "Demande de fonctionnement de chaudière"],
+ [ 212, "Demande DHW chaudière"],
+ [ 213, "Sortie de vanne de dérivation"],
+ [ 214, "BE_COP"],
+ [ 215, "Temp. cible de chauffage hybride"],
+ [ 216, "Temp. cible de chauffage de chaudière"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Température de l eau mélangée"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"],
+ [ 223, "Activer/Désactiver les données"],
+ [ 224, "Adresse d unité intérieure"],
+ [ 225, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 226, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 227, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json b/definitions/X10A/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
new file mode 100644
index 00000000..4dcea2ea
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U(R4T)"],
+ [ 49, "Temp. tuyau refoulement(R2T)"],
+ [ 50, "Temp. tuyau d aspiration (R3T)"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur(R5T)"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Soupape de dérivation de gaz chaud (Y3S)"],
+ [ 74, "Vanne de dérivation basse pression (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "Electrovanne 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Chauffage PHE"],
+ [ 177, "Préchauffage Réservoir ON/OFF"],
+ [ 178, "Fonctionnement de pompe de circulation"],
+ [ 179, "Sortie d alarme"],
+ [ 180, "Sortie fonctionnement espace H"],
+ [ 181, "Capteur de débit (l/min)"],
+ [ 182, "Pression d eau"],
+ [ 183, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 185, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 186, "Capteur de pression de réfrigérant"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Mixed water temp.(R7T)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacité de sortie"],
+ [ 205, "Mesure du capteur CT (L1)"],
+ [ 206, "Mesure du capteur CT (L2)"],
+ [ 207, "HP forcé FG"],
+ [ 208, "Mesure du capteur CT (L3)"],
+ [ 209, "Activer/Désactiver les données"],
+ [ 210, "Adresse d unité intérieure"],
+ [ 211, "Mode de fonctionnement hybride"],
+ [ 212, "Demande de fonctionnement de chaudière"],
+ [ 213, "Demande DHW chaudière"],
+ [ 214, "Sortie de vanne de dérivation"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. cible de chauffage hybride"],
+ [ 217, "Temp. cible de chauffage de chaudière"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Température de l eau mélangée"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activer/Désactiver les données"],
+ [ 225, "Adresse d unité intérieure"],
+ [ 226, "Temp d hex de l eau de sortie (modèle hydro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit température de l eau de sortie mixte R1T"],
+ [ 228, "[EKMIK] Bizone kit position de la vanne de mélange M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json b/definitions/X10A/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
new file mode 100644
index 00000000..ccb8330e
--- /dev/null
+++ b/definitions/X10A/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Capteur de pression"],
+ [ 62, "Capteur de pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (10 rpm)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d erreur détaillé"],
+ [ 118, "Type de dysfonctionnement"],
+ [ 119, "Code de capacité I/U"],
+ [ 120, "Point de réglage de DHW"],
+ [ 121, "Point de réglage LW (principal)"],
+ [ 122, "Interrupteur de débit d eau"],
+ [ 123, "Protecteur thermique (Q1L) BUH"],
+ [ 124, "Protecteur thermique BSH"],
+ [ 125, "Alimentation débit kWh avantageux"],
+ [ 126, "Entrée solaire"],
+ [ 127, "Non utilisé"],
+ [ 128, "Non utilisé"],
+ [ 129, "Fonctionnement bivalent"],
+ [ 130, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 131, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 132, "BSH"],
+ [ 133, "Palier1 BUH"],
+ [ 134, "Palier2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Fonctionnement de la pompe à eau"],
+ [ 137, "Fonctionnement pompe solaire"],
+ [ 138, "Code d option intérieur"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Activer/Désactiver les données"],
+ [ 143, "Adresse d unité intérieure"],
+ [ 144, "Laisser temp. eau avant BUH (R1T)"],
+ [ 145, "Laisser temp. eau après BUH (R2T)"],
+ [ 146, "Temp. réfrig. côté liquide (R3T)"],
+ [ 147, "Temp. d eau d entrée (R4T)"],
+ [ 148, "Temp. de réservoir de DHW (R5T)"],
+ [ 149, "Temp. ambiante intérieure (R1T)"],
+ [ 150, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 151, "Activer/Désactiver les données"],
+ [ 152, "Adresse d unité intérieure"],
+ [ 153, "Réchauffement ON/OFF"],
+ [ 154, "Stockage éco ON/OFF"],
+ [ 155, "Stockage confort ON/OFF"],
+ [ 156, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 157, "Fonctionnement chauffage espace ON/OFF"],
+ [ 158, "Système OFF"],
+ [ 159, "Non utilisé"],
+ [ 160, "Mode secours (intérieur) activé/désactivé"],
+ [ 161, "Point de réglage LW (ajouté)"],
+ [ 162, "Point de réglage RT"],
+ [ 163, "Rafraîch. entrée RT ext. ajouté"],
+ [ 164, "Chauff. entrée RT ext. ajouté"],
+ [ 165, "Rafraîchissement RT principal"],
+ [ 166, "Chauffage RT principal"],
+ [ 167, "Limite consommation courant 4"],
+ [ 168, "Limite consommation courant 3"],
+ [ 169, "Limite consommation courant 2"],
+ [ 170, "Limite consommation courant 1"],
+ [ 171, "Aucun"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Préchauffage Réservoir ON/OFF"],
+ [ 176, "Fonctionnement de pompe de circulation"],
+ [ 177, "Sortie d alarme"],
+ [ 178, "Sortie fonctionnement espace H"],
+ [ 179, "Capteur de débit (l/min)"],
+ [ 180, "Pression d eau"],
+ [ 181, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 182, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 184, "Capteur de pression de réfrigérant"],
+ [ 185, "Capteur de pression(T)"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Activer/Désactiver les données"],
+ [ 195, "Adresse d unité intérieure"],
+ [ 196, "Mode de fonctionnement hybride"],
+ [ 197, "Demande de fonctionnement de chaudière"],
+ [ 198, "Demande DHW chaudière"],
+ [ 199, "Sortie de vanne de dérivation"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. cible de chauffage hybride"],
+ [ 202, "Temp. cible de chauffage de chaudière"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Température de l eau mélangée"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(LT_CB_04-08kW Bizone).json b/definitions/X10A/French/Altherma(LT_CB_04-08kW Bizone).json
new file mode 100644
index 00000000..1c3d0a16
--- /dev/null
+++ b/definitions/X10A/French/Altherma(LT_CB_04-08kW Bizone).json
@@ -0,0 +1,222 @@
+{
+ "Model": "Altherma(LT_CB_04-08kW Bizone)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. éch. chaleur O/U"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur"],
+ [ 59, "Temp. tuyau de liquide (R6T)"],
+ [ 60, "Temp. de dissipateur de chaleur"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Interrupteur de débit d eau glycolée"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Non utilisé"],
+ [ 70, "Non utilisé"],
+ [ 71, "Non utilisé"],
+ [ 72, "Non utilisé"],
+ [ 73, "Non utilisé"],
+ [ 74, "Temp. d entrée d eau glycolée"],
+ [ 75, "Temp. de sortie d eau glycolée"],
+ [ 76, "Temp. réfrig. entrée évap."],
+ [ 77, "Temp. réfrig. sortie évap."],
+ [ 78, "Non utilisé"],
+ [ 79, "Non utilisé"],
+ [ 80, "Non utilisé"],
+ [ 81, "Non utilisé"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Fréquence INV (rps)"],
+ [ 84, "Fréquence INV 2 (rps)"],
+ [ 85, "Compresseur STD 1"],
+ [ 86, "Compresseur STD 2"],
+ [ 87, "Ventilateur 1 (palier)"],
+ [ 88, "Ventilateur 2 (palier)"],
+ [ 89, "Détendeur électronique (pls)"],
+ [ 90, "Détendeur électronique2 (pls)"],
+ [ 91, "Détendeur électronique3 (pls)"],
+ [ 92, "Détendeur électronique4 (pls)"],
+ [ 93, "Détendeur électronique5 (pls)"],
+ [ 94, "Vanne à 4 voies 1"],
+ [ 95, "Vanne à 4 voies 2"],
+ [ 96, "Vanne à 4 voies 3"],
+ [ 97, "Vanne à 4 voies 4"],
+ [ 98, "Vanne à 4 voies 5"],
+ [ 99, "Résistance de carter 1"],
+ [ 100, "Résistance de carter 2"],
+ [ 101, "Résistance de carter 3"],
+ [ 102, "Résistance de carter 4"],
+ [ 103, "Electrovanne 1"],
+ [ 104, "Electrovanne 2"],
+ [ 105, "Electrovanne 3"],
+ [ 106, "Electrovanne 4"],
+ [ 107, "Electrovanne 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activer/Désactiver les données"],
+ [ 110, "Adresse d unité intérieure"],
+ [ 111, "I/U mode de fonctionnement"],
+ [ 112, "Thermostat ON/OFF"],
+ [ 113, "Protection antigel"],
+ [ 114, "Mode silencieux"],
+ [ 115, "Protection antigel pour tuyauterie eau"],
+ [ 116, "Code de dysfonctionnement"],
+ [ 117, "Code d erreur détaillé"],
+ [ 118, "Type de dysfonctionnement"],
+ [ 119, "Code de capacité I/U"],
+ [ 120, "Point de réglage de DHW"],
+ [ 121, "Point de réglage LW (principal)"],
+ [ 122, "Interrupteur de débit d eau"],
+ [ 123, "Protecteur thermique (Q1L) BUH"],
+ [ 124, "Protecteur thermique BSH"],
+ [ 125, "Alimentation débit kWh avantageux"],
+ [ 126, "Entrée solaire"],
+ [ 127, "Non utilisé"],
+ [ 128, "Non utilisé"],
+ [ 129, "Fonctionnement bivalent"],
+ [ 130, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 131, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 132, "BSH"],
+ [ 133, "Palier1 BUH"],
+ [ 134, "Palier2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Fonctionnement de la pompe à eau"],
+ [ 137, "Fonctionnement pompe solaire"],
+ [ 138, "Code d option intérieur"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Activer/Désactiver les données"],
+ [ 143, "Adresse d unité intérieure"],
+ [ 144, "Laisser temp. eau avant BUH (R1T)"],
+ [ 145, "Laisser temp. eau après BUH (R2T)"],
+ [ 146, "Temp. réfrig. côté liquide (R3T)"],
+ [ 147, "Temp. d eau d entrée (R4T)"],
+ [ 148, "Temp. de réservoir de DHW (R5T)"],
+ [ 149, "Temp. ambiante intérieure (R1T)"],
+ [ 150, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 151, "Activer/Désactiver les données"],
+ [ 152, "Adresse d unité intérieure"],
+ [ 153, "Réchauffement ON/OFF"],
+ [ 154, "Stockage éco ON/OFF"],
+ [ 155, "Stockage confort ON/OFF"],
+ [ 156, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 157, "Fonctionnement chauffage espace ON/OFF"],
+ [ 158, "Système OFF"],
+ [ 159, "Non utilisé"],
+ [ 160, "Mode secours (intérieur) activé/désactivé"],
+ [ 161, "Point de réglage LW (ajouté)"],
+ [ 162, "Point de réglage RT"],
+ [ 163, "Rafraîch. entrée RT ext. ajouté"],
+ [ 164, "Chauff. entrée RT ext. ajouté"],
+ [ 165, "Rafraîchissement RT principal"],
+ [ 166, "Chauffage RT principal"],
+ [ 167, "Limite consommation courant 4"],
+ [ 168, "Limite consommation courant 3"],
+ [ 169, "Limite consommation courant 2"],
+ [ 170, "Limite consommation courant 1"],
+ [ 171, "Aucun"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Préchauffage Réservoir ON/OFF"],
+ [ 176, "Fonctionnement de pompe de circulation"],
+ [ 177, "Sortie d alarme"],
+ [ 178, "Sortie fonctionnement espace H"],
+ [ 179, "Capteur de débit (l/min)"],
+ [ 180, "Pression d eau"],
+ [ 181, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 182, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Non utilisé"],
+ [ 188, "Non utilisé"],
+ [ 189, "Non utilisé"],
+ [ 190, "Non utilisé"],
+ [ 191, "Non utilisé"],
+ [ 192, "Non utilisé"],
+ [ 193, "Activer/Désactiver les données"],
+ [ 194, "Adresse d unité intérieure"],
+ [ 195, "I/U EEPROM (3ème chiffres)"],
+ [ 196, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 197, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 198, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 199, "I/U EEPROM (11ème chiffres)"],
+ [ 200, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 201, "Activer/Désactiver les données"],
+ [ 202, "Adresse d unité intérieure"],
+ [ 203, "Mode de fonctionnement hybride"],
+ [ 204, "Demande de fonctionnement de chaudière"],
+ [ 205, "Demande DHW chaudière"],
+ [ 206, "Sortie de vanne de dérivation"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. cible de chauffage hybride"],
+ [ 209, "Temp. cible de chauffage de chaudière"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(LT_CB_11-16kW Bizone).json b/definitions/X10A/French/Altherma(LT_CB_11-16kW Bizone).json
new file mode 100644
index 00000000..14a85418
--- /dev/null
+++ b/definitions/X10A/French/Altherma(LT_CB_11-16kW Bizone).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Altherma(LT_CB_11-16kW Bizone)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Temp. de dissipateur de chaleur"],
+ [ 54, "Pression"],
+ [ 55, "Pression(T)"],
+ [ 56, "Non utilisé"],
+ [ 57, "Non utilisé"],
+ [ 58, "Courant primaire INV (A)"],
+ [ 59, "Courant secondaire INV (A)"],
+ [ 60, "Tension (phase N) (V)"],
+ [ 61, "Interrupteur de débit d eau glycolée"],
+ [ 62, "Non utilisé"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Non utilisé"],
+ [ 66, "Non utilisé"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Temp. d entrée d eau glycolée"],
+ [ 70, "Temp. de sortie d eau glycolée"],
+ [ 71, "Temp. réfrig. entrée évap."],
+ [ 72, "Temp. réfrig. sortie évap."],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Non utilisé"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Fréquence INV (rps)"],
+ [ 79, "Fréquence INV 2 (rps)"],
+ [ 80, "Compresseur STD 1"],
+ [ 81, "Compresseur STD 2"],
+ [ 82, "Ventilateur 1 (palier)"],
+ [ 83, "Ventilateur 2 (palier)"],
+ [ 84, "Détendeur électronique1 (pls)"],
+ [ 85, "Détendeur électronique2 (pls)"],
+ [ 86, "Détendeur électronique3 (pls)"],
+ [ 87, "Détendeur électronique4 (pls)"],
+ [ 88, "Détendeur électronique5 (pls)"],
+ [ 89, "Vanne à 4 voies 1"],
+ [ 90, "Vanne à 4 voies 2"],
+ [ 91, "Vanne à 4 voies 3"],
+ [ 92, "Vanne à 4 voies 4"],
+ [ 93, "Vanne à 4 voies 5"],
+ [ 94, "Résistance de carter 1"],
+ [ 95, "Résistance de carter 2"],
+ [ 96, "Résistance de carter 3"],
+ [ 97, "Résistance de carter 4"],
+ [ 98, "SV1 (gaz chaud)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Electrovanne 3"],
+ [ 101, "Electrovanne 4"],
+ [ 102, "Electrovanne 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Activer/Désactiver les données"],
+ [ 105, "Adresse d unité intérieure"],
+ [ 106, "I/U mode de fonctionnement"],
+ [ 107, "Thermostat ON/OFF"],
+ [ 108, "Protection antigel"],
+ [ 109, "Mode silencieux"],
+ [ 110, "Protection antigel pour tuyauterie eau"],
+ [ 111, "Code de dysfonctionnement"],
+ [ 112, "Code d unité intérieure"],
+ [ 113, "Code de capacité I/U"],
+ [ 114, "Point de réglage de DHW"],
+ [ 115, "Point de réglage LW (principal)"],
+ [ 116, "Interrupteur de débit d eau"],
+ [ 117, "BHU protecteur thermique"],
+ [ 118, "Protecteur thermique BSH"],
+ [ 119, "Alimentation débit kWh avantageux"],
+ [ 120, "Entrée solaire"],
+ [ 121, "Non utilisé"],
+ [ 122, "Non utilisé"],
+ [ 123, "Fonctionnement bivalent"],
+ [ 124, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 125, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 126, "BSH"],
+ [ 127, "Palier1 BUH"],
+ [ 128, "Palier2 BUH"],
+ [ 129, "BPH"],
+ [ 130, "Fonctionnement de la pompe à eau"],
+ [ 131, "Fonctionnement pompe solaire"],
+ [ 132, "Code d option intérieur"],
+ [ 133, "I/U Software ID (xx)"],
+ [ 134, "I/U Software ID (yy)"],
+ [ 135, "I/U EEPROM Ver."],
+ [ 136, "Activer/Désactiver les données"],
+ [ 137, "Adresse d unité intérieure"],
+ [ 138, "Laisser temp. eau avant BUH (R1T)"],
+ [ 139, "Laisser temp. eau après BUH (R2T)"],
+ [ 140, "Temp. réfrig. côté liquide (R3T)"],
+ [ 141, "Temp. d eau d entrée (R4T)"],
+ [ 142, "Temp. de réservoir de DHW (R5T)"],
+ [ 143, "Temp. ambiante intérieure (R1T)"],
+ [ 144, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 145, "Activer/Désactiver les données"],
+ [ 146, "Adresse d unité intérieure"],
+ [ 147, "Réchauffement ON/OFF"],
+ [ 148, "Stockage éco ON/OFF"],
+ [ 149, "Stockage confort ON/OFF"],
+ [ 150, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 151, "Fonctionnement chauffage espace ON/OFF"],
+ [ 152, "Système OFF"],
+ [ 153, "Non utilisé"],
+ [ 154, "Mode secours (intérieur) activé/désactivé"],
+ [ 155, "Point de réglage LW (ajouté)"],
+ [ 156, "Point de réglage RT"],
+ [ 157, "Rafraîch. entrée RT ext. ajouté"],
+ [ 158, "Chauff. entrée RT ext. ajouté"],
+ [ 159, "Rafraîchissement RT principal"],
+ [ 160, "Chauffage RT principal"],
+ [ 161, "Limite consommation courant 4"],
+ [ 162, "Limite consommation courant 3"],
+ [ 163, "Limite consommation courant 2"],
+ [ 164, "Limite consommation courant 1"],
+ [ 165, "Aucun"],
+ [ 166, "Non utilisé"],
+ [ 167, "Non utilisé"],
+ [ 168, "Non utilisé"],
+ [ 169, "Préchauffage Réservoir ON/OFF"],
+ [ 170, "Fonctionnement de pompe de circulation"],
+ [ 171, "Sortie d alarme"],
+ [ 172, "Sortie fonctionnement espace H"],
+ [ 173, "Capteur de débit (l/min)"],
+ [ 174, "Pression d eau"],
+ [ 175, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 176, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 177, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 178, "Non utilisé"],
+ [ 179, "Non utilisé"],
+ [ 180, "Non utilisé"],
+ [ 181, "Non utilisé"],
+ [ 182, "Non utilisé"],
+ [ 183, "Non utilisé"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Activer/Désactiver les données"],
+ [ 196, "Adresse d unité intérieure"],
+ [ 197, "Mode de fonctionnement hybride"],
+ [ 198, "Demande de fonctionnement de chaudière"],
+ [ 199, "Demande DHW chaudière"],
+ [ 200, "Sortie de vanne de dérivation"],
+ [ 201, "BE_COP"],
+ [ 202, "Temp. cible de chauffage hybride"],
+ [ 203, "Temp. cible de chauffage de chaudière"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json b/definitions/X10A/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
new file mode 100644
index 00000000..11bc82e6
--- /dev/null
+++ b/definitions/X10A/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. échangeur de chaleur extérieur"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur extérieur"],
+ [ 59, "Temp. tuyau de liquide"],
+ [ 60, "Temp. d ailette"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Temp. d entrée d eau glycolée"],
+ [ 67, "Temp. de sortie d eau glycolée"],
+ [ 68, "Temp. réfrig. entrée évap."],
+ [ 69, "Temp. réfrig. sortie évap."],
+ [ 70, "NextDataGrid"],
+ [ 71, "Fréquence INV (rps)"],
+ [ 72, "Fréquence INV 2 (rps)"],
+ [ 73, "Compresseur STD 1"],
+ [ 74, "Compresseur STD 2"],
+ [ 75, "Ventilateur 1 (palier)"],
+ [ 76, "Ventilateur 2 (palier)"],
+ [ 77, "Détendeur électronique (pls)"],
+ [ 78, "Détendeur électronique2 (pls)"],
+ [ 79, "Détendeur électronique3 (pls)"],
+ [ 80, "Détendeur électronique4 (pls)"],
+ [ 81, "Détendeur électronique5 (pls)"],
+ [ 82, "Vanne à 4 voies"],
+ [ 83, "Vanne à 4 voies 2"],
+ [ 84, "Vanne à 4 voies 3"],
+ [ 85, "Vanne à 4 voies 4"],
+ [ 86, "Vanne à 4 voies 5"],
+ [ 87, "Résistance de carter"],
+ [ 88, "Résistance de carter 2"],
+ [ 89, "Résistance de carter 3"],
+ [ 90, "Résistance de carter 4"],
+ [ 91, "Electrovanne 1"],
+ [ 92, "Electrovanne 2"],
+ [ 93, "Electrovanne 3"],
+ [ 94, "Electrovanne 4"],
+ [ 95, "Electrovanne 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Activer/Désactiver les données"],
+ [ 98, "Adresse d unité intérieure"],
+ [ 99, "I/U mode de fonctionnement"],
+ [ 100, "Thermostat ON/OFF"],
+ [ 101, "Protection antigel"],
+ [ 102, "Mode silencieux"],
+ [ 103, "Protection antigel pour tuyauterie eau"],
+ [ 104, "Code de dysfonctionnement"],
+ [ 105, "Code d unité intérieure"],
+ [ 106, "Code de capacité I/U"],
+ [ 107, "Point de réglage de DHW"],
+ [ 108, "Point de réglage LW (principal)"],
+ [ 109, "Interrupteur de débit d eau"],
+ [ 110, "Protecteur thermique (Q1L) BUH"],
+ [ 111, "Protecteur thermique BSH"],
+ [ 112, "Alimentation débit kWh avantageux"],
+ [ 113, "Entrée solaire"],
+ [ 114, "Non utilisé"],
+ [ 115, "Non utilisé"],
+ [ 116, "Fonctionnement bivalent"],
+ [ 117, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 118, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 119, "BSH"],
+ [ 120, "Palier1 BUH"],
+ [ 121, "Palier2 BUH"],
+ [ 122, "Vanne d isolement du plancher chauffant"],
+ [ 123, "Fonctionnement de la pompe à eau"],
+ [ 124, "Fonctionnement pompe solaire"],
+ [ 125, "Code d option intérieur"],
+ [ 126, "I/U Software ID (xx)"],
+ [ 127, "I/U Software ID (yy)"],
+ [ 128, "I/U EEPROM Ver."],
+ [ 129, "Activer/Désactiver les données"],
+ [ 130, "Adresse d unité intérieure"],
+ [ 131, "Temp. éch. chaleur eau de sortie (R1T)"],
+ [ 132, "Temp. BUH eau de sortie (R2T)"],
+ [ 133, "Temp. réfrig. côté liquide (R3T)"],
+ [ 134, "Temp. d eau d entrée (R4T)"],
+ [ 135, "Temp. de réservoir de DHW (R5T)"],
+ [ 136, "Temp. ambiante intérieure (R1T)"],
+ [ 137, "Activer/Désactiver les données"],
+ [ 138, "Adresse d unité intérieure"],
+ [ 139, "Réchauffement ON/OFF"],
+ [ 140, "Stockage éco ON/OFF"],
+ [ 141, "Stockage confort ON/OFF"],
+ [ 142, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 143, "Fonctionnement chauffage espace ON/OFF"],
+ [ 144, "Système OFF"],
+ [ 145, "Non utilisé"],
+ [ 146, "Mode secours (intérieur) activé/désactivé"],
+ [ 147, "Point de réglage LW (ajouté)"],
+ [ 148, "Point de réglage RT"],
+ [ 149, "Rafraîch. entrée RT ext. ajouté"],
+ [ 150, "Chauff. entrée RT ext. ajouté"],
+ [ 151, "Rafraîchissement RT principal"],
+ [ 152, "Chauffage RT principal"],
+ [ 153, "Limite consommation courant 4"],
+ [ 154, "Limite consommation courant 3"],
+ [ 155, "Limite consommation courant 2"],
+ [ 156, "Limite consommation courant 1"],
+ [ 157, "Aucun"],
+ [ 158, "Non utilisé"],
+ [ 159, "Non utilisé"],
+ [ 160, "Non utilisé"],
+ [ 161, "Préchauffage Réservoir ON/OFF"],
+ [ 162, "Fonctionnement de pompe de circulation"],
+ [ 163, "Sortie d alarme"],
+ [ 164, "Sortie fonctionnement espace H"],
+ [ 165, "Capteur de débit (l/min)"],
+ [ 166, "Pression d eau"],
+ [ 167, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 168, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 169, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 170, "Non utilisé"],
+ [ 171, "Non utilisé"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Non utilisé"],
+ [ 178, "Non utilisé"],
+ [ 179, "Activer/Désactiver les données"],
+ [ 180, "Adresse d unité intérieure"],
+ [ 181, "I/U EEPROM (3ème chiffres)"],
+ [ 182, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 183, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 184, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 185, "I/U EEPROM (11ème chiffres)"],
+ [ 186, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "Mode de fonctionnement hybride"],
+ [ 190, "Demande de fonctionnement de chaudière"],
+ [ 191, "Demande DHW chaudière"],
+ [ 192, "Sortie de vanne de dérivation"],
+ [ 193, "BE_COP"],
+ [ 194, "Temp. cible de chauffage hybride"],
+ [ 195, "Temp. cible de chauffage de chaudière"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json b/definitions/X10A/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
new file mode 100644
index 00000000..5a569b40
--- /dev/null
+++ b/definitions/X10A/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
@@ -0,0 +1,209 @@
+{
+ "Model": "Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Temp. de dissipateur de chaleur"],
+ [ 54, "Pression"],
+ [ 55, "Pression(T)"],
+ [ 56, "Non utilisé"],
+ [ 57, "Non utilisé"],
+ [ 58, "Courant primaire INV (A)"],
+ [ 59, "Courant secondaire INV (A)"],
+ [ 60, "Tension (phase N) (V)"],
+ [ 61, "Interrupteur de débit d eau glycolée"],
+ [ 62, "Non utilisé"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Non utilisé"],
+ [ 66, "Non utilisé"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Temp. d entrée d eau glycolée"],
+ [ 70, "Temp. de sortie d eau glycolée"],
+ [ 71, "Temp. réfrig. entrée évap."],
+ [ 72, "Temp. réfrig. sortie évap."],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Non utilisé"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Fréquence INV (rps)"],
+ [ 79, "Ventilateur 1 (palier)"],
+ [ 80, "Ventilateur 2 (palier)"],
+ [ 81, "Détendeur électronique1 (pls)"],
+ [ 82, "Détendeur électronique2 (pls)"],
+ [ 83, "Vanne à 4 voies 1"],
+ [ 84, "Vanne à 4 voies 2"],
+ [ 85, "Vanne à 4 voies 3"],
+ [ 86, "Vanne à 4 voies 4"],
+ [ 87, "Vanne à 4 voies 5"],
+ [ 88, "Résistance de carter 1"],
+ [ 89, "Résistance de carter 2"],
+ [ 90, "Résistance de carter 3"],
+ [ 91, "Résistance de carter 4"],
+ [ 92, "SV1 (gaz chaud)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Electrovanne 3"],
+ [ 95, "Electrovanne 4"],
+ [ 96, "Electrovanne 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Activer/Désactiver les données"],
+ [ 99, "Adresse d unité intérieure"],
+ [ 100, "I/U mode de fonctionnement"],
+ [ 101, "Thermostat ON/OFF"],
+ [ 102, "Protection antigel"],
+ [ 103, "Mode silencieux"],
+ [ 104, "Protection antigel pour tuyauterie eau"],
+ [ 105, "Code de dysfonctionnement"],
+ [ 106, "Code d unité intérieure"],
+ [ 107, "Code de capacité I/U"],
+ [ 108, "Point de réglage de DHW"],
+ [ 109, "Point de réglage LW (principal)"],
+ [ 110, "Interrupteur de débit d eau"],
+ [ 111, "BHU protecteur thermique"],
+ [ 112, "Protecteur thermique BSH"],
+ [ 113, "Alimentation débit kWh avantageux"],
+ [ 114, "Entrée solaire"],
+ [ 115, "Non utilisé"],
+ [ 116, "Non utilisé"],
+ [ 117, "Fonctionnement bivalent"],
+ [ 118, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 119, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 120, "BSH"],
+ [ 121, "Palier1 BUH"],
+ [ 122, "Palier2 BUH"],
+ [ 123, "BPH"],
+ [ 124, "Fonctionnement de la pompe à eau"],
+ [ 125, "Fonctionnement pompe solaire"],
+ [ 126, "Code d option intérieur"],
+ [ 127, "I/U Software ID (xx)"],
+ [ 128, "I/U Software ID (yy)"],
+ [ 129, "I/U EEPROM Ver."],
+ [ 130, "Activer/Désactiver les données"],
+ [ 131, "Adresse d unité intérieure"],
+ [ 132, "Laisser temp. eau avant BUH (R1T)"],
+ [ 133, "Laisser temp. eau après BUH (R2T)"],
+ [ 134, "Temp. réfrig. côté liquide (R3T)"],
+ [ 135, "Temp. d eau d entrée (R4T)"],
+ [ 136, "Temp. de réservoir de DHW (R5T)"],
+ [ 137, "Temp. ambiante intérieure (R1T)"],
+ [ 138, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 139, "Activer/Désactiver les données"],
+ [ 140, "Adresse d unité intérieure"],
+ [ 141, "Réchauffement ON/OFF"],
+ [ 142, "Stockage éco ON/OFF"],
+ [ 143, "Stockage confort ON/OFF"],
+ [ 144, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 145, "Fonctionnement chauffage espace ON/OFF"],
+ [ 146, "Système OFF"],
+ [ 147, "Non utilisé"],
+ [ 148, "Mode secours (intérieur) activé/désactivé"],
+ [ 149, "Point de réglage LW (ajouté)"],
+ [ 150, "Point de réglage RT"],
+ [ 151, "Rafraîch. entrée RT ext. ajouté"],
+ [ 152, "Chauff. entrée RT ext. ajouté"],
+ [ 153, "Rafraîchissement RT principal"],
+ [ 154, "Chauffage RT principal"],
+ [ 155, "Limite consommation courant 4"],
+ [ 156, "Limite consommation courant 3"],
+ [ 157, "Limite consommation courant 2"],
+ [ 158, "Limite consommation courant 1"],
+ [ 159, "Aucun"],
+ [ 160, "Non utilisé"],
+ [ 161, "Non utilisé"],
+ [ 162, "Non utilisé"],
+ [ 163, "Préchauffage Réservoir ON/OFF"],
+ [ 164, "Fonctionnement de pompe de circulation"],
+ [ 165, "Sortie d alarme"],
+ [ 166, "Sortie fonctionnement espace H"],
+ [ 167, "Capteur de débit (l/min)"],
+ [ 168, "Pression d eau"],
+ [ 169, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 170, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 171, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Non utilisé"],
+ [ 178, "Non utilisé"],
+ [ 179, "Non utilisé"],
+ [ 180, "Non utilisé"],
+ [ 181, "Activer/Désactiver les données"],
+ [ 182, "Adresse d unité intérieure"],
+ [ 183, "I/U EEPROM (3ème chiffres)"],
+ [ 184, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 185, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 186, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 187, "I/U EEPROM (11ème chiffres)"],
+ [ 188, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 189, "Activer/Désactiver les données"],
+ [ 190, "Adresse d unité intérieure"],
+ [ 191, "Mode de fonctionnement hybride"],
+ [ 192, "Demande de fonctionnement de chaudière"],
+ [ 193, "Demande DHW chaudière"],
+ [ 194, "Sortie de vanne de dérivation"],
+ [ 195, "BE_COP"],
+ [ 196, "Temp. cible de chauffage hybride"],
+ [ 197, "Temp. cible de chauffage de chaudière"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/DEFAULT.json b/definitions/X10A/French/DEFAULT.json
new file mode 100644
index 00000000..6d388baa
--- /dev/null
+++ b/definitions/X10A/French/DEFAULT.json
@@ -0,0 +1,147 @@
+{
+ "Model": "DEFAULT",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID"],
+ [ 13, "O/U MPU ID"],
+ [ 14, "Mode de fonctionnement"],
+ [ 15, "Thermostat ON/OFF"],
+ [ 16, "Attente de redémarrage"],
+ [ 17, "Commande de démarrage"],
+ [ 18, "Dégivrage"],
+ [ 19, "Commande de retour d huile"],
+ [ 20, "Opération d égalisation de pression"],
+ [ 21, "Signal de demande"],
+ [ 22, "Contrôle de bruit réduit"],
+ [ 23, "Autre contrôle1"],
+ [ 24, "Autre contrôle2"],
+ [ 25, "Autre contrôle3"],
+ [ 26, "Autre contrôle4"],
+ [ 27, "Autre contrôle5"],
+ [ 28, "Autre contrôle6"],
+ [ 29, "Autre contrôle7"],
+ [ 30, "Autre contrôle8"],
+ [ 31, "Autre contrôle9"],
+ [ 32, "Autre contrôle10"],
+ [ 33, "Autre contrôle11"],
+ [ 34, "Autre contrôle12"],
+ [ 35, "Autre contrôle13"],
+ [ 36, "Autre contrôle14"],
+ [ 37, "Autre contrôle15"],
+ [ 38, "Autre contrôle16"],
+ [ 39, "Type de dysfonctionnement"],
+ [ 40, "Code de dysfonctionnement"],
+ [ 41, "Temp. évap. cible"],
+ [ 42, "Temp. cond. cible"],
+ [ 43, "Chute de temp. refoulement"],
+ [ 44, "Qté réessai de protection de temp. refoulement"],
+ [ 45, "Chute de courant INV comp."],
+ [ 46, "Qté réessai de protection de courant INV. comp."],
+ [ 47, "Contrôle de chute de HP"],
+ [ 48, "Qté réessai de protection HP"],
+ [ 49, "Contrôle de chute de BP"],
+ [ 50, "Qté de réessai de protection de BP"],
+ [ 51, "Autre contrôle"],
+ [ 52, "NextDataGrid"],
+ [ 53, "Temp. air extérieur"],
+ [ 54, "Temp. échangeur de chaleur extérieur"],
+ [ 55, "Temp. tuyau refoulement"],
+ [ 56, "Température du tuyau d aspiration"],
+ [ 57, "Temp. intermédiaire échangeur de chaleur extérieur"],
+ [ 58, "Temp. tuyau de liquide"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Basse pression"],
+ [ 61, "Basse pression(T)"],
+ [ 62, "Données du capteur 9"],
+ [ 63, "Données du capteur 10"],
+ [ 64, "Données du capteur 11"],
+ [ 65, "Courant primaire INV (A)"],
+ [ 66, "Courant secondaire INV (A)"],
+ [ 67, "Temp. ailette INV"],
+ [ 68, "Données du capteur 4"],
+ [ 69, "Données du capteur 5"],
+ [ 70, "Données du capteur 6"],
+ [ 71, "Données du capteur 7"],
+ [ 72, "Données du capteur 8"],
+ [ 73, "Données du capteur 9"],
+ [ 74, "Données du capteur 10"],
+ [ 75, "Données du capteur 11"],
+ [ 76, "NextDataGrid"],
+ [ 77, "Fréquence INV 1 (rps)"],
+ [ 78, "Fréquence INV 2 (rps)"],
+ [ 79, "Compresseur STD 1"],
+ [ 80, "Compresseur STD 2"],
+ [ 81, "Ventilateur 1 (palier)"],
+ [ 82, "Ventilateur 2 (palier)"],
+ [ 83, "Détendeur électronique1 (pls)"],
+ [ 84, "Détendeur électronique2 (pls)"],
+ [ 85, "Vanne à 4 voies 1"],
+ [ 86, "Vanne à 4 voies 2"],
+ [ 87, "Résistance de carter 1"],
+ [ 88, "Résistance de carter 2"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Electrovanne 2"],
+ [ 91, "Electrovanne 3"],
+ [ 92, "Electrovanne 4"],
+ [ 93, "Electrovanne 5"],
+ [ 94, "Electrovanne 6"],
+ [ 95, "Electrovanne 7"],
+ [ 96, "Electrovanne 8"],
+ [ 97, "Electrovanne 9"],
+ [ 98, "Electrovanne 10"],
+ [ 99, "In-Out separator"],
+ [ 100, "Activer/Désactiver les données"],
+ [ 101, "Adresse d unité intérieure"],
+ [ 102, "Mode de fonctionnement intérieur"],
+ [ 103, "Thermostat ON/OFF"],
+ [ 104, "Protection antigel"],
+ [ 105, "Mode silencieux"],
+ [ 106, "Protection antigel pour tuyauterie eau"],
+ [ 107, "Code de dysfonctionnement"],
+ [ 108, "Code d unité intérieure"],
+ [ 109, "Capacité d unité intérieure"],
+ [ 110, "Point de réglage de télécommande"],
+ [ 111, "Point de réglage de sortie H/P"],
+ [ 112, "Interrupteur de débit"],
+ [ 113, "Clixon BUH"],
+ [ 114, "Clixon BSH"],
+ [ 115, "Entrée du tarif HP"],
+ [ 116, "Entrée solaire"],
+ [ 117, "Non utilisé"],
+ [ 118, "Non utilisé"],
+ [ 119, "Fonctionnement bivalent"],
+ [ 120, "Vanne à 3 voies (Froid/Chaud)"],
+ [ 121, "Vanne à 4 voies (Espace/DHW)"],
+ [ 122, "BSH"],
+ [ 123, "BUH1"],
+ [ 124, "BUH2"],
+ [ 125, "Chauffage de plaque inférieure"],
+ [ 126, "Puissance de pompe"],
+ [ 127, "Signal de sortie solaire"],
+ [ 128, "Code d option intérieur"],
+ [ 129, "Adresse de logiciel intérieure"],
+ [ 130, "Version EEPROM intérieure"],
+ [ 131, "Activer/Désactiver les données"],
+ [ 132, "Adresse d unité intérieure"],
+ [ 133, "PHE de sortie(R1T)"],
+ [ 134, "BUH de sortie(R2T)"],
+ [ 135, "Température de liquide (R3T)"],
+ [ 136, "Température d entrée (R4T)"],
+ [ 137, "Température de DHW (R5T)"],
+ [ 138, "Thermistor à télécommande"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json b/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
new file mode 100644
index 00000000..d8c3c07b
--- /dev/null
+++ b/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 4-8kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Température de liquide (R3T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Basse pression"],
+ [ 56, "Basse pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Electrovanne 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Electrovanne 1"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Capteur de pression(T)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacité de sortie"],
+ [ 201, "Mesure du capteur CT (L1)"],
+ [ 202, "Mesure du capteur CT (L2)"],
+ [ 203, "HP forcé FG"],
+ [ 204, "Mesure du capteur CT (L3)"],
+ [ 205, "Activer/Désactiver les données"],
+ [ 206, "Adresse d unité intérieure"],
+ [ 207, "Mode de fonctionnement hybride"],
+ [ 208, "Demande de fonctionnement de chaudière"],
+ [ 209, "Demande DHW chaudière"],
+ [ 210, "Sortie de vanne de dérivation"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. cible de chauffage hybride"],
+ [ 213, "Temp. cible de chauffage de chaudière"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Température de l eau mélangée"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json b/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
new file mode 100644
index 00000000..89eb5654
--- /dev/null
+++ b/definitions/X10A/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 9-16kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Temp. évap. cible"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Temp. de dissipateur de chaleur"],
+ [ 54, "Pression"],
+ [ 55, "Pression(T)"],
+ [ 56, "Non utilisé"],
+ [ 57, "Non utilisé"],
+ [ 58, "Courant primaire INV (A)"],
+ [ 59, "Courant secondaire INV (A)"],
+ [ 60, "Tension (phase N) (V)"],
+ [ 61, "Interrupteur de débit d eau glycolée"],
+ [ 62, "Non utilisé"],
+ [ 63, "Non utilisé"],
+ [ 64, "Non utilisé"],
+ [ 65, "Non utilisé"],
+ [ 66, "Non utilisé"],
+ [ 67, "Non utilisé"],
+ [ 68, "Non utilisé"],
+ [ 69, "Temp. d entrée d eau glycolée"],
+ [ 70, "Temp. de sortie d eau glycolée"],
+ [ 71, "Temp. réfrig. entrée évap."],
+ [ 72, "Temp. réfrig. sortie évap."],
+ [ 73, "Non utilisé"],
+ [ 74, "Non utilisé"],
+ [ 75, "Non utilisé"],
+ [ 76, "Non utilisé"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Fréquence INV (rps)"],
+ [ 79, "Fréquence INV 2 (rps)"],
+ [ 80, "Compresseur STD 1"],
+ [ 81, "Compresseur STD 2"],
+ [ 82, "Ventilateur 1 (palier)"],
+ [ 83, "Ventilateur 2 (palier)"],
+ [ 84, "Détendeur électronique1 (pls)"],
+ [ 85, "Détendeur électronique2 (pls)"],
+ [ 86, "Détendeur électronique3 (pls)"],
+ [ 87, "Détendeur électronique4 (pls)"],
+ [ 88, "Détendeur électronique5 (pls)"],
+ [ 89, "Vanne à 4 voies 1"],
+ [ 90, "Vanne à 4 voies 2"],
+ [ 91, "Vanne à 4 voies 3"],
+ [ 92, "Vanne à 4 voies 4"],
+ [ 93, "Vanne à 4 voies 5"],
+ [ 94, "Résistance de carter 1"],
+ [ 95, "Résistance de carter 2"],
+ [ 96, "Résistance de carter 3"],
+ [ 97, "Résistance de carter 4"],
+ [ 98, "SV1 (gaz chaud)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Electrovanne 3"],
+ [ 101, "Electrovanne 4"],
+ [ 102, "Electrovanne 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Activer/Désactiver les données"],
+ [ 105, "Adresse d unité intérieure"],
+ [ 106, "I/U mode de fonctionnement"],
+ [ 107, "Thermostat ON/OFF"],
+ [ 108, "Protection antigel"],
+ [ 109, "Mode silencieux"],
+ [ 110, "Protection antigel pour tuyauterie eau"],
+ [ 111, "Code de dysfonctionnement"],
+ [ 112, "Code d unité intérieure"],
+ [ 113, "Code de capacité I/U"],
+ [ 114, "Point de réglage de DHW"],
+ [ 115, "Point de réglage LW (principal)"],
+ [ 116, "Interrupteur de débit d eau"],
+ [ 117, "BHU protecteur thermique"],
+ [ 118, "Protecteur thermique BSH"],
+ [ 119, "Alimentation débit kWh avantageux"],
+ [ 120, "Entrée solaire"],
+ [ 121, "Non utilisé"],
+ [ 122, "Non utilisé"],
+ [ 123, "Fonctionnement bivalent"],
+ [ 124, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 125, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 126, "BSH"],
+ [ 127, "Palier1 BUH"],
+ [ 128, "Palier2 BUH"],
+ [ 129, "BPH"],
+ [ 130, "Fonctionnement de la pompe à eau"],
+ [ 131, "Fonctionnement pompe solaire"],
+ [ 132, "Code d option intérieur"],
+ [ 133, "I/U Software ID (xx)"],
+ [ 134, "I/U Software ID (yy)"],
+ [ 135, "I/U EEPROM Ver."],
+ [ 136, "Activer/Désactiver les données"],
+ [ 137, "Adresse d unité intérieure"],
+ [ 138, "Laisser temp. eau avant BUH (R1T)"],
+ [ 139, "Laisser temp. eau après BUH (R2T)"],
+ [ 140, "Temp. réfrig. côté liquide (R3T)"],
+ [ 141, "Temp. d eau d entrée (R4T)"],
+ [ 142, "Temp. de réservoir de DHW (R5T)"],
+ [ 143, "Temp. ambiante intérieure (R1T)"],
+ [ 144, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 145, "Activer/Désactiver les données"],
+ [ 146, "Adresse d unité intérieure"],
+ [ 147, "Réchauffement ON/OFF"],
+ [ 148, "Stockage éco ON/OFF"],
+ [ 149, "Stockage confort ON/OFF"],
+ [ 150, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 151, "Fonctionnement chauffage espace ON/OFF"],
+ [ 152, "Système OFF"],
+ [ 153, "Non utilisé"],
+ [ 154, "Mode secours (intérieur) activé/désactivé"],
+ [ 155, "Point de réglage LW (ajouté)"],
+ [ 156, "Point de réglage RT"],
+ [ 157, "Rafraîch. entrée RT ext. ajouté"],
+ [ 158, "Chauff. entrée RT ext. ajouté"],
+ [ 159, "Rafraîchissement RT principal"],
+ [ 160, "Chauffage RT principal"],
+ [ 161, "Limite consommation courant 4"],
+ [ 162, "Limite consommation courant 3"],
+ [ 163, "Limite consommation courant 2"],
+ [ 164, "Limite consommation courant 1"],
+ [ 165, "Aucun"],
+ [ 166, "Non utilisé"],
+ [ 167, "Non utilisé"],
+ [ 168, "Non utilisé"],
+ [ 169, "Préchauffage Réservoir ON/OFF"],
+ [ 170, "Fonctionnement de pompe de circulation"],
+ [ 171, "Sortie d alarme"],
+ [ 172, "Sortie fonctionnement espace H"],
+ [ 173, "Capteur de débit (l/min)"],
+ [ 174, "Pression d eau"],
+ [ 175, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 176, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 177, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 178, "Non utilisé"],
+ [ 179, "Non utilisé"],
+ [ 180, "Non utilisé"],
+ [ 181, "Non utilisé"],
+ [ 182, "Non utilisé"],
+ [ 183, "Non utilisé"],
+ [ 184, "Non utilisé"],
+ [ 185, "Non utilisé"],
+ [ 186, "Non utilisé"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "I/U EEPROM (3ème chiffres)"],
+ [ 190, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 191, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 192, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 193, "I/U EEPROM (11ème chiffres)"],
+ [ 194, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 195, "Activer/Désactiver les données"],
+ [ 196, "Adresse d unité intérieure"],
+ [ 197, "Mode de fonctionnement hybride"],
+ [ 198, "Demande de fonctionnement de chaudière"],
+ [ 199, "Demande DHW chaudière"],
+ [ 200, "Sortie de vanne de dérivation"],
+ [ 201, "BE_COP"],
+ [ 202, "Temp. cible de chauffage hybride"],
+ [ 203, "Temp. cible de chauffage de chaudière"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json b/definitions/X10A/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
new file mode 100644
index 00000000..67aa1098
--- /dev/null
+++ b/definitions/X10A/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qté de données du capteur"],
+ [ 10, "Qté compresseur INV"],
+ [ 11, "Qté compresseur STD"],
+ [ 12, "Qté de données de ventilateur"],
+ [ 13, "Qté de données de détendeur électronique"],
+ [ 14, "Qté de données de vanne à 4 voies"],
+ [ 15, "Qté de résistance de carter"],
+ [ 16, "Qté électrovanne"],
+ [ 17, "Unités intérieures connectables max."],
+ [ 18, "Qté unité intérieure connectée"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacité O/U (kW)"],
+ [ 22, "Mode de fonctionnement"],
+ [ 23, "Thermostat ON/OFF"],
+ [ 24, "Attente de redémarrage"],
+ [ 25, "Commande de démarrage"],
+ [ 26, "Dégivrage"],
+ [ 27, "Commande de retour d huile"],
+ [ 28, "Opération d égalisation de pression"],
+ [ 29, "Signal de demande"],
+ [ 30, "Contrôle de bruit réduit"],
+ [ 31, "Type de dysfonctionnement"],
+ [ 32, "Code de dysfonctionnement"],
+ [ 33, "Temp. évap. cible"],
+ [ 34, "Temp. cond. cible"],
+ [ 35, "Chute de temp. refoulement"],
+ [ 36, "Qté réessai de protection de temp. refoulement"],
+ [ 37, "Chute de courant INV comp."],
+ [ 38, "Qté réessai de protection de courant INV. comp."],
+ [ 39, "Contrôle de chute de HP"],
+ [ 40, "Qté réessai de protection HP"],
+ [ 41, "Contrôle de chute de BP"],
+ [ 42, "Qté de réessai de protection de BP"],
+ [ 43, "Contrôle de chute temp. ailette"],
+ [ 44, "Qté réessai protection temp. ailette"],
+ [ 45, "Autre contrôle de chute"],
+ [ 46, "Non utilisé"],
+ [ 47, "O/U EEPROM (1ère chiffres)"],
+ [ 48, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 49, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 50, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 51, "O/U EEPROM (10ème chiffres)"],
+ [ 52, "O/U EEPROM (11ème chiffres)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. d air extérieur(R1T)"],
+ [ 55, "Temp. échangeur de chaleur extérieur"],
+ [ 56, "Temp. tuyau refoulement"],
+ [ 57, "Température du tuyau d aspiration"],
+ [ 58, "Temp. intermédiaire échangeur de chaleur extérieur"],
+ [ 59, "Temp. tuyau de liquide"],
+ [ 60, "Temp. d ailette"],
+ [ 61, "Pression"],
+ [ 62, "Pression(T)"],
+ [ 63, "Courant primaire INV (A)"],
+ [ 64, "Courant secondaire INV (A)"],
+ [ 65, "Tension (phase N) (V)"],
+ [ 66, "Temp. d entrée d eau glycolée"],
+ [ 67, "Temp. de sortie d eau glycolée"],
+ [ 68, "Temp. réfrig. entrée évap."],
+ [ 69, "Temp. réfrig. sortie évap."],
+ [ 70, "NextDataGrid"],
+ [ 71, "Fréquence INV (rps)"],
+ [ 72, "Fréquence INV 2 (rps)"],
+ [ 73, "Compresseur STD 1"],
+ [ 74, "Compresseur STD 2"],
+ [ 75, "Ventilateur 1 (palier)"],
+ [ 76, "Ventilateur 2 (palier)"],
+ [ 77, "Détendeur électronique (pls)"],
+ [ 78, "Détendeur électronique2 (pls)"],
+ [ 79, "Détendeur électronique3 (pls)"],
+ [ 80, "Détendeur électronique4 (pls)"],
+ [ 81, "Détendeur électronique5 (pls)"],
+ [ 82, "Vanne à 4 voies"],
+ [ 83, "Vanne à 4 voies 2"],
+ [ 84, "Vanne à 4 voies 3"],
+ [ 85, "Vanne à 4 voies 4"],
+ [ 86, "Vanne à 4 voies 5"],
+ [ 87, "Résistance de carter"],
+ [ 88, "Résistance de carter 2"],
+ [ 89, "Résistance de carter 3"],
+ [ 90, "Résistance de carter 4"],
+ [ 91, "Electrovanne 1"],
+ [ 92, "Electrovanne 2"],
+ [ 93, "Electrovanne 3"],
+ [ 94, "Electrovanne 4"],
+ [ 95, "Electrovanne 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Activer/Désactiver les données"],
+ [ 98, "Adresse d unité intérieure"],
+ [ 99, "I/U mode de fonctionnement"],
+ [ 100, "Thermostat ON/OFF"],
+ [ 101, "Protection antigel"],
+ [ 102, "Mode silencieux"],
+ [ 103, "Protection antigel pour tuyauterie eau"],
+ [ 104, "Code de dysfonctionnement"],
+ [ 105, "Code d unité intérieure"],
+ [ 106, "Code de capacité I/U"],
+ [ 107, "Point de réglage de DHW"],
+ [ 108, "Point de réglage LW (principal)"],
+ [ 109, "Interrupteur de débit d eau"],
+ [ 110, "Protecteur thermique (Q1L) BUH"],
+ [ 111, "Protecteur thermique BSH"],
+ [ 112, "Alimentation débit kWh avantageux"],
+ [ 113, "Entrée solaire"],
+ [ 114, "Non utilisé"],
+ [ 115, "Non utilisé"],
+ [ 116, "Fonctionnement bivalent"],
+ [ 117, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 118, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 119, "BSH"],
+ [ 120, "Palier1 BUH"],
+ [ 121, "Palier2 BUH"],
+ [ 122, "Vanne d isolement du plancher chauffant"],
+ [ 123, "Fonctionnement de la pompe à eau"],
+ [ 124, "Fonctionnement pompe solaire"],
+ [ 125, "Code d option intérieur"],
+ [ 126, "I/U Software ID (xx)"],
+ [ 127, "I/U Software ID (yy)"],
+ [ 128, "I/U EEPROM Ver."],
+ [ 129, "Activer/Désactiver les données"],
+ [ 130, "Adresse d unité intérieure"],
+ [ 131, "Temp. éch. chaleur eau de sortie (R1T)"],
+ [ 132, "Temp. BUH eau de sortie (R2T)"],
+ [ 133, "Temp. réfrig. côté liquide (R3T)"],
+ [ 134, "Temp. d eau d entrée (R4T)"],
+ [ 135, "Temp. de réservoir de DHW (R5T)"],
+ [ 136, "Temp. ambiante intérieure (R1T)"],
+ [ 137, "Activer/Désactiver les données"],
+ [ 138, "Adresse d unité intérieure"],
+ [ 139, "Réchauffement ON/OFF"],
+ [ 140, "Stockage éco ON/OFF"],
+ [ 141, "Stockage confort ON/OFF"],
+ [ 142, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 143, "Fonctionnement chauffage espace ON/OFF"],
+ [ 144, "Système OFF"],
+ [ 145, "Non utilisé"],
+ [ 146, "Mode secours (intérieur) activé/désactivé"],
+ [ 147, "Point de réglage LW (ajouté)"],
+ [ 148, "Point de réglage RT"],
+ [ 149, "Rafraîch. entrée RT ext. ajouté"],
+ [ 150, "Chauff. entrée RT ext. ajouté"],
+ [ 151, "Rafraîchissement RT principal"],
+ [ 152, "Chauffage RT principal"],
+ [ 153, "Limite consommation courant 4"],
+ [ 154, "Limite consommation courant 3"],
+ [ 155, "Limite consommation courant 2"],
+ [ 156, "Limite consommation courant 1"],
+ [ 157, "Aucun"],
+ [ 158, "Non utilisé"],
+ [ 159, "Non utilisé"],
+ [ 160, "Non utilisé"],
+ [ 161, "Préchauffage Réservoir ON/OFF"],
+ [ 162, "Fonctionnement de pompe de circulation"],
+ [ 163, "Sortie d alarme"],
+ [ 164, "Sortie fonctionnement espace H"],
+ [ 165, "Capteur de débit (l/min)"],
+ [ 166, "Pression d eau"],
+ [ 167, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 168, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 169, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 170, "Non utilisé"],
+ [ 171, "Non utilisé"],
+ [ 172, "Non utilisé"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Non utilisé"],
+ [ 176, "Non utilisé"],
+ [ 177, "Non utilisé"],
+ [ 178, "Non utilisé"],
+ [ 179, "Activer/Désactiver les données"],
+ [ 180, "Adresse d unité intérieure"],
+ [ 181, "I/U EEPROM (3ème chiffres)"],
+ [ 182, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 183, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 184, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 185, "I/U EEPROM (11ème chiffres)"],
+ [ 186, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 187, "Activer/Désactiver les données"],
+ [ 188, "Adresse d unité intérieure"],
+ [ 189, "Mode de fonctionnement hybride"],
+ [ 190, "Demande de fonctionnement de chaudière"],
+ [ 191, "Demande DHW chaudière"],
+ [ 192, "Sortie de vanne de dérivation"],
+ [ 193, "BE_COP"],
+ [ 194, "Temp. cible de chauffage hybride"],
+ [ 195, "Temp. cible de chauffage de chaudière"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/French/EKHWET-BAV3(MULTI DHW TANK).json b/definitions/X10A/French/EKHWET-BAV3(MULTI DHW TANK).json
new file mode 100644
index 00000000..43d91d01
--- /dev/null
+++ b/definitions/X10A/French/EKHWET-BAV3(MULTI DHW TANK).json
@@ -0,0 +1,231 @@
+{
+ "Model": "EKHWET-BAV3(MULTI DHW TANK)",
+ "Language": "French",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Type de réfrigérant"],
+ [ 2, "Qté de données du capteur"],
+ [ 3, "Qté compresseur INV"],
+ [ 4, "Qté compresseur STD"],
+ [ 5, "Qté de données de ventilateur"],
+ [ 6, "Qté de données de détendeur électronique"],
+ [ 7, "Qté de données de vanne à 4 voies"],
+ [ 8, "Qté de résistance de carter"],
+ [ 9, "Qté électrovanne"],
+ [ 10, "Unités intérieures connectables max."],
+ [ 11, "Qté unité intérieure connectée"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacité O/U (kW)"],
+ [ 15, "Mode de fonctionnement"],
+ [ 16, "Thermostat ON/OFF"],
+ [ 17, "Attente de redémarrage"],
+ [ 18, "Commande de démarrage"],
+ [ 19, "Dégivrage"],
+ [ 20, "Commande de retour d huile"],
+ [ 21, "Opération d égalisation de pression"],
+ [ 22, "Signal de demande"],
+ [ 23, "Contrôle de bruit réduit"],
+ [ 24, "Type de dysfonctionnement"],
+ [ 25, "Code de dysfonctionnement"],
+ [ 26, "Not translated yet"],
+ [ 27, "Temp. cond. cible"],
+ [ 28, "Chute de temp. refoulement"],
+ [ 29, "Qté réessai de protection de temp. refoulement"],
+ [ 30, "Chute de courant INV comp."],
+ [ 31, "Qté réessai de protection de courant INV. comp."],
+ [ 32, "Contrôle de chute de HP"],
+ [ 33, "Qté réessai de protection HP"],
+ [ 34, "Contrôle de chute de BP"],
+ [ 35, "Qté de réessai de protection de BP"],
+ [ 36, "Contrôle de chute temp. ailette"],
+ [ 37, "Qté réessai protection temp. ailette"],
+ [ 38, "Autre contrôle de chute"],
+ [ 39, "Non utilisé"],
+ [ 40, "O/U EEPROM (1ère chiffres)"],
+ [ 41, "O/U EEPROM (3ème 4ème chiffres)"],
+ [ 42, "O/U EEPROM (5ème 6ème chiffres)"],
+ [ 43, "O/U EEPROM (7ème 8ème chiffres)"],
+ [ 44, "O/U EEPROM (10ème chiffres)"],
+ [ 45, "O/U EEPROM (11ème chiffres)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. d air extérieur(R1T)"],
+ [ 48, "Temp. éch. chaleur O/U"],
+ [ 49, "Temp. tuyau refoulement"],
+ [ 50, "Température du tuyau d aspiration"],
+ [ 51, "Temp. intermédiaire échangeur de chaleur"],
+ [ 52, "Temp. tuyau de liquide (R6T)"],
+ [ 53, "Haute pression"],
+ [ 54, "Haute pression(T)"],
+ [ 55, "Pression"],
+ [ 56, "Pression(T)"],
+ [ 57, "Courant primaire INV (A)"],
+ [ 58, "Courant secondaire INV (A)"],
+ [ 59, "Temp. ailette INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Température de sortie du compresseur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Fréquence INV (rps)"],
+ [ 65, "Ventilateur 1 (palier)"],
+ [ 66, "Ventilateur 2 (palier)"],
+ [ 67, "Détendeur électronique1 (pls)"],
+ [ 68, "Détendeur électronique2 (pls)"],
+ [ 69, "Détendeur électronique3 (pls)"],
+ [ 70, "Détendeur électronique4 (pls)"],
+ [ 71, "Vanne à 4 voies"],
+ [ 72, "Résistance de carter"],
+ [ 73, "Not translated yet"],
+ [ 74, "Not translated yet"],
+ [ 75, "Not translated yet"],
+ [ 76, "In-Out separator"],
+ [ 77, "Température du tuyau d aspiration"],
+ [ 78, "Temp. échangeur de chaleur extérieur"],
+ [ 79, "Temp. tuyau de liquide"],
+ [ 80, "Pression"],
+ [ 81, "Détendeur électronique3 (pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS activé"],
+ [ 85, "Opération de sauvegarde"],
+ [ 86, "Résistance de carter"],
+ [ 87, "Not translated yet"],
+ [ 88, "Not translated yet"],
+ [ 89, "Not translated yet"],
+ [ 90, "Vanne à 4 voies (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Chute de temp. refoulement"],
+ [ 93, "Pendant l opération d urgence"],
+ [ 94, "Drapeau unité éruption 50 ° C"],
+ [ 95, "Bit puissant (bit de réglage MT)"],
+ [ 96, "Température du port du compresseur"],
+ [ 97, "(Données brutes)Température d entrée de l échangeur de chaleur"],
+ [ 98, "(Données brutes)Température de sortie de l échangeur thermique"],
+ [ 99, "Électrovanne INJ liquide (Y4S)"],
+ [ 100, "Chauffage de plaque inférieure"],
+ [ 101, "Chauffage PHE"],
+ [ 102, "Temp. de refoulement cible"],
+ [ 103, "Température du port cible"],
+ [ 104, "Réglage Monobloc"],
+ [ 105, "Réglage Minichiller"],
+ [ 106, "Réglage MT"],
+ [ 107, "Réglage GSHP"],
+ [ 108, "Réglage Hydro split"],
+ [ 109, "Réglage Altherma LT"],
+ [ 110, "Activer/Désactiver les données"],
+ [ 111, "Adresse d unité intérieure"],
+ [ 112, "I/U mode de fonctionnement"],
+ [ 113, "Thermostat ON/OFF"],
+ [ 114, "Protection antigel"],
+ [ 115, "Mode silencieux"],
+ [ 116, "Protection antigel pour tuyauterie eau"],
+ [ 117, "Code de dysfonctionnement"],
+ [ 118, "Code d erreur détaillé"],
+ [ 119, "Type de dysfonctionnement"],
+ [ 120, "Code de capacité I/U"],
+ [ 121, "Point de réglage de DHW"],
+ [ 122, "Point de réglage LW (principal)"],
+ [ 123, "Interrupteur de débit d eau"],
+ [ 124, "Protecteur thermique (Q1L) BUH"],
+ [ 125, "Protecteur thermique BSH"],
+ [ 126, "Alimentation débit kWh avantageux"],
+ [ 127, "Entrée solaire"],
+ [ 128, "Non utilisé"],
+ [ 129, "Non utilisé"],
+ [ 130, "Fonctionnement bivalent"],
+ [ 131, "Vanne à 2 voies (On:Chaud_Off:Froid)"],
+ [ 132, "Vanne à 3 voies (On:DHW_Off:Espace)"],
+ [ 133, "BSH"],
+ [ 134, "Palier1 BUH"],
+ [ 135, "Palier2 BUH"],
+ [ 136, "Vanne d isolement du plancher chauffant"],
+ [ 137, "Fonctionnement de la pompe à eau"],
+ [ 138, "Fonctionnement pompe solaire"],
+ [ 139, "Code d option intérieur"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Activer/Désactiver les données"],
+ [ 144, "Adresse d unité intérieure"],
+ [ 145, "Laisser temp. eau avant BUH (R1T)"],
+ [ 146, "Laisser temp. eau après BUH (R2T)"],
+ [ 147, "Temp. réfrig. côté liquide (R3T)"],
+ [ 148, "Temp. d eau d entrée (R4T)"],
+ [ 149, "Temp. de réservoir de DHW (R5T)"],
+ [ 150, "Temp. ambiante intérieure (R1T)"],
+ [ 151, "Capteur ext. de temp. ambiante intérieure (R6T)"],
+ [ 152, "Activer/Désactiver les données"],
+ [ 153, "Adresse d unité intérieure"],
+ [ 154, "Réchauffement ON/OFF"],
+ [ 155, "Stockage éco ON/OFF"],
+ [ 156, "Stockage confort ON/OFF"],
+ [ 157, "Fonctionnement DHW puissant. ON/OFF"],
+ [ 158, "Fonctionnement chauffage espace ON/OFF"],
+ [ 159, "Système OFF"],
+ [ 160, "Non utilisé"],
+ [ 161, "Mode secours (intérieur) activé/désactivé"],
+ [ 162, "Point de réglage LW (ajouté)"],
+ [ 163, "Point de réglage RT"],
+ [ 164, "Rafraîch. entrée RT ext. ajouté"],
+ [ 165, "Chauff. entrée RT ext. ajouté"],
+ [ 166, "Rafraîchissement RT principal"],
+ [ 167, "Chauffage RT principal"],
+ [ 168, "Limite consommation courant 4"],
+ [ 169, "Limite consommation courant 3"],
+ [ 170, "Limite consommation courant 2"],
+ [ 171, "Limite consommation courant 1"],
+ [ 172, "Aucun"],
+ [ 173, "Non utilisé"],
+ [ 174, "Non utilisé"],
+ [ 175, "Chauffage PHE"],
+ [ 176, "Préchauffage Réservoir ON/OFF"],
+ [ 177, "Fonctionnement de pompe de circulation"],
+ [ 178, "Sortie d alarme"],
+ [ 179, "Sortie fonctionnement espace H"],
+ [ 180, "Capteur de débit (l/min)"],
+ [ 181, "Pression d eau"],
+ [ 182, "Signal de pompe à eau (0:max-100:arrêt)"],
+ [ 183, "[Futur] Mélange vanne à 3 voies 1"],
+ [ 184, "[Futur] Mélange vanne à 3 voies 2"],
+ [ 185, "Capteur de pression de réfrigérant"],
+ [ 186, "Activer/Désactiver les données"],
+ [ 187, "Adresse d unité intérieure"],
+ [ 188, "I/U EEPROM (3ème chiffres)"],
+ [ 189, "I/U EEPROM (4ème 5ème chiffres)"],
+ [ 190, "I/U EEPROM (6ème 7ème chiffres)"],
+ [ 191, "I/U EEPROM (8ème 9ème chiffres)"],
+ [ 192, "I/U EEPROM (11ème chiffres)"],
+ [ 193, "I/U EEPROM (12ème chiffres)(rev.)"],
+ [ 194, "Non utilisé"],
+ [ 195, "Non utilisé"],
+ [ 196, "Non utilisé"],
+ [ 197, "Non utilisé"],
+ [ 198, "Non utilisé"],
+ [ 199, "BUH capacité de sortie"],
+ [ 200, "Mesure du capteur CT (L1)"],
+ [ 201, "Mesure du capteur CT (L2)"],
+ [ 202, "HP forcé FG"],
+ [ 203, "Mesure du capteur CT (L3)"],
+ [ 204, "Activer/Désactiver les données"],
+ [ 205, "Adresse d unité intérieure"],
+ [ 206, "Not translated yet"],
+ [ 207, "Dégivrage"],
+ [ 208, "Mode Powerful"],
+ [ 209, "Demande ECS prioritaire"],
+ [ 210, "Not translated yet"],
+ [ 211, "Add pump"],
+ [ 212, "Main pump"],
+ [ 213, "Not translated yet"],
+ [ 214, "BE_COP"],
+ [ 215, "Temp. cible de chauffage hybride"],
+ [ 216, "Temp. cible de chauffage de chaudière"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Température de l eau mélangée"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/ALTHERMA(HYBRID).json b/definitions/X10A/German/ALTHERMA(HYBRID).json
new file mode 100644
index 00000000..8a3f9326
--- /dev/null
+++ b/definitions/X10A/German/ALTHERMA(HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(HYBRID)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "AG Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "O/U Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp."],
+ [ 60, "Inverter Platinentemperatur"],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 66, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 67, "Spannung (VAC)"],
+ [ 68, "Frostschutz Fluss Schalter"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Frostschutz Einlasstemp."],
+ [ 77, "Frostschutz Auslasstemp."],
+ [ 78, "Kühltemp. Verdampfer Ein"],
+ [ 79, "Kühltemp. Verdampfer Aus"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "Nicht im Einsatz"],
+ [ 83, "Nicht im Einsatz"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Drehzahl Verdichter (U/Sek)"],
+ [ 86, "VDI Frequenz 2 (U/s)"],
+ [ 87, "Verdichter (STD1)"],
+ [ 88, "Verdichter (STD2)"],
+ [ 89, "Ventilator 1 (10 rpm)"],
+ [ 90, "Ventilator 2 (Stufe)"],
+ [ 91, "Expansionsventil_1 (pls)"],
+ [ 92, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 93, "Expansionsventil_3 (pls)"],
+ [ 94, "Expansionsventil_4 (pls)"],
+ [ 95, "Expansionsventil_5 (pls)"],
+ [ 96, "4-Wege-Ventil 1"],
+ [ 97, "4-Wege-Ventil 2"],
+ [ 98, "4-Wege-Ventil 3"],
+ [ 99, "4-Wege-Ventil 4"],
+ [ 100, "4-Wege-Ventil 5"],
+ [ 101, "Ölsumpfheizung VDI 1"],
+ [ 102, "Ölsumpfheizung VDI 2"],
+ [ 103, "Ölsumpfheizung VDI 3"],
+ [ 104, "Ölsumpfheizung 4"],
+ [ 105, "Ölsumpfheizung 5"],
+ [ 106, "Magnetventil 1"],
+ [ 107, "SV (BPH)"],
+ [ 108, "Magnetventil 3"],
+ [ 109, "Magnetventil 4"],
+ [ 110, "Magnetventil 5"],
+ [ 111, "In-Out separator"],
+ [ 112, "Daten Aktivieren/Deaktivieren"],
+ [ 113, "Adresse des Innengeräts"],
+ [ 114, "Betriebsart"],
+ [ 115, "Thermostat EIN/AUS"],
+ [ 116, "Frostschutz"],
+ [ 117, "Schallreduzierter Betrieb"],
+ [ 118, "Frostschutz für Wasserleitung"],
+ [ 119, "Störcode"],
+ [ 120, "Innengerätecode"],
+ [ 121, "I/U Kapazitätscode"],
+ [ 122, "Sollwert Brauchwasser"],
+ [ 123, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 124, "Strömungsschalter (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 126, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 127, "HT/NT Tarif Abschaltung"],
+ [ 128, "Solar Eingang"],
+ [ 129, "Nicht im Einsatz"],
+ [ 130, "Nicht im Einsatz"],
+ [ 131, "Bivalenter Betrieb"],
+ [ 132, "2-Wege-Ventil_Shut Off Valve"],
+ [ 133, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 134, "Heizstab Speicher (BSH)"],
+ [ 135, "Heizstab Stufe 1"],
+ [ 136, "Heizstab Stufe 2"],
+ [ 137, "BPH"],
+ [ 138, "Umwälzpumpe 1 Hauptzone"],
+ [ 139, "Solarpumpe"],
+ [ 140, "IG Optionscode"],
+ [ 141, "Software Hydrobox (xx)"],
+ [ 142, "Software Hydrobox (yy)"],
+ [ 143, "EEPROM Hydrobox Version"],
+ [ 144, "Daten Aktivieren/Deaktivieren"],
+ [ 145, "Adresse des Innengeräts"],
+ [ 146, "Auslass Wasser Wärmetauscher Temp. (R1T)"],
+ [ 147, "Auslass Wasser BUH Temp. (R2T)"],
+ [ 148, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 149, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 150, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 151, "RT Temp."],
+ [ 152, "Außentemperatur oder Fernfühler"],
+ [ 153, "Daten Aktivieren/Deaktivieren"],
+ [ 154, "Adresse des Innengeräts"],
+ [ 155, "Brachwasserbetrieb (DHW)"],
+ [ 156, "Speicher Eco-Mode"],
+ [ 157, "Speicher Kompfort-Mode"],
+ [ 158, "Speicher Power-Mode"],
+ [ 159, "Raumheizbetrieb"],
+ [ 160, "System AUS"],
+ [ 161, "Nicht im Einsatz"],
+ [ 162, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 163, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 164, "Sollwert Raumtemperatur"],
+ [ 165, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 166, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 167, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 168, "Haupt Raumthermostat Eingang Heizen"],
+ [ 169, "Stromverbrauchsgrenze 4"],
+ [ 170, "Stromverbrauchsgrenze 3"],
+ [ 171, "Stromverbrauchsgrenze 2"],
+ [ 172, "Stromverbrauchsgrenze 1"],
+ [ 173, "Keine"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Speicher Vorheizen"],
+ [ 178, "Umwälzpumpe 2 Zusatzzone"],
+ [ 179, "Alarmausgang"],
+ [ 180, "Raum C/H Op. oder BPH"],
+ [ 181, "Durchflussmenge (l/min)"],
+ [ 182, "Wasserdruck"],
+ [ 183, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Nicht im Einsatz"],
+ [ 193, "Nicht im Einsatz"],
+ [ 194, "Nicht im Einsatz"],
+ [ 195, "Daten Aktivieren/Deaktivieren"],
+ [ 196, "Adresse des Innengeräts"],
+ [ 197, "I/U EEPROM (3. Ziffer)"],
+ [ 198, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 199, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 200, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 201, "I/U EEPROM (11. Ziffer)"],
+ [ 202, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 203, "Daten Aktivieren/Deaktivieren"],
+ [ 204, "Adresse des Innengeräts"],
+ [ 205, "Hybridbetrieb"],
+ [ 206, "Gas/Boiler Heizung Anforderung"],
+ [ 207, "Gas/Boiler DHW Anforderung"],
+ [ 208, "Bypassventil Ausgang"],
+ [ 209, "Hybrid Trinkwassererwärmung"],
+ [ 210, "BE_COP"],
+ [ 211, "Hybrid Heizung Solltemp."],
+ [ 212, "Gas/Boiler Heizung Solltemp."],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/ALTHERMA(LT_CA_CB_04-08KW).json b/definitions/X10A/German/ALTHERMA(LT_CA_CB_04-08KW).json
new file mode 100644
index 00000000..10c71995
--- /dev/null
+++ b/definitions/X10A/German/ALTHERMA(LT_CA_CB_04-08KW).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_04-08KW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (Stufe)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Fehlerdetailcode"],
+ [ 118, "Betrieb / Störung"],
+ [ 119, "I/U Kapazitätscode"],
+ [ 120, "Sollwert Brauchwasser"],
+ [ 121, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 122, "Strömungsschalter (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 125, "HT/NT Tarif Abschaltung"],
+ [ 126, "Solar Eingang"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Bivalenter Betrieb"],
+ [ 130, "2-Wege-Ventil_Shut Off Valve"],
+ [ 131, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 132, "Heizstab Speicher (BSH)"],
+ [ 133, "Heizstab Stufe 1"],
+ [ 134, "Heizstab Stufe 2"],
+ [ 135, "BPH"],
+ [ 136, "Umwälzpumpe 1 Hauptzone"],
+ [ 137, "Solarpumpe"],
+ [ 138, "IG Optionscode"],
+ [ 139, "Software Hydrobox (xx)"],
+ [ 140, "Software Hydrobox (yy)"],
+ [ 141, "EEPROM Hydrobox Version"],
+ [ 142, "Daten Aktivieren/Deaktivieren"],
+ [ 143, "Adresse des Innengeräts"],
+ [ 144, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 145, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 146, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 147, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 148, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 149, "IG Luftansaugtemperatur (R1T)"],
+ [ 150, "Ext. Raum-/Außentemperatursensor"],
+ [ 151, "Daten Aktivieren/Deaktivieren"],
+ [ 152, "Adresse des Innengeräts"],
+ [ 153, "Brachwasserbetrieb (DHW)"],
+ [ 154, "Speicher Eco-Mode"],
+ [ 155, "Speicher Kompfort-Mode"],
+ [ 156, "Speicher Power-Mode"],
+ [ 157, "Raumheizbetrieb"],
+ [ 158, "System AUS"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 161, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 162, "Sollwert Raumtemperatur"],
+ [ 163, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 164, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 165, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 166, "Haupt Raumthermostat Eingang Heizen"],
+ [ 167, "Stromverbrauchsgrenze 4"],
+ [ 168, "Stromverbrauchsgrenze 3"],
+ [ 169, "Stromverbrauchsgrenze 2"],
+ [ 170, "Stromverbrauchsgrenze 1"],
+ [ 171, "Keine"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Speicher Vorheizen"],
+ [ 176, "Umwälzpumpe 2 Zusatzzone"],
+ [ 177, "Alarmausgang"],
+ [ 178, "Ausgang Betriebsmeldung"],
+ [ 179, "Durchflussmenge (l/min)"],
+ [ 180, "Wasserdruck"],
+ [ 181, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 182, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Nicht im Einsatz"],
+ [ 193, "Daten Aktivieren/Deaktivieren"],
+ [ 194, "Adresse des Innengeräts"],
+ [ 195, "I/U EEPROM (3. Ziffer)"],
+ [ 196, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 197, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 198, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 199, "I/U EEPROM (11. Ziffer)"],
+ [ 200, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 201, "Daten Aktivieren/Deaktivieren"],
+ [ 202, "Adresse des Innengeräts"],
+ [ 203, "Hybridbetrieb"],
+ [ 204, "Gas/Boiler Heizung Anforderung"],
+ [ 205, "Gas/Boiler DHW Anforderung"],
+ [ 206, "Bypassventil Ausgang"],
+ [ 207, "BE_COP"],
+ [ 208, "Hybrid Heizung Solltemp."],
+ [ 209, "Gas/Boiler Heizung Solltemp."],
+ [ 210, "Zusatzpumpe"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp."],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/ALTHERMA(LT_CA_CB_11-16KW).json b/definitions/X10A/German/ALTHERMA(LT_CA_CB_11-16KW).json
new file mode 100644
index 00000000..5889bc82
--- /dev/null
+++ b/definitions/X10A/German/ALTHERMA(LT_CA_CB_11-16KW).json
@@ -0,0 +1,209 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_11-16KW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Kühlkörpertemp."],
+ [ 54, "Druck"],
+ [ 55, "Druck(T)"],
+ [ 56, "Nicht im Einsatz"],
+ [ 57, "Nicht im Einsatz"],
+ [ 58, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 59, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 60, "Spannung (VAC)"],
+ [ 61, "Frostschutz Fluss Schalter"],
+ [ 62, "Nicht im Einsatz"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "Nicht im Einsatz"],
+ [ 66, "Nicht im Einsatz"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Frostschutz Einlasstemp."],
+ [ 70, "Frostschutz Auslasstemp."],
+ [ 71, "Kühltemp. Verdampfer Ein"],
+ [ 72, "Kühltemp. Verdampfer Aus"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Nicht im Einsatz"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Drehzahl Verdichter (U/Sek)"],
+ [ 79, "Ventilator 1 (Stufe)"],
+ [ 80, "Ventilator 2 (Stufe)"],
+ [ 81, "Expansionsventil_1 (pls)"],
+ [ 82, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 83, "4-Wege-Ventil 1"],
+ [ 84, "4-Wege-Ventil 2"],
+ [ 85, "4-Wege-Ventil 3"],
+ [ 86, "4-Wege-Ventil 4"],
+ [ 87, "4-Wege-Ventil 5"],
+ [ 88, "Ölsumpfheizung VDI 1"],
+ [ 89, "Ölsumpfheizung VDI 2"],
+ [ 90, "Ölsumpfheizung VDI 3"],
+ [ 91, "Ölsumpfheizung 4"],
+ [ 92, "Y3S: MV Heißgaspybass"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Magnetventil 3"],
+ [ 95, "Magnetventil 4"],
+ [ 96, "Magnetventil 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Daten Aktivieren/Deaktivieren"],
+ [ 99, "Adresse des Innengeräts"],
+ [ 100, "Betriebsart"],
+ [ 101, "Thermostat EIN/AUS"],
+ [ 102, "Frostschutz"],
+ [ 103, "Schallreduzierter Betrieb"],
+ [ 104, "Frostschutz für Wasserleitung"],
+ [ 105, "Störcode"],
+ [ 106, "Innengerätecode"],
+ [ 107, "I/U Kapazitätscode"],
+ [ 108, "Sollwert Brauchwasser"],
+ [ 109, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 110, "Strömungsschalter (ON=OK)"],
+ [ 111, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 112, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 113, "HT/NT Tarif Abschaltung"],
+ [ 114, "Solar Eingang"],
+ [ 115, "Nicht im Einsatz"],
+ [ 116, "Nicht im Einsatz"],
+ [ 117, "Bivalenter Betrieb"],
+ [ 118, "2-Wege-Ventil_Shut Off Valve"],
+ [ 119, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 120, "Heizstab Speicher (BSH)"],
+ [ 121, "Heizstab Stufe 1"],
+ [ 122, "Heizstab Stufe 2"],
+ [ 123, "BPH"],
+ [ 124, "Umwälzpumpe 1 Hauptzone"],
+ [ 125, "Solarpumpe"],
+ [ 126, "IG Optionscode"],
+ [ 127, "Software Hydrobox (xx)"],
+ [ 128, "Software Hydrobox (yy)"],
+ [ 129, "EEPROM Hydrobox Version"],
+ [ 130, "Daten Aktivieren/Deaktivieren"],
+ [ 131, "Adresse des Innengeräts"],
+ [ 132, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 133, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 134, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 135, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 136, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 137, "IG Luftansaugtemperatur (R1T)"],
+ [ 138, "Ext. Raum-/Außentemperatursensor"],
+ [ 139, "Daten Aktivieren/Deaktivieren"],
+ [ 140, "Adresse des Innengeräts"],
+ [ 141, "Brachwasserbetrieb (DHW)"],
+ [ 142, "Speicher Eco-Mode"],
+ [ 143, "Speicher Kompfort-Mode"],
+ [ 144, "Speicher Power-Mode"],
+ [ 145, "Raumheizbetrieb"],
+ [ 146, "System AUS"],
+ [ 147, "Nicht im Einsatz"],
+ [ 148, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 149, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 150, "Sollwert Raumtemperatur"],
+ [ 151, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 152, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 153, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 154, "Haupt Raumthermostat Eingang Heizen"],
+ [ 155, "Stromverbrauchsgrenze 4"],
+ [ 156, "Stromverbrauchsgrenze 3"],
+ [ 157, "Stromverbrauchsgrenze 2"],
+ [ 158, "Stromverbrauchsgrenze 1"],
+ [ 159, "Keine"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Nicht im Einsatz"],
+ [ 162, "Nicht im Einsatz"],
+ [ 163, "Speicher Vorheizen"],
+ [ 164, "Umwälzpumpe 2 Zusatzzone"],
+ [ 165, "Alarmausgang"],
+ [ 166, "Ausgang Betriebsmeldung"],
+ [ 167, "Durchflussmenge (l/min)"],
+ [ 168, "Wasserdruck"],
+ [ 169, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 170, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 171, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Nicht im Einsatz"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Nicht im Einsatz"],
+ [ 180, "Nicht im Einsatz"],
+ [ 181, "Daten Aktivieren/Deaktivieren"],
+ [ 182, "Adresse des Innengeräts"],
+ [ 183, "I/U EEPROM (3. Ziffer)"],
+ [ 184, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 185, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 186, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 187, "I/U EEPROM (11. Ziffer)"],
+ [ 188, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 189, "Daten Aktivieren/Deaktivieren"],
+ [ 190, "Adresse des Innengeräts"],
+ [ 191, "Hybridbetrieb"],
+ [ 192, "Gas/Boiler Heizung Anforderung"],
+ [ 193, "Gas/Boiler DHW Anforderung"],
+ [ 194, "Bypassventil Ausgang"],
+ [ 195, "BE_COP"],
+ [ 196, "Hybrid Heizung Solltemp."],
+ [ 197, "Gas/Boiler Heizung Solltemp."],
+ [ 198, "Zusatzpumpe"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp."]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/ALTHERMA(LT_MULTI_DHWHP).json b/definitions/X10A/German/ALTHERMA(LT_MULTI_DHWHP).json
new file mode 100644
index 00000000..9c7c6bb4
--- /dev/null
+++ b/definitions/X10A/German/ALTHERMA(LT_MULTI_DHWHP).json
@@ -0,0 +1,221 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_DHWHP)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (Stufe)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Innengerätecode"],
+ [ 118, "I/U Kapazitätscode"],
+ [ 119, "Sollwert Brauchwasser"],
+ [ 120, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 121, "Strömungsschalter (ON=OK)"],
+ [ 122, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 124, "HT/NT Tarif Abschaltung"],
+ [ 125, "Solar Eingang"],
+ [ 126, "Nicht im Einsatz"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Bivalenter Betrieb"],
+ [ 129, "2-Wege-Ventil_Shut Off Valve"],
+ [ 130, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 131, "Heizstab Speicher (BSH)"],
+ [ 132, "Heizstab Stufe 1"],
+ [ 133, "Heizstab Stufe 2"],
+ [ 134, "Fußbodenkreis Abschaltventil"],
+ [ 135, "Umwälzpumpe 1 Hauptzone"],
+ [ 136, "Solarpumpe"],
+ [ 137, "IG Optionscode"],
+ [ 138, "Software Hydrobox (xx)"],
+ [ 139, "Software Hydrobox (yy)"],
+ [ 140, "EEPROM Hydrobox Version"],
+ [ 141, "Daten Aktivieren/Deaktivieren"],
+ [ 142, "Adresse des Innengeräts"],
+ [ 143, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 144, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 145, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 146, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 147, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 148, "IG Luftansaugtemperatur (R1T)"],
+ [ 149, "Ext. Raum-/Außentemperatursensor"],
+ [ 150, "Daten Aktivieren/Deaktivieren"],
+ [ 151, "Adresse des Innengeräts"],
+ [ 152, "Brachwasserbetrieb (DHW)"],
+ [ 153, "Speicher Eco-Mode"],
+ [ 154, "Speicher Kompfort-Mode"],
+ [ 155, "Speicher Power-Mode"],
+ [ 156, "Raumheizbetrieb"],
+ [ 157, "System AUS"],
+ [ 158, "Nicht im Einsatz"],
+ [ 159, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 160, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 161, "Sollwert Raumtemperatur"],
+ [ 162, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 163, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 164, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 165, "Haupt Raumthermostat Eingang Heizen"],
+ [ 166, "Stromverbrauchsgrenze 4"],
+ [ 167, "Stromverbrauchsgrenze 3"],
+ [ 168, "Stromverbrauchsgrenze 2"],
+ [ 169, "Stromverbrauchsgrenze 1"],
+ [ 170, "Keine"],
+ [ 171, "Abtauverbot ein/aus"],
+ [ 172, "Power-Mode Anforderung"],
+ [ 173, "Trinkwasser Prioritätsanforderung"],
+ [ 174, "Betriebsarten Konflikt"],
+ [ 175, "Umwälzpumpe 2 Zusatzzone"],
+ [ 176, "Alarmausgang"],
+ [ 177, "Ausgang Betriebsmeldung"],
+ [ 178, "Durchflussmenge (l/min)"],
+ [ 179, "Wasserdruck"],
+ [ 180, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 181, "3-Wege-Ventil Mischung 1"],
+ [ 182, "3-Wege-Ventil Mischung 2"],
+ [ 183, "Nicht im Einsatz"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Daten Aktivieren/Deaktivieren"],
+ [ 193, "Adresse des Innengeräts"],
+ [ 194, "I/U EEPROM (3. Ziffer)"],
+ [ 195, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 196, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 197, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 198, "I/U EEPROM (11. Ziffer)"],
+ [ 199, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 200, "Daten Aktivieren/Deaktivieren"],
+ [ 201, "Adresse des Innengeräts"],
+ [ 202, "Hybridbetrieb"],
+ [ 203, "Gas/Boiler Heizung Anforderung"],
+ [ 204, "Gas/Boiler DHW Anforderung"],
+ [ 205, "Bypassventil Ausgang"],
+ [ 206, "BE_COP"],
+ [ 207, "Hybrid Heizung Solltemp."],
+ [ 208, "Gas/Boiler Heizung Solltemp."],
+ [ 209, "Zusatzpumpe"],
+ [ 210, "Main pump"],
+ [ 211, "Mixed water temp."],
+ [ 212, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/ALTHERMA(LT_MULTI_HYBRID).json b/definitions/X10A/German/ALTHERMA(LT_MULTI_HYBRID).json
new file mode 100644
index 00000000..93af6b51
--- /dev/null
+++ b/definitions/X10A/German/ALTHERMA(LT_MULTI_HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_HYBRID)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (Stufe)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Innengerätecode"],
+ [ 118, "I/U Kapazitätscode"],
+ [ 119, "Sollwert Brauchwasser"],
+ [ 120, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 121, "Strömungsschalter (ON=OK)"],
+ [ 122, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 124, "HT/NT Tarif Abschaltung"],
+ [ 125, "Solar Eingang"],
+ [ 126, "Nicht im Einsatz"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Bivalenter Betrieb"],
+ [ 129, "2-Wege-Ventil_Shut Off Valve"],
+ [ 130, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 131, "Heizstab Speicher (BSH)"],
+ [ 132, "Heizstab Stufe 1"],
+ [ 133, "Heizstab Stufe 2"],
+ [ 134, "Fußbodenkreis Abschaltventil"],
+ [ 135, "Umwälzpumpe 1 Hauptzone"],
+ [ 136, "Solarpumpe"],
+ [ 137, "IG Optionscode"],
+ [ 138, "Software Hydrobox (xx)"],
+ [ 139, "Software Hydrobox (yy)"],
+ [ 140, "EEPROM Hydrobox Version"],
+ [ 141, "Daten Aktivieren/Deaktivieren"],
+ [ 142, "Adresse des Innengeräts"],
+ [ 143, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 144, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 145, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 146, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 147, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 148, "IG Luftansaugtemperatur (R1T)"],
+ [ 149, "Ext. Raum-/Außentemperatursensor"],
+ [ 150, "Daten Aktivieren/Deaktivieren"],
+ [ 151, "Adresse des Innengeräts"],
+ [ 152, "Brachwasserbetrieb (DHW)"],
+ [ 153, "Speicher Eco-Mode"],
+ [ 154, "Speicher Kompfort-Mode"],
+ [ 155, "Speicher Power-Mode"],
+ [ 156, "Raumheizbetrieb"],
+ [ 157, "System AUS"],
+ [ 158, "Nicht im Einsatz"],
+ [ 159, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 160, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 161, "Sollwert Raumtemperatur"],
+ [ 162, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 163, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 164, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 165, "Haupt Raumthermostat Eingang Heizen"],
+ [ 166, "Stromverbrauchsgrenze 4"],
+ [ 167, "Stromverbrauchsgrenze 3"],
+ [ 168, "Stromverbrauchsgrenze 2"],
+ [ 169, "Stromverbrauchsgrenze 1"],
+ [ 170, "Keine"],
+ [ 171, "Abtauverbot ein/aus"],
+ [ 172, "Power-Mode Anforderung"],
+ [ 173, "Trinkwasser Prioritätsanforderung"],
+ [ 174, "Betriebsarten Konflikt"],
+ [ 175, "Umwälzpumpe 2 Zusatzzone"],
+ [ 176, "Alarmausgang"],
+ [ 177, "Ausgang Betriebsmeldung"],
+ [ 178, "Durchflussmenge (l/min)"],
+ [ 179, "Wasserdruck"],
+ [ 180, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 181, "3-Wege-Ventil Mischung 1"],
+ [ 182, "3-Wege-Ventil Mischung 2"],
+ [ 183, "Nicht im Einsatz"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Daten Aktivieren/Deaktivieren"],
+ [ 193, "Adresse des Innengeräts"],
+ [ 194, "I/U EEPROM (3. Ziffer)"],
+ [ 195, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 196, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 197, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 198, "I/U EEPROM (11. Ziffer)"],
+ [ 199, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 200, "Daten Aktivieren/Deaktivieren"],
+ [ 201, "Adresse des Innengeräts"],
+ [ 202, "Hybridbetrieb"],
+ [ 203, "Gas/Boiler Heizung Anforderung"],
+ [ 204, "Gas/Boiler DHW Anforderung"],
+ [ 205, "Bypassventil Ausgang"],
+ [ 206, "Hybrid Trinkwassererwärmung"],
+ [ 207, "BE_COP"],
+ [ 208, "Hybrid Heizung Solltemp."],
+ [ 209, "Gas/Boiler Heizung Solltemp."],
+ [ 210, "Zusatzpumpe"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp."],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json b/definitions/X10A/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
new file mode 100644
index 00000000..2f44316f
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 4-8kW Monobloc)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitstemperatur (R3T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Druckausgleich(T)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH Ausgangskapazität"],
+ [ 201, "CT-Sensormessung (L1)"],
+ [ 202, "CT-Sensormessung (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "CT-Sensormessung (L3)"],
+ [ 205, "Daten Aktivieren/Deaktivieren"],
+ [ 206, "Adresse des Innengeräts"],
+ [ 207, "Hybridbetrieb"],
+ [ 208, "Gas/Boiler Heizung Anforderung"],
+ [ 209, "Gas/Boiler DHW Anforderung"],
+ [ 210, "Bypassventil Ausgang"],
+ [ 211, "BE_COP"],
+ [ 212, "Hybrid Heizung Solltemp."],
+ [ 213, "Gas/Boiler Heizung Solltemp."],
+ [ 214, "Zusatzpumpe"],
+ [ 215, "Main pump"],
+ [ 216, "Mischwassertemperatur"],
+ [ 217, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 218, "Ziel Delta T (Heizen) (K)"],
+ [ 219, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json b/definitions/X10A/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
new file mode 100644
index 00000000..0594273f
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
@@ -0,0 +1,232 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 9-16kW Monobloc)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Nicht im Einsatz"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Nicht im Einsatz"],
+ [ 199, "BUH Ausgangskapazität"],
+ [ 200, "CT-Sensormessung (L1)"],
+ [ 201, "CT-Sensormessung (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "CT-Sensormessung (L3)"],
+ [ 204, "Daten Aktivieren/Deaktivieren"],
+ [ 205, "Adresse des Innengeräts"],
+ [ 206, "Hybridbetrieb"],
+ [ 207, "Gas/Boiler Heizung Anforderung"],
+ [ 208, "Gas/Boiler DHW Anforderung"],
+ [ 209, "Bypassventil Ausgang"],
+ [ 210, "BE_COP"],
+ [ 211, "Hybrid Heizung Solltemp."],
+ [ 212, "Gas/Boiler Heizung Solltemp."],
+ [ 213, "Zusatzpumpe"],
+ [ 214, "Main pump"],
+ [ 215, "Mischwassertemperatur"],
+ [ 216, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 217, "Ziel Delta T (Heizen) (K)"],
+ [ 218, "Ziel Delta T (Kühlen) (K)"],
+ [ 219, "Daten Aktivieren/Deaktivieren"],
+ [ 220, "Adresse des Innengeräts"],
+ [ 221, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 222, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 223, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json b/definitions/X10A/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
new file mode 100644
index 00000000..058b8336
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
@@ -0,0 +1,179 @@
+{
+ "Model": "Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "2-Phasen-Thermistor (R4T)"],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Eingabe Frostschutztemp. (R5T)"],
+ [ 52, "Verlassen der Frostschutztemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Rückmeldung der Solepumpe"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 74, "Y2S"],
+ [ 75, "Y3S"],
+ [ 76, "Magnetventil 4"],
+ [ 77, "Magnetventil 5"],
+ [ 78, "In-Out separator"],
+ [ 79, "Daten Aktivieren/Deaktivieren"],
+ [ 80, "Adresse des Innengeräts"],
+ [ 81, "Betriebsart"],
+ [ 82, "Thermostat EIN/AUS"],
+ [ 83, "Frostschutz"],
+ [ 84, "Schallreduzierter Betrieb"],
+ [ 85, "Frostschutz für Wasserleitung"],
+ [ 86, "Störcode"],
+ [ 87, "Fehlerdetailcode"],
+ [ 88, "Betrieb / Störung"],
+ [ 89, "Innengerät Kapazität"],
+ [ 90, "Sollwert Brauchwasser"],
+ [ 91, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 92, "Strömungsschalter (ON=OK)"],
+ [ 93, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 94, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 95, "HT/NT Tarif Abschaltung"],
+ [ 96, "Solar Eingang"],
+ [ 97, "Nicht im Einsatz"],
+ [ 98, "Nicht im Einsatz"],
+ [ 99, "Bivalenter Betrieb"],
+ [ 100, "2-Wege-Ventil_Shut Off Valve"],
+ [ 101, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 102, "Heizstab Speicher (BSH)"],
+ [ 103, "Heizstab Stufe 1"],
+ [ 104, "Heizstab Stufe 2"],
+ [ 105, "Fußbodenkreis Abschaltventil"],
+ [ 106, "Umwälzpumpe 1 Hauptzone"],
+ [ 107, "Solarpumpe"],
+ [ 108, "IG Optionscode"],
+ [ 109, "Software Hydrobox (xx)"],
+ [ 110, "Software Hydrobox (yy)"],
+ [ 111, "EEPROM Hydrobox Version"],
+ [ 112, "Daten Aktivieren/Deaktivieren"],
+ [ 113, "Adresse des Innengeräts"],
+ [ 114, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 115, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 116, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 117, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 118, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 119, "IG Luftansaugtemperatur (R1T)"],
+ [ 120, "Ext. Raum-/Außentemperatursensor"],
+ [ 121, "Daten Aktivieren/Deaktivieren"],
+ [ 122, "Adresse des Innengeräts"],
+ [ 123, "Brachwasserbetrieb (DHW)"],
+ [ 124, "Speicher Eco-Mode"],
+ [ 125, "Speicher Kompfort-Mode"],
+ [ 126, "Speicher Power-Mode"],
+ [ 127, "Raumheizbetrieb"],
+ [ 128, "System AUS"],
+ [ 129, "Nicht im Einsatz"],
+ [ 130, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 131, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 132, "Sollwert Raumtemperatur"],
+ [ 133, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 134, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 135, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 136, "Haupt Raumthermostat Eingang Heizen"],
+ [ 137, "Stromverbrauchsgrenze 4"],
+ [ 138, "Stromverbrauchsgrenze 3"],
+ [ 139, "Stromverbrauchsgrenze 2"],
+ [ 140, "Stromverbrauchsgrenze 1"],
+ [ 141, "Keine"],
+ [ 142, "Nicht im Einsatz"],
+ [ 143, "Nicht im Einsatz"],
+ [ 144, "Heizband PWT"],
+ [ 145, "Speicher Vorheizen"],
+ [ 146, "Umwälzpumpe 2 Zusatzzone"],
+ [ 147, "Alarmausgang"],
+ [ 148, "Ausgang Betriebsmeldung"],
+ [ 149, "Durchflussmenge (l/min)"],
+ [ 150, "Wasserdruck"],
+ [ 151, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 152, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 153, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 154, "Kältemittel-Drucksensor"],
+ [ 155, "Daten Aktivieren/Deaktivieren"],
+ [ 156, "Adresse des Innengeräts"],
+ [ 157, "I/U EEPROM (3. Ziffer)"],
+ [ 158, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 159, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 160, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 161, "I/U EEPROM (11. Ziffer)"],
+ [ 162, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 163, "BUH Ausgangskapazität"],
+ [ 164, "CT-Sensormessung (L1)"],
+ [ 165, "CT-Sensormessung (L2)"],
+ [ 166, "CT-Sensormessung (L3)"],
+ [ 167, "Der HP-Betrieb wurde vom Installer abgebrochen"],
+ [ 168, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 169, "Ziel Delta T (Heizen) (K)"],
+ [ 170, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EGSQH-A series 10kW GEO2).json b/definitions/X10A/German/Altherma(EGSQH-A series 10kW GEO2).json
new file mode 100644
index 00000000..d9a6cbb5
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EGSQH-A series 10kW GEO2).json
@@ -0,0 +1,220 @@
+{
+ "Model": "Altherma(EGSQH-A series 10kW GEO2)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "2-Phasen-Thermistor (R4T)"],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "Saugrohrtemp. (R3T)"],
+ [ 58, "Eingabe Frostschutztemp. (R5T)"],
+ [ 59, "Verlassen der Frostschutztemp. (R6T)"],
+ [ 60, "Kühlkörpertemp. (R10T)"],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 66, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 67, "Spannung (VAC)"],
+ [ 68, "Frostschutz Fluss Schalter"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Frostschutz Einlasstemp."],
+ [ 77, "Frostschutz Auslasstemp."],
+ [ 78, "Kühltemp. Verdampfer Ein"],
+ [ 79, "Kühltemp. Verdampfer Aus"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "Nicht im Einsatz"],
+ [ 83, "Nicht im Einsatz"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Drehzahl Verdichter (U/Sek)"],
+ [ 86, "VDI Frequenz 2 (U/s)"],
+ [ 87, "Verdichter (STD1)"],
+ [ 88, "Verdichter (STD2)"],
+ [ 89, "Ventilator 1 (Stufe)"],
+ [ 90, "Ventilator 2 (Stufe)"],
+ [ 91, "Expansionsventil (pls)"],
+ [ 92, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 93, "Expansionsventil_3 (pls)"],
+ [ 94, "Expansionsventil_4 (pls)"],
+ [ 95, "Expansionsventil_5 (pls)"],
+ [ 96, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 97, "4-Wege-Ventil 2"],
+ [ 98, "4-Wege-Ventil 3"],
+ [ 99, "4-Wege-Ventil 4"],
+ [ 100, "4-Wege-Ventil 5"],
+ [ 101, "Ölsumpfheizung"],
+ [ 102, "Ölsumpfheizung VDI 2"],
+ [ 103, "Ölsumpfheizung VDI 3"],
+ [ 104, "Ölsumpfheizung 4"],
+ [ 105, "SV (Heißgas)"],
+ [ 106, "SV (BPH)"],
+ [ 107, "Magnetventil 3"],
+ [ 108, "Magnetventil 4"],
+ [ 109, "Magnetventil 5"],
+ [ 110, "In-Out separator"],
+ [ 111, "Daten Aktivieren/Deaktivieren"],
+ [ 112, "Adresse des Innengeräts"],
+ [ 113, "Betriebsart"],
+ [ 114, "Thermostat EIN/AUS"],
+ [ 115, "Frostschutz"],
+ [ 116, "Schallreduzierter Betrieb"],
+ [ 117, "Frostschutz für Wasserleitung"],
+ [ 118, "Störcode"],
+ [ 119, "Innengerätecode"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Nicht im Einsatz"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "BPH"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Nicht im Einsatz"],
+ [ 193, "Nicht im Einsatz"],
+ [ 194, "Daten Aktivieren/Deaktivieren"],
+ [ 195, "Adresse des Innengeräts"],
+ [ 196, "I/U EEPROM (3. Ziffer)"],
+ [ 197, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 198, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 199, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 200, "I/U EEPROM (11. Ziffer)"],
+ [ 201, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 202, "Daten Aktivieren/Deaktivieren"],
+ [ 203, "Adresse des Innengeräts"],
+ [ 204, "Hybridbetrieb"],
+ [ 205, "Gas/Boiler Heizung Anforderung"],
+ [ 206, "Gas/Boiler DHW Anforderung"],
+ [ 207, "Bypassventil Ausgang"],
+ [ 208, "BE_COP"],
+ [ 209, "Hybrid Heizung Solltemp."],
+ [ 210, "Gas/Boiler Heizung Solltemp."],
+ [ 211, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json b/definitions/X10A/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
new file mode 100644
index 00000000..21d230ad
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
@@ -0,0 +1,201 @@
+{
+ "Model": "Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Frostschutz Einlasstemp."],
+ [ 61, "Frostschutz Auslasstemp."],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "Kühltemp. Verdampfer Aus"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "Nicht im Einsatz"],
+ [ 66, "Nicht im Einsatz"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "NextDataGrid"],
+ [ 69, "Drehzahl Verdichter (U/Sek)"],
+ [ 70, "Ventilator 1 (Stufe)"],
+ [ 71, "Ventilator 2 (Stufe)"],
+ [ 72, "Expansionsventil_1 (pls)"],
+ [ 73, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 74, "4-Wege-Ventil 1"],
+ [ 75, "4-Wege-Ventil 2"],
+ [ 76, "4-Wege-Ventil 3"],
+ [ 77, "4-Wege-Ventil 4"],
+ [ 78, "4-Wege-Ventil 5"],
+ [ 79, "4-Wege-Ventil 6"],
+ [ 80, "4-Wege-Ventil 7"],
+ [ 81, "4-Wege-Ventil 8"],
+ [ 82, "Ölsumpfheizung"],
+ [ 83, "Y2S-Heißgas-Bypassventil"],
+ [ 84, "Y3S-Niederdruck-Bypassventil"],
+ [ 85, "Eintrittswassertemperatur (DMW)"],
+ [ 86, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 87, "In-Out separator"],
+ [ 88, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 89, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 90, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 91, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 92, "Heizband PWT"],
+ [ 93, "Daten Aktivieren/Deaktivieren"],
+ [ 94, "Adresse des Innengeräts"],
+ [ 95, "Betriebsart"],
+ [ 96, "Thermostat EIN/AUS"],
+ [ 97, "Frostschutz"],
+ [ 98, "Schallreduzierter Betrieb"],
+ [ 99, "Frostschutz für Wasserleitung"],
+ [ 100, "Störcode"],
+ [ 101, "Fehlerdetailcode"],
+ [ 102, "Betrieb / Störung"],
+ [ 103, "I/U Kapazitätscode"],
+ [ 104, "Sollwert Brauchwasser"],
+ [ 105, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 106, "Strömungsschalter (ON=OK)"],
+ [ 107, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 108, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 109, "HT/NT Tarif Abschaltung"],
+ [ 110, "Solar Eingang"],
+ [ 111, "Nicht im Einsatz"],
+ [ 112, "Nicht im Einsatz"],
+ [ 113, "Bivalenter Betrieb"],
+ [ 114, "2-Wege-Ventil_Shut Off Valve"],
+ [ 115, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 116, "Heizstab Speicher (BSH)"],
+ [ 117, "Heizstab Stufe 1"],
+ [ 118, "Heizstab Stufe 2"],
+ [ 119, "Fußbodenkreis Abschaltventil"],
+ [ 120, "Umwälzpumpe 1 Hauptzone"],
+ [ 121, "Solarpumpe"],
+ [ 122, "IG Optionscode"],
+ [ 123, "Software Hydrobox (xx)"],
+ [ 124, "Software Hydrobox (yy)"],
+ [ 125, "EEPROM Hydrobox Version"],
+ [ 126, "Daten Aktivieren/Deaktivieren"],
+ [ 127, "Adresse des Innengeräts"],
+ [ 128, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 129, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 130, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 131, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 132, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 133, "IG Luftansaugtemperatur (R1T)"],
+ [ 134, "Ext. Raum-/Außentemperatursensor"],
+ [ 135, "Daten Aktivieren/Deaktivieren"],
+ [ 136, "Adresse des Innengeräts"],
+ [ 137, "Brachwasserbetrieb (DHW)"],
+ [ 138, "Speicher Eco-Mode"],
+ [ 139, "Speicher Kompfort-Mode"],
+ [ 140, "Speicher Power-Mode"],
+ [ 141, "Raumheizbetrieb"],
+ [ 142, "System AUS"],
+ [ 143, "Nicht im Einsatz"],
+ [ 144, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 145, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 146, "Sollwert Raumtemperatur"],
+ [ 147, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 148, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 149, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 150, "Haupt Raumthermostat Eingang Heizen"],
+ [ 151, "Stromverbrauchsgrenze 4"],
+ [ 152, "Stromverbrauchsgrenze 3"],
+ [ 153, "Stromverbrauchsgrenze 2"],
+ [ 154, "Stromverbrauchsgrenze 1"],
+ [ 155, "Keine"],
+ [ 156, "Nicht im Einsatz"],
+ [ 157, "Nicht im Einsatz"],
+ [ 158, "Heizband PWT"],
+ [ 159, "Speicher Vorheizen"],
+ [ 160, "Umwälzpumpe 2 Zusatzzone"],
+ [ 161, "Alarmausgang"],
+ [ 162, "Ausgang Betriebsmeldung"],
+ [ 163, "Durchflussmenge (l/min)"],
+ [ 164, "Wasserdruck"],
+ [ 165, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 166, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 167, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 168, "Kältemittel-Drucksensor"],
+ [ 169, "Daten Aktivieren/Deaktivieren"],
+ [ 170, "Adresse des Innengeräts"],
+ [ 171, "I/U EEPROM (3. Ziffer)"],
+ [ 172, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 173, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 174, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 175, "I/U EEPROM (11. Ziffer)"],
+ [ 176, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 177, "HP Forced FG"],
+ [ 178, "Daten Aktivieren/Deaktivieren"],
+ [ 179, "Adresse des Innengeräts"],
+ [ 180, "Hybridbetrieb"],
+ [ 181, "Gas/Boiler Heizung Anforderung"],
+ [ 182, "Gas/Boiler DHW Anforderung"],
+ [ 183, "Bypassventil Ausgang"],
+ [ 184, "BE_COP"],
+ [ 185, "Hybrid Heizung Solltemp."],
+ [ 186, "Gas/Boiler Heizung Solltemp."],
+ [ 187, "Zusatzpumpe"],
+ [ 188, "Main pump"],
+ [ 189, "Mischwassertemperatur"],
+ [ 190, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 191, "Ziel Delta T (Heizen) (K)"],
+ [ 192, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json b/definitions/X10A/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
new file mode 100644
index 00000000..30505933
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "[HPSU] Tv vorlauf Temp (R1T)"],
+ [ 146, "[HPSU] Tvbh vorlauf Temp nach Speicher/BUH (R2T)"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Nicht im Einsatz"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Not translated yet"],
+ [ 199, "BUH Ausgangskapazität"],
+ [ 200, "CT-Sensormessung (L1)"],
+ [ 201, "CT-Sensormessung (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "CT-Sensormessung (L3)"],
+ [ 204, "Daten Aktivieren/Deaktivieren"],
+ [ 205, "Adresse des Innengeräts"],
+ [ 206, "Hybridbetrieb"],
+ [ 207, "Gas/Boiler Heizung Anforderung"],
+ [ 208, "Gas/Boiler DHW Anforderung"],
+ [ 209, "Bypassventil Ausgang"],
+ [ 210, "BE_COP"],
+ [ 211, "Hybrid Heizung Solltemp."],
+ [ 212, "Gas/Boiler Heizung Solltemp."],
+ [ 213, "Zusatzpumpe"],
+ [ 214, "Main pump"],
+ [ 215, "Mischwassertemperatur"],
+ [ 216, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 217, "Ziel Delta T (Heizen) (K)"],
+ [ 218, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json b/definitions/X10A/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
new file mode 100644
index 00000000..c2d7e80c
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Nicht im Einsatz"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Nicht im Einsatz"],
+ [ 199, "BUH Ausgangskapazität"],
+ [ 200, "CT-Sensormessung (L1)"],
+ [ 201, "CT-Sensormessung (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "CT-Sensormessung (L3)"],
+ [ 204, "Daten Aktivieren/Deaktivieren"],
+ [ 205, "Adresse des Innengeräts"],
+ [ 206, "Hybridbetrieb"],
+ [ 207, "Gas/Boiler Heizung Anforderung"],
+ [ 208, "Gas/Boiler DHW Anforderung"],
+ [ 209, "Bypassventil Ausgang"],
+ [ 210, "BE_COP"],
+ [ 211, "Hybrid Heizung Solltemp."],
+ [ 212, "Gas/Boiler Heizung Solltemp."],
+ [ 213, "Zusatzpumpe"],
+ [ 214, "Main pump"],
+ [ 215, "Mischwassertemperatur"],
+ [ 216, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 217, "Ziel Delta T (Heizen) (K)"],
+ [ 218, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json b/definitions/X10A/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
new file mode 100644
index 00000000..4169ea0d
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Heizband PWT"],
+ [ 177, "Speicher Vorheizen"],
+ [ 178, "Umwälzpumpe 2 Zusatzzone"],
+ [ 179, "Alarmausgang"],
+ [ 180, "Ausgang Betriebsmeldung"],
+ [ 181, "Durchflussmenge (l/min)"],
+ [ 182, "Wasserdruck"],
+ [ 183, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 186, "Kältemittel-Drucksensor"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH Ausgangskapazität"],
+ [ 205, "CT-Sensormessung (L1)"],
+ [ 206, "CT-Sensormessung (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "CT-Sensormessung (L3)"],
+ [ 209, "Daten Aktivieren/Deaktivieren"],
+ [ 210, "Adresse des Innengeräts"],
+ [ 211, "Hybridbetrieb"],
+ [ 212, "Gas/Boiler Heizung Anforderung"],
+ [ 213, "Gas/Boiler DHW Anforderung"],
+ [ 214, "Bypassventil Ausgang"],
+ [ 215, "BE_COP"],
+ [ 216, "Hybrid Heizung Solltemp."],
+ [ 217, "Gas/Boiler Heizung Solltemp."],
+ [ 218, "Zusatzpumpe"],
+ [ 219, "Main pump"],
+ [ 220, "Mischwassertemperatur"],
+ [ 221, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 222, "Ziel Delta T (Heizen) (K)"],
+ [ 223, "Ziel Delta T (Kühlen) (K)"],
+ [ 224, "Daten Aktivieren/Deaktivieren"],
+ [ 225, "Adresse des Innengeräts"],
+ [ 226, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 228, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json b/definitions/X10A/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
new file mode 100644
index 00000000..5ececc19
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Heizband PWT"],
+ [ 177, "Speicher Vorheizen"],
+ [ 178, "Umwälzpumpe 2 Zusatzzone"],
+ [ 179, "Alarmausgang"],
+ [ 180, "Ausgang Betriebsmeldung"],
+ [ 181, "Durchflussmenge (l/min)"],
+ [ 182, "Wasserdruck"],
+ [ 183, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 186, "Kältemittel-Drucksensor"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH Ausgangskapazität"],
+ [ 205, "CT-Sensormessung (L1)"],
+ [ 206, "CT-Sensormessung (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "CT-Sensormessung (L3)"],
+ [ 209, "Daten Aktivieren/Deaktivieren"],
+ [ 210, "Adresse des Innengeräts"],
+ [ 211, "Hybridbetrieb"],
+ [ 212, "Gas/Boiler Heizung Anforderung"],
+ [ 213, "Gas/Boiler DHW Anforderung"],
+ [ 214, "Bypassventil Ausgang"],
+ [ 215, "BE_COP"],
+ [ 216, "Hybrid Heizung Solltemp."],
+ [ 217, "Gas/Boiler Heizung Solltemp."],
+ [ 218, "Zusatzpumpe"],
+ [ 219, "Main pump"],
+ [ 220, "Mischwassertemperatur"],
+ [ 221, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 222, "Ziel Delta T (Heizen) (K)"],
+ [ 223, "Ziel Delta T (Kühlen) (K)"],
+ [ 224, "Daten Aktivieren/Deaktivieren"],
+ [ 225, "Adresse des Innengeräts"],
+ [ 226, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 228, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json b/definitions/X10A/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
new file mode 100644
index 00000000..ef8ecc44
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Drehzahl Verdichter (U/Sek)"],
+ [ 66, "Ventilator 1 (Stufe)"],
+ [ 67, "Ventilator 2 (Stufe)"],
+ [ 68, "Expansionsventil_1 (pls)"],
+ [ 69, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 70, "Expansionsventil_3 (pls)"],
+ [ 71, "Expansionsventil_4 (pls)"],
+ [ 72, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 73, "Ölsumpfheizung"],
+ [ 74, "Y3S-Heißgas-Bypassventil"],
+ [ 75, "Y2S-Niederdruck-Bypassventil"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Ansaugleitungstemperatur"],
+ [ 79, "AG Wärmetauschertemp."],
+ [ 80, "Flüssigkeitsleitungstemp."],
+ [ 81, "Druck"],
+ [ 82, "Expansionsventil_3 (pls)"],
+ [ 83, "AG Software ID"],
+ [ 84, "AG Software ID"],
+ [ 85, "HPS aktiviert"],
+ [ 86, "Betrieb absichern"],
+ [ 87, "Ölsumpfheizung"],
+ [ 88, "Magnetventil 3"],
+ [ 89, "Magnetventil 2"],
+ [ 90, "Magnetventil 1"],
+ [ 91, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 92, "52C Output"],
+ [ 93, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 94, "Aktiver Notlauf"],
+ [ 95, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 96, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 97, "Verdichtertemperatur"],
+ [ 98, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 99, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 100, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 101, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 102, "Heizband PWT"],
+ [ 103, "Ziel-Verdichtungsendtemperatur"],
+ [ 104, "Zielporttemperatur"],
+ [ 105, "Monobloc-Einstellung"],
+ [ 106, "Minichiller-Einstellung"],
+ [ 107, "MT-Einstellung"],
+ [ 108, "GSHP-Einstellung"],
+ [ 109, "Hydro split-Einstellung"],
+ [ 110, "Altherma LT-Einstellung"],
+ [ 111, "Daten Aktivieren/Deaktivieren"],
+ [ 112, "Adresse des Innengeräts"],
+ [ 113, "Betriebsart"],
+ [ 114, "Thermostat EIN/AUS"],
+ [ 115, "Frostschutz"],
+ [ 116, "Schallreduzierter Betrieb"],
+ [ 117, "Frostschutz für Wasserleitung"],
+ [ 118, "Störcode"],
+ [ 119, "Fehlerdetailcode"],
+ [ 120, "Betrieb / Störung"],
+ [ 121, "I/U Kapazitätscode"],
+ [ 122, "Sollwert Brauchwasser"],
+ [ 123, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 124, "Strömungsschalter (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 126, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 127, "HT/NT Tarif Abschaltung"],
+ [ 128, "Solar Eingang"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Bivalenter Betrieb"],
+ [ 132, "2-Wege-Ventil_Shut Off Valve"],
+ [ 133, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 134, "Heizstab Speicher (BSH)"],
+ [ 135, "Heizstab Stufe 1"],
+ [ 136, "Heizstab Stufe 2"],
+ [ 137, "Fußbodenkreis Abschaltventil"],
+ [ 138, "Umwälzpumpe 1 Hauptzone"],
+ [ 139, "Solarpumpe"],
+ [ 140, "IG Optionscode"],
+ [ 141, "Software Hydrobox (xx)"],
+ [ 142, "Software Hydrobox (yy)"],
+ [ 143, "EEPROM Hydrobox Version"],
+ [ 144, "Daten Aktivieren/Deaktivieren"],
+ [ 145, "Adresse des Innengeräts"],
+ [ 146, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 147, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 148, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 149, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 150, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 151, "IG Luftansaugtemperatur (R1T)"],
+ [ 152, "Ext. Raum-/Außentemperatursensor"],
+ [ 153, "Daten Aktivieren/Deaktivieren"],
+ [ 154, "Adresse des Innengeräts"],
+ [ 155, "Brachwasserbetrieb (DHW)"],
+ [ 156, "Speicher Eco-Mode"],
+ [ 157, "Speicher Kompfort-Mode"],
+ [ 158, "Speicher Power-Mode"],
+ [ 159, "Raumheizbetrieb"],
+ [ 160, "System AUS"],
+ [ 161, "Nicht im Einsatz"],
+ [ 162, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 163, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 164, "Sollwert Raumtemperatur"],
+ [ 165, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 166, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 167, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 168, "Haupt Raumthermostat Eingang Heizen"],
+ [ 169, "Stromverbrauchsgrenze 4"],
+ [ 170, "Stromverbrauchsgrenze 3"],
+ [ 171, "Stromverbrauchsgrenze 2"],
+ [ 172, "Stromverbrauchsgrenze 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Heizband PWT"],
+ [ 178, "Speicher Vorheizen"],
+ [ 179, "Umwälzpumpe 2 Zusatzzone"],
+ [ 180, "Alarmausgang"],
+ [ 181, "Ausgang Betriebsmeldung"],
+ [ 182, "Durchflussmenge (l/min)"],
+ [ 183, "Wasserdruck"],
+ [ 184, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 186, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 187, "Kältemittel-Drucksensor"],
+ [ 188, "Daten Aktivieren/Deaktivieren"],
+ [ 189, "Adresse des Innengeräts"],
+ [ 190, "I/U EEPROM (3. Ziffer)"],
+ [ 191, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 192, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 193, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 194, "I/U EEPROM (11. Ziffer)"],
+ [ 195, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH Ausgangskapazität"],
+ [ 206, "CT-Sensormessung (L1)"],
+ [ 207, "CT-Sensormessung (L2)"],
+ [ 208, "HP Forced FG"],
+ [ 209, "CT-Sensormessung (L3)"],
+ [ 210, "Daten Aktivieren/Deaktivieren"],
+ [ 211, "Adresse des Innengeräts"],
+ [ 212, "Hybridbetrieb"],
+ [ 213, "Gas/Boiler Heizung Anforderung"],
+ [ 214, "Gas/Boiler DHW Anforderung"],
+ [ 215, "Bypassventil Ausgang"],
+ [ 216, "BE_COP"],
+ [ 217, "Hybrid Heizung Solltemp."],
+ [ 218, "Gas/Boiler Heizung Solltemp."],
+ [ 219, "Zusatzpumpe"],
+ [ 220, "Main pump"],
+ [ 221, "Mischwassertemperatur"],
+ [ 222, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 223, "Ziel Delta T (Heizen) (K)"],
+ [ 224, "Ziel Delta T (Kühlen) (K)"],
+ [ 225, "Daten Aktivieren/Deaktivieren"],
+ [ 226, "Adresse des Innengeräts"],
+ [ 227, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 229, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json b/definitions/X10A/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
new file mode 100644
index 00000000..350a4554
--- /dev/null
+++ b/definitions/X10A/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Drehzahl Verdichter (U/Sek)"],
+ [ 66, "Ventilator 1 (Stufe)"],
+ [ 67, "Ventilator 2 (Stufe)"],
+ [ 68, "Expansionsventil_1 (pls)"],
+ [ 69, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 70, "Expansionsventil_3 (pls)"],
+ [ 71, "Expansionsventil_4 (pls)"],
+ [ 72, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 73, "Ölsumpfheizung"],
+ [ 74, "Y3S-Heißgas-Bypassventil"],
+ [ 75, "Y2S-Niederdruck-Bypassventil"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Ansaugleitungstemperatur"],
+ [ 79, "AG Wärmetauschertemp."],
+ [ 80, "Flüssigkeitsleitungstemp."],
+ [ 81, "Druck"],
+ [ 82, "Expansionsventil_3 (pls)"],
+ [ 83, "AG Software ID"],
+ [ 84, "AG Software ID"],
+ [ 85, "HPS aktiviert"],
+ [ 86, "Betrieb absichern"],
+ [ 87, "Ölsumpfheizung"],
+ [ 88, "Magnetventil 3"],
+ [ 89, "Magnetventil 2"],
+ [ 90, "Magnetventil 1"],
+ [ 91, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 92, "52C Output"],
+ [ 93, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 94, "Aktiver Notlauf"],
+ [ 95, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 96, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 97, "Verdichtertemperatur"],
+ [ 98, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 99, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 100, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 101, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 102, "Heizband PWT"],
+ [ 103, "Ziel-Verdichtungsendtemperatur"],
+ [ 104, "Zielporttemperatur"],
+ [ 105, "Monobloc-Einstellung"],
+ [ 106, "Minichiller-Einstellung"],
+ [ 107, "MT-Einstellung"],
+ [ 108, "GSHP-Einstellung"],
+ [ 109, "Hydro split-Einstellung"],
+ [ 110, "Altherma LT-Einstellung"],
+ [ 111, "Daten Aktivieren/Deaktivieren"],
+ [ 112, "Adresse des Innengeräts"],
+ [ 113, "Betriebsart"],
+ [ 114, "Thermostat EIN/AUS"],
+ [ 115, "Frostschutz"],
+ [ 116, "Schallreduzierter Betrieb"],
+ [ 117, "Frostschutz für Wasserleitung"],
+ [ 118, "Störcode"],
+ [ 119, "Fehlerdetailcode"],
+ [ 120, "Betrieb / Störung"],
+ [ 121, "I/U Kapazitätscode"],
+ [ 122, "Sollwert Brauchwasser"],
+ [ 123, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 124, "Strömungsschalter (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 126, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 127, "HT/NT Tarif Abschaltung"],
+ [ 128, "Solar Eingang"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Bivalenter Betrieb"],
+ [ 132, "2-Wege-Ventil_Shut Off Valve"],
+ [ 133, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 134, "Heizstab Speicher (BSH)"],
+ [ 135, "Heizstab Stufe 1"],
+ [ 136, "Heizstab Stufe 2"],
+ [ 137, "Fußbodenkreis Abschaltventil"],
+ [ 138, "Umwälzpumpe 1 Hauptzone"],
+ [ 139, "Solarpumpe"],
+ [ 140, "IG Optionscode"],
+ [ 141, "Software Hydrobox (xx)"],
+ [ 142, "Software Hydrobox (yy)"],
+ [ 143, "EEPROM Hydrobox Version"],
+ [ 144, "Daten Aktivieren/Deaktivieren"],
+ [ 145, "Adresse des Innengeräts"],
+ [ 146, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 147, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 148, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 149, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 150, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 151, "IG Luftansaugtemperatur (R1T)"],
+ [ 152, "Ext. Raum-/Außentemperatursensor"],
+ [ 153, "Daten Aktivieren/Deaktivieren"],
+ [ 154, "Adresse des Innengeräts"],
+ [ 155, "Brachwasserbetrieb (DHW)"],
+ [ 156, "Speicher Eco-Mode"],
+ [ 157, "Speicher Kompfort-Mode"],
+ [ 158, "Speicher Power-Mode"],
+ [ 159, "Raumheizbetrieb"],
+ [ 160, "System AUS"],
+ [ 161, "Nicht im Einsatz"],
+ [ 162, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 163, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 164, "Sollwert Raumtemperatur"],
+ [ 165, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 166, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 167, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 168, "Haupt Raumthermostat Eingang Heizen"],
+ [ 169, "Stromverbrauchsgrenze 4"],
+ [ 170, "Stromverbrauchsgrenze 3"],
+ [ 171, "Stromverbrauchsgrenze 2"],
+ [ 172, "Stromverbrauchsgrenze 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Heizband PWT"],
+ [ 178, "Speicher Vorheizen"],
+ [ 179, "Umwälzpumpe 2 Zusatzzone"],
+ [ 180, "Alarmausgang"],
+ [ 181, "Ausgang Betriebsmeldung"],
+ [ 182, "Durchflussmenge (l/min)"],
+ [ 183, "Wasserdruck"],
+ [ 184, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 186, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 187, "Kältemittel-Drucksensor"],
+ [ 188, "Daten Aktivieren/Deaktivieren"],
+ [ 189, "Adresse des Innengeräts"],
+ [ 190, "I/U EEPROM (3. Ziffer)"],
+ [ 191, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 192, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 193, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 194, "I/U EEPROM (11. Ziffer)"],
+ [ 195, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH Ausgangskapazität"],
+ [ 206, "CT-Sensormessung (L1)"],
+ [ 207, "CT-Sensormessung (L2)"],
+ [ 208, "HP Forced FG"],
+ [ 209, "CT-Sensormessung (L3)"],
+ [ 210, "Daten Aktivieren/Deaktivieren"],
+ [ 211, "Adresse des Innengeräts"],
+ [ 212, "Hybridbetrieb"],
+ [ 213, "Gas/Boiler Heizung Anforderung"],
+ [ 214, "Gas/Boiler DHW Anforderung"],
+ [ 215, "Bypassventil Ausgang"],
+ [ 216, "BE_COP"],
+ [ 217, "Hybrid Heizung Solltemp."],
+ [ 218, "Gas/Boiler Heizung Solltemp."],
+ [ 219, "Zusatzpumpe"],
+ [ 220, "Main pump"],
+ [ 221, "Mischwassertemperatur"],
+ [ 222, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 223, "Ziel Delta T (Heizen) (K)"],
+ [ 224, "Ziel Delta T (Kühlen) (K)"],
+ [ 225, "Daten Aktivieren/Deaktivieren"],
+ [ 226, "Adresse des Innengeräts"],
+ [ 227, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 229, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json b/definitions/X10A/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..8b11dd8f
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druckausgleich"],
+ [ 62, "Druckausgleich(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (10 rpm)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Fehlerdetailcode"],
+ [ 118, "Betrieb / Störung"],
+ [ 119, "I/U Kapazitätscode"],
+ [ 120, "Sollwert Brauchwasser"],
+ [ 121, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 122, "Strömungsschalter (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 125, "HT/NT Tarif Abschaltung"],
+ [ 126, "Solar Eingang"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Bivalenter Betrieb"],
+ [ 130, "2-Wege-Ventil_Shut Off Valve"],
+ [ 131, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 132, "Heizstab Speicher (BSH)"],
+ [ 133, "Heizstab Stufe 1"],
+ [ 134, "Heizstab Stufe 2"],
+ [ 135, "BPH"],
+ [ 136, "Umwälzpumpe 1 Hauptzone"],
+ [ 137, "Solarpumpe"],
+ [ 138, "IG Optionscode"],
+ [ 139, "Software Hydrobox (xx)"],
+ [ 140, "Software Hydrobox (yy)"],
+ [ 141, "EEPROM Hydrobox Version"],
+ [ 142, "Daten Aktivieren/Deaktivieren"],
+ [ 143, "Adresse des Innengeräts"],
+ [ 144, "[HPSU] Tv vorlauf Temp (R1T)"],
+ [ 145, "[HPSU] Tvbh vorlauf Temp nach Speicher/BUH (R2T)"],
+ [ 146, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 147, "[HPSU] Tr rücklauf Temp (R4T)"],
+ [ 148, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 149, "IG Luftansaugtemperatur (R1T)"],
+ [ 150, "Ext. Raum-/Außentemperatursensor"],
+ [ 151, "Daten Aktivieren/Deaktivieren"],
+ [ 152, "Adresse des Innengeräts"],
+ [ 153, "Brachwasserbetrieb (DHW)"],
+ [ 154, "Speicher Eco-Mode"],
+ [ 155, "Speicher Kompfort-Mode"],
+ [ 156, "Speicher Power-Mode"],
+ [ 157, "Raumheizbetrieb"],
+ [ 158, "System AUS"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 161, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 162, "Sollwert Raumtemperatur"],
+ [ 163, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 164, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 165, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 166, "Haupt Raumthermostat Eingang Heizen"],
+ [ 167, "Stromverbrauchsgrenze 4"],
+ [ 168, "Stromverbrauchsgrenze 3"],
+ [ 169, "Stromverbrauchsgrenze 2"],
+ [ 170, "Stromverbrauchsgrenze 1"],
+ [ 171, "Keine"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Speicher Vorheizen"],
+ [ 176, "Umwälzpumpe 2 Zusatzzone"],
+ [ 177, "Alarmausgang"],
+ [ 178, "Ausgang Betriebsmeldung"],
+ [ 179, "Durchflussmenge (l/min)"],
+ [ 180, "Wasserdruck"],
+ [ 181, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 182, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 184, "Kältemittel-Drucksensor"],
+ [ 185, "Druckausgleich(T)"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Daten Aktivieren/Deaktivieren"],
+ [ 195, "Adresse des Innengeräts"],
+ [ 196, "Hybridbetrieb"],
+ [ 197, "Gas/Boiler Heizung Anforderung"],
+ [ 198, "Gas/Boiler DHW Anforderung"],
+ [ 199, "Bypassventil Ausgang"],
+ [ 200, "BE_COP"],
+ [ 201, "Hybrid Heizung Solltemp."],
+ [ 202, "Gas/Boiler Heizung Solltemp."],
+ [ 203, "Zusatzpumpe"],
+ [ 204, "Main pump"],
+ [ 205, "Mischwassertemperatur"],
+ [ 206, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 207, "Ziel Delta T (Heizen) (K)"],
+ [ 208, "Ziel Delta T (Kühlen) (K)"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json b/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
new file mode 100644
index 00000000..84a424f1
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druckausgleich"],
+ [ 62, "Druckausgleich(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (10 rpm)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Fehlerdetailcode"],
+ [ 118, "Betrieb / Störung"],
+ [ 119, "I/U Kapazitätscode"],
+ [ 120, "Sollwert Brauchwasser"],
+ [ 121, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 122, "Strömungsschalter (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 125, "HT/NT Tarif Abschaltung"],
+ [ 126, "Solar Eingang"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Bivalenter Betrieb"],
+ [ 130, "2-Wege-Ventil_Shut Off Valve"],
+ [ 131, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 132, "Heizstab Speicher (BSH)"],
+ [ 133, "Heizstab Stufe 1"],
+ [ 134, "Heizstab Stufe 2"],
+ [ 135, "BPH"],
+ [ 136, "Umwälzpumpe 1 Hauptzone"],
+ [ 137, "Solarpumpe"],
+ [ 138, "IG Optionscode"],
+ [ 139, "Software Hydrobox (xx)"],
+ [ 140, "Software Hydrobox (yy)"],
+ [ 141, "EEPROM Hydrobox Version"],
+ [ 142, "Daten Aktivieren/Deaktivieren"],
+ [ 143, "Adresse des Innengeräts"],
+ [ 144, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 145, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 146, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 147, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 148, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 149, "IG Luftansaugtemperatur (R1T)"],
+ [ 150, "Ext. Raum-/Außentemperatursensor"],
+ [ 151, "Daten Aktivieren/Deaktivieren"],
+ [ 152, "Adresse des Innengeräts"],
+ [ 153, "Brachwasserbetrieb (DHW)"],
+ [ 154, "Speicher Eco-Mode"],
+ [ 155, "Speicher Kompfort-Mode"],
+ [ 156, "Speicher Power-Mode"],
+ [ 157, "Raumheizbetrieb"],
+ [ 158, "System AUS"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 161, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 162, "Sollwert Raumtemperatur"],
+ [ 163, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 164, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 165, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 166, "Haupt Raumthermostat Eingang Heizen"],
+ [ 167, "Stromverbrauchsgrenze 4"],
+ [ 168, "Stromverbrauchsgrenze 3"],
+ [ 169, "Stromverbrauchsgrenze 2"],
+ [ 170, "Stromverbrauchsgrenze 1"],
+ [ 171, "Keine"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Speicher Vorheizen"],
+ [ 176, "Umwälzpumpe 2 Zusatzzone"],
+ [ 177, "Alarmausgang"],
+ [ 178, "Ausgang Betriebsmeldung"],
+ [ 179, "Durchflussmenge (l/min)"],
+ [ 180, "Wasserdruck"],
+ [ 181, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 182, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 184, "Kältemittel-Drucksensor"],
+ [ 185, "Druckausgleich(T)"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Daten Aktivieren/Deaktivieren"],
+ [ 195, "Adresse des Innengeräts"],
+ [ 196, "Hybridbetrieb"],
+ [ 197, "Gas/Boiler Heizung Anforderung"],
+ [ 198, "Gas/Boiler DHW Anforderung"],
+ [ 199, "Bypassventil Ausgang"],
+ [ 200, "BE_COP"],
+ [ 201, "Hybrid Heizung Solltemp."],
+ [ 202, "Gas/Boiler Heizung Solltemp."],
+ [ 203, "Zusatzpumpe"],
+ [ 204, "Main pump"],
+ [ 205, "Mischwassertemperatur"],
+ [ 206, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 207, "Ziel Delta T (Heizen) (K)"],
+ [ 208, "Ziel Delta T (Kühlen) (K)"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json b/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
new file mode 100644
index 00000000..feb0f3ea
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitstemperatur (R3T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (10 rpm)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "4-Wege-Ventil 1"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Druckausgleich(T)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH Ausgangskapazität"],
+ [ 201, "CT-Sensormessung (L1)"],
+ [ 202, "CT-Sensormessung (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "CT-Sensormessung (L3)"],
+ [ 205, "Daten Aktivieren/Deaktivieren"],
+ [ 206, "Adresse des Innengeräts"],
+ [ 207, "Hybridbetrieb"],
+ [ 208, "Gas/Boiler Heizung Anforderung"],
+ [ 209, "Gas/Boiler DHW Anforderung"],
+ [ 210, "Bypassventil Ausgang"],
+ [ 211, "BE_COP"],
+ [ 212, "Hybrid Heizung Solltemp."],
+ [ 213, "Gas/Boiler Heizung Solltemp."],
+ [ 214, "Zusatzpumpe"],
+ [ 215, "Main pump"],
+ [ 216, "Mischwassertemperatur"],
+ [ 217, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 218, "Ziel Delta T (Heizen) (K)"],
+ [ 219, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json b/definitions/X10A/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..0c5e82b4
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitstemperatur (R3T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Heizband PWT"],
+ [ 177, "Speicher Vorheizen"],
+ [ 178, "Umwälzpumpe 2 Zusatzzone"],
+ [ 179, "Alarmausgang"],
+ [ 180, "Ausgang Betriebsmeldung"],
+ [ 181, "Durchflussmenge (l/min)"],
+ [ 182, "Wasserdruck"],
+ [ 183, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 186, "Kältemittel-Drucksensor"],
+ [ 187, "Druckausgleich(T)"],
+ [ 188, "Daten Aktivieren/Deaktivieren"],
+ [ 189, "Adresse des Innengeräts"],
+ [ 190, "I/U EEPROM (3. Ziffer)"],
+ [ 191, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 192, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 193, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 194, "I/U EEPROM (11. Ziffer)"],
+ [ 195, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "CT-Sensormessung (L1)"],
+ [ 206, "CT-Sensormessung (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "CT-Sensormessung (L3)"],
+ [ 209, "Daten Aktivieren/Deaktivieren"],
+ [ 210, "Adresse des Innengeräts"],
+ [ 211, "Hybridbetrieb"],
+ [ 212, "Gas/Boiler Heizung Anforderung"],
+ [ 213, "Gas/Boiler DHW Anforderung"],
+ [ 214, "Bypassventil Ausgang"],
+ [ 215, "BE_COP"],
+ [ 216, "Hybrid Heizung Solltemp."],
+ [ 217, "Gas/Boiler Heizung Solltemp."],
+ [ 218, "Zusatzpumpe"],
+ [ 219, "Main pump"],
+ [ 220, "Mischwassertemperatur"],
+ [ 221, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 222, "Ziel Delta T (Heizen) (K)"],
+ [ 223, "Ziel Delta T (Kühlen) (K)"],
+ [ 224, "Daten Aktivieren/Deaktivieren"],
+ [ 225, "Adresse des Innengeräts"],
+ [ 226, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 228, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json b/definitions/X10A/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
new file mode 100644
index 00000000..26f10df5
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitstemperatur (R3T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Druckausgleich(T)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH Ausgangskapazität"],
+ [ 201, "CT-Sensormessung (L1)"],
+ [ 202, "CT-Sensormessung (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "CT-Sensormessung (L3)"],
+ [ 205, "Daten Aktivieren/Deaktivieren"],
+ [ 206, "Adresse des Innengeräts"],
+ [ 207, "Hybridbetrieb"],
+ [ 208, "Gas/Boiler Heizung Anforderung"],
+ [ 209, "Gas/Boiler DHW Anforderung"],
+ [ 210, "Bypassventil Ausgang"],
+ [ 211, "BE_COP"],
+ [ 212, "Hybrid Heizung Solltemp."],
+ [ 213, "Gas/Boiler Heizung Solltemp."],
+ [ 214, "Zusatzpumpe"],
+ [ 215, "Main pump"],
+ [ 216, "Mischwassertemperatur"],
+ [ 217, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 218, "Ziel Delta T (Heizen) (K)"],
+ [ 219, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json b/definitions/X10A/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
new file mode 100644
index 00000000..0f9e5047
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
@@ -0,0 +1,236 @@
+{
+ "Model": "Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Not translated yet"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "BUH Ausgangskapazität"],
+ [ 204, "CT-Sensormessung (L1)"],
+ [ 205, "CT-Sensormessung (L2)"],
+ [ 206, "HP Forced FG"],
+ [ 207, "CT-Sensormessung (L3)"],
+ [ 208, "Daten Aktivieren/Deaktivieren"],
+ [ 209, "Adresse des Innengeräts"],
+ [ 210, "Hybridbetrieb"],
+ [ 211, "Gas/Boiler Heizung Anforderung"],
+ [ 212, "Gas/Boiler DHW Anforderung"],
+ [ 213, "Bypassventil Ausgang"],
+ [ 214, "BE_COP"],
+ [ 215, "Hybrid Heizung Solltemp."],
+ [ 216, "Gas/Boiler Heizung Solltemp."],
+ [ 217, "Zusatzpumpe"],
+ [ 218, "Main pump"],
+ [ 219, "Mischwassertemperatur"],
+ [ 220, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 221, "Ziel Delta T (Heizen) (K)"],
+ [ 222, "Ziel Delta T (Kühlen) (K)"],
+ [ 223, "Daten Aktivieren/Deaktivieren"],
+ [ 224, "Adresse des Innengeräts"],
+ [ 225, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 226, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 227, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json b/definitions/X10A/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
new file mode 100644
index 00000000..47639918
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp.(R4T)"],
+ [ 49, "R2T-Verdichtungsendtemperatur"],
+ [ 50, "Saugrohrtemp. (R3T)"],
+ [ 51, "Wärmetauscher Mitteltemp.(R5T)"],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y3S-Heißgas-Bypassventil"],
+ [ 74, "Y2S-Niederdruck-Bypassventil"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "Magnetventil 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Heizband PWT"],
+ [ 177, "Speicher Vorheizen"],
+ [ 178, "Umwälzpumpe 2 Zusatzzone"],
+ [ 179, "Alarmausgang"],
+ [ 180, "Ausgang Betriebsmeldung"],
+ [ 181, "Durchflussmenge (l/min)"],
+ [ 182, "Wasserdruck"],
+ [ 183, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 185, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 186, "Kältemittel-Drucksensor"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Mixed water temp."],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH Ausgangskapazität"],
+ [ 205, "CT-Sensormessung (L1)"],
+ [ 206, "CT-Sensormessung (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "CT-Sensormessung (L3)"],
+ [ 209, "Daten Aktivieren/Deaktivieren"],
+ [ 210, "Adresse des Innengeräts"],
+ [ 211, "Hybridbetrieb"],
+ [ 212, "Gas/Boiler Heizung Anforderung"],
+ [ 213, "Gas/Boiler DHW Anforderung"],
+ [ 214, "Bypassventil Ausgang"],
+ [ 215, "BE_COP"],
+ [ 216, "Hybrid Heizung Solltemp."],
+ [ 217, "Gas/Boiler Heizung Solltemp."],
+ [ 218, "Zusatzpumpe"],
+ [ 219, "Main pump"],
+ [ 220, "Mischwassertemperatur"],
+ [ 221, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 222, "Ziel Delta T (Heizen) (K)"],
+ [ 223, "Ziel Delta T (Kühlen) (K)"],
+ [ 224, "Daten Aktivieren/Deaktivieren"],
+ [ 225, "Adresse des Innengeräts"],
+ [ 226, "Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"],
+ [ 228, "[EKMIK] Bizone kit Mischventilstellung M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json b/definitions/X10A/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
new file mode 100644
index 00000000..7c895314
--- /dev/null
+++ b/definitions/X10A/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druckausgleich"],
+ [ 62, "Druckausgleich(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (10 rpm)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Fehlerdetailcode"],
+ [ 118, "Betrieb / Störung"],
+ [ 119, "I/U Kapazitätscode"],
+ [ 120, "Sollwert Brauchwasser"],
+ [ 121, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 122, "Strömungsschalter (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 125, "HT/NT Tarif Abschaltung"],
+ [ 126, "Solar Eingang"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Bivalenter Betrieb"],
+ [ 130, "2-Wege-Ventil_Shut Off Valve"],
+ [ 131, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 132, "Heizstab Speicher (BSH)"],
+ [ 133, "Heizstab Stufe 1"],
+ [ 134, "Heizstab Stufe 2"],
+ [ 135, "BPH"],
+ [ 136, "Umwälzpumpe 1 Hauptzone"],
+ [ 137, "Solarpumpe"],
+ [ 138, "IG Optionscode"],
+ [ 139, "Software Hydrobox (xx)"],
+ [ 140, "Software Hydrobox (yy)"],
+ [ 141, "EEPROM Hydrobox Version"],
+ [ 142, "Daten Aktivieren/Deaktivieren"],
+ [ 143, "Adresse des Innengeräts"],
+ [ 144, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 145, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 146, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 147, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 148, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 149, "IG Luftansaugtemperatur (R1T)"],
+ [ 150, "Ext. Raum-/Außentemperatursensor"],
+ [ 151, "Daten Aktivieren/Deaktivieren"],
+ [ 152, "Adresse des Innengeräts"],
+ [ 153, "Brachwasserbetrieb (DHW)"],
+ [ 154, "Speicher Eco-Mode"],
+ [ 155, "Speicher Kompfort-Mode"],
+ [ 156, "Speicher Power-Mode"],
+ [ 157, "Raumheizbetrieb"],
+ [ 158, "System AUS"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 161, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 162, "Sollwert Raumtemperatur"],
+ [ 163, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 164, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 165, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 166, "Haupt Raumthermostat Eingang Heizen"],
+ [ 167, "Stromverbrauchsgrenze 4"],
+ [ 168, "Stromverbrauchsgrenze 3"],
+ [ 169, "Stromverbrauchsgrenze 2"],
+ [ 170, "Stromverbrauchsgrenze 1"],
+ [ 171, "Keine"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Speicher Vorheizen"],
+ [ 176, "Umwälzpumpe 2 Zusatzzone"],
+ [ 177, "Alarmausgang"],
+ [ 178, "Ausgang Betriebsmeldung"],
+ [ 179, "Durchflussmenge (l/min)"],
+ [ 180, "Wasserdruck"],
+ [ 181, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 182, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 184, "Kältemittel-Drucksensor"],
+ [ 185, "Druckausgleich(T)"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Daten Aktivieren/Deaktivieren"],
+ [ 195, "Adresse des Innengeräts"],
+ [ 196, "Hybridbetrieb"],
+ [ 197, "Gas/Boiler Heizung Anforderung"],
+ [ 198, "Gas/Boiler DHW Anforderung"],
+ [ 199, "Bypassventil Ausgang"],
+ [ 200, "BE_COP"],
+ [ 201, "Hybrid Heizung Solltemp."],
+ [ 202, "Gas/Boiler Heizung Solltemp."],
+ [ 203, "Zusatzpumpe"],
+ [ 204, "Main pump"],
+ [ 205, "Mischwassertemperatur"],
+ [ 206, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 207, "Ziel Delta T (Heizen) (K)"],
+ [ 208, "Ziel Delta T (Kühlen) (K)"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(LT_CB_04-08kW Bizone).json b/definitions/X10A/German/Altherma(LT_CB_04-08kW Bizone).json
new file mode 100644
index 00000000..a7d1b894
--- /dev/null
+++ b/definitions/X10A/German/Altherma(LT_CB_04-08kW Bizone).json
@@ -0,0 +1,222 @@
+{
+ "Model": "Altherma(LT_CB_04-08kW Bizone)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "O/U Wärmetauscher Temp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "R21T - Saugleitung VDI 1"],
+ [ 58, "Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 60, "Kühlkörpertemp."],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Fluss Schalter"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Nicht im Einsatz"],
+ [ 70, "Nicht im Einsatz"],
+ [ 71, "Nicht im Einsatz"],
+ [ 72, "Nicht im Einsatz"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Frostschutz Einlasstemp."],
+ [ 75, "Frostschutz Auslasstemp."],
+ [ 76, "Kühltemp. Verdampfer Ein"],
+ [ 77, "Kühltemp. Verdampfer Aus"],
+ [ 78, "Nicht im Einsatz"],
+ [ 79, "Nicht im Einsatz"],
+ [ 80, "Nicht im Einsatz"],
+ [ 81, "Nicht im Einsatz"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Drehzahl Verdichter (U/Sek)"],
+ [ 84, "VDI Frequenz 2 (U/s)"],
+ [ 85, "Verdichter (STD1)"],
+ [ 86, "Verdichter (STD2)"],
+ [ 87, "Ventilator 1 (Stufe)"],
+ [ 88, "Ventilator 2 (Stufe)"],
+ [ 89, "Expansionsventil (pls)"],
+ [ 90, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 91, "Expansionsventil_3 (pls)"],
+ [ 92, "Expansionsventil_4 (pls)"],
+ [ 93, "Expansionsventil_5 (pls)"],
+ [ 94, "4-Wege-Ventil 1"],
+ [ 95, "4-Wege-Ventil 2"],
+ [ 96, "4-Wege-Ventil 3"],
+ [ 97, "4-Wege-Ventil 4"],
+ [ 98, "4-Wege-Ventil 5"],
+ [ 99, "Ölsumpfheizung VDI 1"],
+ [ 100, "Ölsumpfheizung VDI 2"],
+ [ 101, "Ölsumpfheizung VDI 3"],
+ [ 102, "Ölsumpfheizung 4"],
+ [ 103, "Magnetventil 1"],
+ [ 104, "Magnetventil 2"],
+ [ 105, "Magnetventil 3"],
+ [ 106, "Magnetventil 4"],
+ [ 107, "Magnetventil 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Daten Aktivieren/Deaktivieren"],
+ [ 110, "Adresse des Innengeräts"],
+ [ 111, "Betriebsart"],
+ [ 112, "Thermostat EIN/AUS"],
+ [ 113, "Frostschutz"],
+ [ 114, "Schallreduzierter Betrieb"],
+ [ 115, "Frostschutz für Wasserleitung"],
+ [ 116, "Störcode"],
+ [ 117, "Fehlerdetailcode"],
+ [ 118, "Betrieb / Störung"],
+ [ 119, "I/U Kapazitätscode"],
+ [ 120, "Sollwert Brauchwasser"],
+ [ 121, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 122, "Strömungsschalter (ON=OK)"],
+ [ 123, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 125, "HT/NT Tarif Abschaltung"],
+ [ 126, "Solar Eingang"],
+ [ 127, "Nicht im Einsatz"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Bivalenter Betrieb"],
+ [ 130, "2-Wege-Ventil_Shut Off Valve"],
+ [ 131, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 132, "Heizstab Speicher (BSH)"],
+ [ 133, "Heizstab Stufe 1"],
+ [ 134, "Heizstab Stufe 2"],
+ [ 135, "BPH"],
+ [ 136, "Umwälzpumpe 1 Hauptzone"],
+ [ 137, "Solarpumpe"],
+ [ 138, "IG Optionscode"],
+ [ 139, "Software Hydrobox (xx)"],
+ [ 140, "Software Hydrobox (yy)"],
+ [ 141, "EEPROM Hydrobox Version"],
+ [ 142, "Daten Aktivieren/Deaktivieren"],
+ [ 143, "Adresse des Innengeräts"],
+ [ 144, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 145, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 146, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 147, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 148, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 149, "IG Luftansaugtemperatur (R1T)"],
+ [ 150, "Ext. Raum-/Außentemperatursensor"],
+ [ 151, "Daten Aktivieren/Deaktivieren"],
+ [ 152, "Adresse des Innengeräts"],
+ [ 153, "Brachwasserbetrieb (DHW)"],
+ [ 154, "Speicher Eco-Mode"],
+ [ 155, "Speicher Kompfort-Mode"],
+ [ 156, "Speicher Power-Mode"],
+ [ 157, "Raumheizbetrieb"],
+ [ 158, "System AUS"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 161, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 162, "Sollwert Raumtemperatur"],
+ [ 163, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 164, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 165, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 166, "Haupt Raumthermostat Eingang Heizen"],
+ [ 167, "Stromverbrauchsgrenze 4"],
+ [ 168, "Stromverbrauchsgrenze 3"],
+ [ 169, "Stromverbrauchsgrenze 2"],
+ [ 170, "Stromverbrauchsgrenze 1"],
+ [ 171, "Keine"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Speicher Vorheizen"],
+ [ 176, "Umwälzpumpe 2 Zusatzzone"],
+ [ 177, "Alarmausgang"],
+ [ 178, "Ausgang Betriebsmeldung"],
+ [ 179, "Durchflussmenge (l/min)"],
+ [ 180, "Wasserdruck"],
+ [ 181, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 182, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Nicht im Einsatz"],
+ [ 188, "Nicht im Einsatz"],
+ [ 189, "Nicht im Einsatz"],
+ [ 190, "Nicht im Einsatz"],
+ [ 191, "Nicht im Einsatz"],
+ [ 192, "Nicht im Einsatz"],
+ [ 193, "Daten Aktivieren/Deaktivieren"],
+ [ 194, "Adresse des Innengeräts"],
+ [ 195, "I/U EEPROM (3. Ziffer)"],
+ [ 196, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 197, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 198, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 199, "I/U EEPROM (11. Ziffer)"],
+ [ 200, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 201, "Daten Aktivieren/Deaktivieren"],
+ [ 202, "Adresse des Innengeräts"],
+ [ 203, "Hybridbetrieb"],
+ [ 204, "Gas/Boiler Heizung Anforderung"],
+ [ 205, "Gas/Boiler DHW Anforderung"],
+ [ 206, "Bypassventil Ausgang"],
+ [ 207, "BE_COP"],
+ [ 208, "Hybrid Heizung Solltemp."],
+ [ 209, "Gas/Boiler Heizung Solltemp."],
+ [ 210, "Zusatzpumpe"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp."],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(LT_CB_11-16kW Bizone).json b/definitions/X10A/German/Altherma(LT_CB_11-16kW Bizone).json
new file mode 100644
index 00000000..a5697683
--- /dev/null
+++ b/definitions/X10A/German/Altherma(LT_CB_11-16kW Bizone).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Altherma(LT_CB_11-16kW Bizone)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Kühlkörpertemp."],
+ [ 54, "Druck"],
+ [ 55, "Druck(T)"],
+ [ 56, "Nicht im Einsatz"],
+ [ 57, "Nicht im Einsatz"],
+ [ 58, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 59, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 60, "Spannung (VAC)"],
+ [ 61, "Frostschutz Fluss Schalter"],
+ [ 62, "Nicht im Einsatz"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "Nicht im Einsatz"],
+ [ 66, "Nicht im Einsatz"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Frostschutz Einlasstemp."],
+ [ 70, "Frostschutz Auslasstemp."],
+ [ 71, "Kühltemp. Verdampfer Ein"],
+ [ 72, "Kühltemp. Verdampfer Aus"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Nicht im Einsatz"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Drehzahl Verdichter (U/Sek)"],
+ [ 79, "VDI Frequenz 2 (U/s)"],
+ [ 80, "Verdichter (STD1)"],
+ [ 81, "Verdichter (STD2)"],
+ [ 82, "Ventilator 1 (Stufe)"],
+ [ 83, "Ventilator 2 (Stufe)"],
+ [ 84, "Expansionsventil_1 (pls)"],
+ [ 85, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 86, "Expansionsventil_3 (pls)"],
+ [ 87, "Expansionsventil_4 (pls)"],
+ [ 88, "Expansionsventil_5 (pls)"],
+ [ 89, "4-Wege-Ventil 1"],
+ [ 90, "4-Wege-Ventil 2"],
+ [ 91, "4-Wege-Ventil 3"],
+ [ 92, "4-Wege-Ventil 4"],
+ [ 93, "4-Wege-Ventil 5"],
+ [ 94, "Ölsumpfheizung VDI 1"],
+ [ 95, "Ölsumpfheizung VDI 2"],
+ [ 96, "Ölsumpfheizung VDI 3"],
+ [ 97, "Ölsumpfheizung 4"],
+ [ 98, "Y3S: MV Heißgaspybass"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Magnetventil 3"],
+ [ 101, "Magnetventil 4"],
+ [ 102, "Magnetventil 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Daten Aktivieren/Deaktivieren"],
+ [ 105, "Adresse des Innengeräts"],
+ [ 106, "Betriebsart"],
+ [ 107, "Thermostat EIN/AUS"],
+ [ 108, "Frostschutz"],
+ [ 109, "Schallreduzierter Betrieb"],
+ [ 110, "Frostschutz für Wasserleitung"],
+ [ 111, "Störcode"],
+ [ 112, "Innengerätecode"],
+ [ 113, "I/U Kapazitätscode"],
+ [ 114, "Sollwert Brauchwasser"],
+ [ 115, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 116, "Strömungsschalter (ON=OK)"],
+ [ 117, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 118, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 119, "HT/NT Tarif Abschaltung"],
+ [ 120, "Solar Eingang"],
+ [ 121, "Nicht im Einsatz"],
+ [ 122, "Nicht im Einsatz"],
+ [ 123, "Bivalenter Betrieb"],
+ [ 124, "2-Wege-Ventil_Shut Off Valve"],
+ [ 125, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 126, "Heizstab Speicher (BSH)"],
+ [ 127, "Heizstab Stufe 1"],
+ [ 128, "Heizstab Stufe 2"],
+ [ 129, "BPH"],
+ [ 130, "Umwälzpumpe 1 Hauptzone"],
+ [ 131, "Solarpumpe"],
+ [ 132, "IG Optionscode"],
+ [ 133, "Software Hydrobox (xx)"],
+ [ 134, "Software Hydrobox (yy)"],
+ [ 135, "EEPROM Hydrobox Version"],
+ [ 136, "Daten Aktivieren/Deaktivieren"],
+ [ 137, "Adresse des Innengeräts"],
+ [ 138, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 139, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 140, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 141, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 142, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 143, "IG Luftansaugtemperatur (R1T)"],
+ [ 144, "Ext. Raum-/Außentemperatursensor"],
+ [ 145, "Daten Aktivieren/Deaktivieren"],
+ [ 146, "Adresse des Innengeräts"],
+ [ 147, "Brachwasserbetrieb (DHW)"],
+ [ 148, "Speicher Eco-Mode"],
+ [ 149, "Speicher Kompfort-Mode"],
+ [ 150, "Speicher Power-Mode"],
+ [ 151, "Raumheizbetrieb"],
+ [ 152, "System AUS"],
+ [ 153, "Nicht im Einsatz"],
+ [ 154, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 155, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 156, "Sollwert Raumtemperatur"],
+ [ 157, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 158, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 159, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 160, "Haupt Raumthermostat Eingang Heizen"],
+ [ 161, "Stromverbrauchsgrenze 4"],
+ [ 162, "Stromverbrauchsgrenze 3"],
+ [ 163, "Stromverbrauchsgrenze 2"],
+ [ 164, "Stromverbrauchsgrenze 1"],
+ [ 165, "Keine"],
+ [ 166, "Nicht im Einsatz"],
+ [ 167, "Nicht im Einsatz"],
+ [ 168, "Nicht im Einsatz"],
+ [ 169, "Speicher Vorheizen"],
+ [ 170, "Umwälzpumpe 2 Zusatzzone"],
+ [ 171, "Alarmausgang"],
+ [ 172, "Ausgang Betriebsmeldung"],
+ [ 173, "Durchflussmenge (l/min)"],
+ [ 174, "Wasserdruck"],
+ [ 175, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 176, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 177, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Nicht im Einsatz"],
+ [ 180, "Nicht im Einsatz"],
+ [ 181, "Nicht im Einsatz"],
+ [ 182, "Nicht im Einsatz"],
+ [ 183, "Nicht im Einsatz"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Daten Aktivieren/Deaktivieren"],
+ [ 196, "Adresse des Innengeräts"],
+ [ 197, "Hybridbetrieb"],
+ [ 198, "Gas/Boiler Heizung Anforderung"],
+ [ 199, "Gas/Boiler DHW Anforderung"],
+ [ 200, "Bypassventil Ausgang"],
+ [ 201, "BE_COP"],
+ [ 202, "Hybrid Heizung Solltemp."],
+ [ 203, "Gas/Boiler Heizung Solltemp."],
+ [ 204, "Zusatzpumpe"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp."]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json b/definitions/X10A/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
new file mode 100644
index 00000000..bdf9fbcc
--- /dev/null
+++ b/definitions/X10A/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "AG Wärmetauschertemp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "Sauggastemperatur"],
+ [ 58, "AG Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp."],
+ [ 60, "Platienentemperatur"],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Einlasstemp."],
+ [ 67, "Frostschutz Auslasstemp."],
+ [ 68, "Kühltemp. Verdampfer Ein"],
+ [ 69, "Kühltemp. Verdampfer Aus"],
+ [ 70, "NextDataGrid"],
+ [ 71, "Drehzahl Verdichter (U/Sek)"],
+ [ 72, "VDI Frequenz 2 (U/s)"],
+ [ 73, "Verdichter (STD1)"],
+ [ 74, "Verdichter (STD2)"],
+ [ 75, "Ventilator 1 (Stufe)"],
+ [ 76, "Ventilator 2 (Stufe)"],
+ [ 77, "Expansionsventil (pls)"],
+ [ 78, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 79, "Expansionsventil_3 (pls)"],
+ [ 80, "Expansionsventil_4 (pls)"],
+ [ 81, "Expansionsventil_5 (pls)"],
+ [ 82, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 83, "4-Wege-Ventil 2"],
+ [ 84, "4-Wege-Ventil 3"],
+ [ 85, "4-Wege-Ventil 4"],
+ [ 86, "4-Wege-Ventil 5"],
+ [ 87, "Ölsumpfheizung"],
+ [ 88, "Ölsumpfheizung VDI 2"],
+ [ 89, "Ölsumpfheizung VDI 3"],
+ [ 90, "Ölsumpfheizung 4"],
+ [ 91, "Magnetventil 1"],
+ [ 92, "Magnetventil 2"],
+ [ 93, "Magnetventil 3"],
+ [ 94, "Magnetventil 4"],
+ [ 95, "Magnetventil 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Daten Aktivieren/Deaktivieren"],
+ [ 98, "Adresse des Innengeräts"],
+ [ 99, "Betriebsart"],
+ [ 100, "Thermostat EIN/AUS"],
+ [ 101, "Frostschutz"],
+ [ 102, "Schallreduzierter Betrieb"],
+ [ 103, "Frostschutz für Wasserleitung"],
+ [ 104, "Störcode"],
+ [ 105, "Innengerätecode"],
+ [ 106, "I/U Kapazitätscode"],
+ [ 107, "Sollwert Brauchwasser"],
+ [ 108, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 109, "Strömungsschalter (ON=OK)"],
+ [ 110, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 111, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 112, "HT/NT Tarif Abschaltung"],
+ [ 113, "Solar Eingang"],
+ [ 114, "Nicht im Einsatz"],
+ [ 115, "Nicht im Einsatz"],
+ [ 116, "Bivalenter Betrieb"],
+ [ 117, "2-Wege-Ventil_Shut Off Valve"],
+ [ 118, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 119, "Heizstab Speicher (BSH)"],
+ [ 120, "Heizstab Stufe 1"],
+ [ 121, "Heizstab Stufe 2"],
+ [ 122, "Fußbodenkreis Abschaltventil"],
+ [ 123, "Umwälzpumpe 1 Hauptzone"],
+ [ 124, "Solarpumpe"],
+ [ 125, "IG Optionscode"],
+ [ 126, "Software Hydrobox (xx)"],
+ [ 127, "Software Hydrobox (yy)"],
+ [ 128, "EEPROM Hydrobox Version"],
+ [ 129, "Daten Aktivieren/Deaktivieren"],
+ [ 130, "Adresse des Innengeräts"],
+ [ 131, "Auslass Wasser Wärmetauscher Temp. (R1T)"],
+ [ 132, "Auslass Wasser BUH Temp. (R2T)"],
+ [ 133, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 134, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 135, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 136, "IG Luftansaugtemperatur (R1T)"],
+ [ 137, "Daten Aktivieren/Deaktivieren"],
+ [ 138, "Adresse des Innengeräts"],
+ [ 139, "Brachwasserbetrieb (DHW)"],
+ [ 140, "Speicher Eco-Mode"],
+ [ 141, "Speicher Kompfort-Mode"],
+ [ 142, "Speicher Power-Mode"],
+ [ 143, "Raumheizbetrieb"],
+ [ 144, "System AUS"],
+ [ 145, "Nicht im Einsatz"],
+ [ 146, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 147, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 148, "Sollwert Raumtemperatur"],
+ [ 149, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 150, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 151, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 152, "Haupt Raumthermostat Eingang Heizen"],
+ [ 153, "Stromverbrauchsgrenze 4"],
+ [ 154, "Stromverbrauchsgrenze 3"],
+ [ 155, "Stromverbrauchsgrenze 2"],
+ [ 156, "Stromverbrauchsgrenze 1"],
+ [ 157, "Keine"],
+ [ 158, "Nicht im Einsatz"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Speicher Vorheizen"],
+ [ 162, "Umwälzpumpe 2 Zusatzzone"],
+ [ 163, "Alarmausgang"],
+ [ 164, "Ausgang Betriebsmeldung"],
+ [ 165, "Durchflussmenge (l/min)"],
+ [ 166, "Wasserdruck"],
+ [ 167, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 168, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 169, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 170, "Nicht im Einsatz"],
+ [ 171, "Nicht im Einsatz"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Nicht im Einsatz"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Daten Aktivieren/Deaktivieren"],
+ [ 180, "Adresse des Innengeräts"],
+ [ 181, "I/U EEPROM (3. Ziffer)"],
+ [ 182, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 183, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 184, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 185, "I/U EEPROM (11. Ziffer)"],
+ [ 186, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "Hybridbetrieb"],
+ [ 190, "Gas/Boiler Heizung Anforderung"],
+ [ 191, "Gas/Boiler DHW Anforderung"],
+ [ 192, "Bypassventil Ausgang"],
+ [ 193, "BE_COP"],
+ [ 194, "Hybrid Heizung Solltemp."],
+ [ 195, "Gas/Boiler Heizung Solltemp."],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json b/definitions/X10A/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
new file mode 100644
index 00000000..d03bcca3
--- /dev/null
+++ b/definitions/X10A/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
@@ -0,0 +1,209 @@
+{
+ "Model": "Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Kühlkörpertemp."],
+ [ 54, "Druck"],
+ [ 55, "Druck(T)"],
+ [ 56, "Nicht im Einsatz"],
+ [ 57, "Nicht im Einsatz"],
+ [ 58, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 59, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 60, "Spannung (VAC)"],
+ [ 61, "Frostschutz Fluss Schalter"],
+ [ 62, "Nicht im Einsatz"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "Nicht im Einsatz"],
+ [ 66, "Nicht im Einsatz"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Frostschutz Einlasstemp."],
+ [ 70, "Frostschutz Auslasstemp."],
+ [ 71, "Kühltemp. Verdampfer Ein"],
+ [ 72, "Kühltemp. Verdampfer Aus"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Nicht im Einsatz"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Drehzahl Verdichter (U/Sek)"],
+ [ 79, "Ventilator 1 (Stufe)"],
+ [ 80, "Ventilator 2 (Stufe)"],
+ [ 81, "Expansionsventil_1 (pls)"],
+ [ 82, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 83, "4-Wege-Ventil 1"],
+ [ 84, "4-Wege-Ventil 2"],
+ [ 85, "4-Wege-Ventil 3"],
+ [ 86, "4-Wege-Ventil 4"],
+ [ 87, "4-Wege-Ventil 5"],
+ [ 88, "Ölsumpfheizung VDI 1"],
+ [ 89, "Ölsumpfheizung VDI 2"],
+ [ 90, "Ölsumpfheizung VDI 3"],
+ [ 91, "Ölsumpfheizung 4"],
+ [ 92, "Y3S: MV Heißgaspybass"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Magnetventil 3"],
+ [ 95, "Magnetventil 4"],
+ [ 96, "Magnetventil 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Daten Aktivieren/Deaktivieren"],
+ [ 99, "Adresse des Innengeräts"],
+ [ 100, "Betriebsart"],
+ [ 101, "Thermostat EIN/AUS"],
+ [ 102, "Frostschutz"],
+ [ 103, "Schallreduzierter Betrieb"],
+ [ 104, "Frostschutz für Wasserleitung"],
+ [ 105, "Störcode"],
+ [ 106, "Innengerätecode"],
+ [ 107, "I/U Kapazitätscode"],
+ [ 108, "Sollwert Brauchwasser"],
+ [ 109, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 110, "Strömungsschalter (ON=OK)"],
+ [ 111, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 112, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 113, "HT/NT Tarif Abschaltung"],
+ [ 114, "Solar Eingang"],
+ [ 115, "Nicht im Einsatz"],
+ [ 116, "Nicht im Einsatz"],
+ [ 117, "Bivalenter Betrieb"],
+ [ 118, "2-Wege-Ventil_Shut Off Valve"],
+ [ 119, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 120, "Heizstab Speicher (BSH)"],
+ [ 121, "Heizstab Stufe 1"],
+ [ 122, "Heizstab Stufe 2"],
+ [ 123, "BPH"],
+ [ 124, "Umwälzpumpe 1 Hauptzone"],
+ [ 125, "Solarpumpe"],
+ [ 126, "IG Optionscode"],
+ [ 127, "Software Hydrobox (xx)"],
+ [ 128, "Software Hydrobox (yy)"],
+ [ 129, "EEPROM Hydrobox Version"],
+ [ 130, "Daten Aktivieren/Deaktivieren"],
+ [ 131, "Adresse des Innengeräts"],
+ [ 132, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 133, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 134, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 135, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 136, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 137, "IG Luftansaugtemperatur (R1T)"],
+ [ 138, "Ext. Raum-/Außentemperatursensor"],
+ [ 139, "Daten Aktivieren/Deaktivieren"],
+ [ 140, "Adresse des Innengeräts"],
+ [ 141, "Brachwasserbetrieb (DHW)"],
+ [ 142, "Speicher Eco-Mode"],
+ [ 143, "Speicher Kompfort-Mode"],
+ [ 144, "Speicher Power-Mode"],
+ [ 145, "Raumheizbetrieb"],
+ [ 146, "System AUS"],
+ [ 147, "Nicht im Einsatz"],
+ [ 148, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 149, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 150, "Sollwert Raumtemperatur"],
+ [ 151, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 152, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 153, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 154, "Haupt Raumthermostat Eingang Heizen"],
+ [ 155, "Stromverbrauchsgrenze 4"],
+ [ 156, "Stromverbrauchsgrenze 3"],
+ [ 157, "Stromverbrauchsgrenze 2"],
+ [ 158, "Stromverbrauchsgrenze 1"],
+ [ 159, "Keine"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Nicht im Einsatz"],
+ [ 162, "Nicht im Einsatz"],
+ [ 163, "Speicher Vorheizen"],
+ [ 164, "Umwälzpumpe 2 Zusatzzone"],
+ [ 165, "Alarmausgang"],
+ [ 166, "Ausgang Betriebsmeldung"],
+ [ 167, "Durchflussmenge (l/min)"],
+ [ 168, "Wasserdruck"],
+ [ 169, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 170, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 171, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Nicht im Einsatz"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Nicht im Einsatz"],
+ [ 180, "Nicht im Einsatz"],
+ [ 181, "Daten Aktivieren/Deaktivieren"],
+ [ 182, "Adresse des Innengeräts"],
+ [ 183, "I/U EEPROM (3. Ziffer)"],
+ [ 184, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 185, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 186, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 187, "I/U EEPROM (11. Ziffer)"],
+ [ 188, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 189, "Daten Aktivieren/Deaktivieren"],
+ [ 190, "Adresse des Innengeräts"],
+ [ 191, "Hybridbetrieb"],
+ [ 192, "Gas/Boiler Heizung Anforderung"],
+ [ 193, "Gas/Boiler DHW Anforderung"],
+ [ 194, "Bypassventil Ausgang"],
+ [ 195, "BE_COP"],
+ [ 196, "Hybrid Heizung Solltemp."],
+ [ 197, "Gas/Boiler Heizung Solltemp."],
+ [ 198, "Zusatzpumpe"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp."]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/DEFAULT.json b/definitions/X10A/German/DEFAULT.json
new file mode 100644
index 00000000..5be77fe4
--- /dev/null
+++ b/definitions/X10A/German/DEFAULT.json
@@ -0,0 +1,147 @@
+{
+ "Model": "DEFAULT",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Verdichter (STD)"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID"],
+ [ 13, "AG Software ID"],
+ [ 14, "Aktuelle Betriebsart"],
+ [ 15, "Thermostat EIN/AUS"],
+ [ 16, "Wiederanlaufverzögerung"],
+ [ 17, "Anlaufregelung"],
+ [ 18, "Abtauung"],
+ [ 19, "Ölrückführung"],
+ [ 20, "Druckausgleich"],
+ [ 21, "Lastabwurf"],
+ [ 22, "Schallreduzierter Betrieb"],
+ [ 23, "Andere Steuer1"],
+ [ 24, "Andere Steuer2"],
+ [ 25, "Andere Steuer3"],
+ [ 26, "Andere Steuer4"],
+ [ 27, "Andere Steuer5"],
+ [ 28, "Andere Steuer6"],
+ [ 29, "Andere Steuer7"],
+ [ 30, "Andere Steuer8"],
+ [ 31, "Andere Steuer9"],
+ [ 32, "Andere Steuer10"],
+ [ 33, "Andere Steuer11"],
+ [ 34, "Andere Steuer12"],
+ [ 35, "Andere Steuer13"],
+ [ 36, "Andere Steuer14"],
+ [ 37, "Andere Steuer15"],
+ [ 38, "Andere Steuer16"],
+ [ 39, "Betrieb / Störung"],
+ [ 40, "Störcode"],
+ [ 41, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 42, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 43, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 44, "Verdichtungsendtemp.Schutz retry"],
+ [ 45, "Verdichterüberstromschutz aktiv"],
+ [ 46, "Verdichterüberstromschutz retry"],
+ [ 47, "Hochdruckschutz aktiv"],
+ [ 48, "Hochdruckschutz retry"],
+ [ 49, "Niederdruckschutz aktiv"],
+ [ 50, "Niederdruckschutz retry"],
+ [ 51, "Sonstige Regelung"],
+ [ 52, "NextDataGrid"],
+ [ 53, "AG Außentemperatur"],
+ [ 54, "AG Wärmetauschertemp."],
+ [ 55, "Verdichtungsendtemperatur"],
+ [ 56, "R21T - Saugleitung VDI 1"],
+ [ 57, "AG Wärmetauscher Mitteltemp."],
+ [ 58, "Flüssigkeitsleitungstemp."],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Niederdruck"],
+ [ 61, "Niederdruck in °C"],
+ [ 62, "Sensordaten 9"],
+ [ 63, "Sensordaten 10"],
+ [ 64, "Sensordaten 11"],
+ [ 65, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 66, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 67, "Inverter Platinentemperatur"],
+ [ 68, "Sensordaten 4"],
+ [ 69, "Sensordaten 5"],
+ [ 70, "Sensordaten 6"],
+ [ 71, "Sensordaten 7"],
+ [ 72, "Sensordaten 8"],
+ [ 73, "Sensordaten 9"],
+ [ 74, "Sensordaten 10"],
+ [ 75, "Sensordaten 11"],
+ [ 76, "NextDataGrid"],
+ [ 77, "VDI Frequenz 1 (U/s)"],
+ [ 78, "VDI Frequenz 2 (U/s)"],
+ [ 79, "Verdichter (STD1)"],
+ [ 80, "Verdichter (STD2)"],
+ [ 81, "Ventilator 1 (Stufe)"],
+ [ 82, "Ventilator 2 (Stufe)"],
+ [ 83, "Expansionsventil_1 (pls)"],
+ [ 84, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 85, "4-Wege-Ventil 1"],
+ [ 86, "4-Wege-Ventil 2"],
+ [ 87, "Ölsumpfheizung VDI 1"],
+ [ 88, "Ölsumpfheizung VDI 2"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Magnetventil 2"],
+ [ 91, "Magnetventil 3"],
+ [ 92, "Magnetventil 4"],
+ [ 93, "Magnetventil 5"],
+ [ 94, "Magnetventil 6"],
+ [ 95, "Magnetventil 7"],
+ [ 96, "Magnetventil 8"],
+ [ 97, "Magnetventil 9"],
+ [ 98, "Magnetventil 10"],
+ [ 99, "In-Out separator"],
+ [ 100, "Daten Aktivieren/Deaktivieren"],
+ [ 101, "Adresse des Innengeräts"],
+ [ 102, "IG Betriebsart"],
+ [ 103, "Thermostat EIN/AUS"],
+ [ 104, "Frostschutz"],
+ [ 105, "Schallreduzierter Betrieb"],
+ [ 106, "Frostschutz für Wasserleitung"],
+ [ 107, "Störcode"],
+ [ 108, "Innengerätecode"],
+ [ 109, "Innengerät Kapazität"],
+ [ 110, "R/C Einstellpunkt"],
+ [ 111, "Hochdruck Sollwert"],
+ [ 112, "Durchflussschalter"],
+ [ 113, "Clixon BUH"],
+ [ 114, "Clixon Heizstab Speicher (BSH)"],
+ [ 115, "HP Preiseingabe"],
+ [ 116, "Solar Eingang"],
+ [ 117, "Nicht im Einsatz"],
+ [ 118, "Nicht im Einsatz"],
+ [ 119, "Bivalenter Betrieb"],
+ [ 120, "3-Wege-Ventil (Kühlen/Heizen)"],
+ [ 121, "4-Wege-Ventil (Raum/DHW)"],
+ [ 122, "Heizstab Speicher (BSH)"],
+ [ 123, "BUH1"],
+ [ 124, "BUH2"],
+ [ 125, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 126, "Pumpenleistung"],
+ [ 127, "Solarausgangssignal"],
+ [ 128, "IG Optionscode"],
+ [ 129, "IG Software-Version"],
+ [ 130, "IG EEPROM-Version"],
+ [ 131, "Daten Aktivieren/Deaktivieren"],
+ [ 132, "Adresse des Innengeräts"],
+ [ 133, "Auslass PHE (R1T)"],
+ [ 134, "Auslass BUH (R2T)"],
+ [ 135, "Flüssigkeitstemperatur (R3T)"],
+ [ 136, "Einlasstemperatur (R4T)"],
+ [ 137, "DHW Temperatur (R5T)"],
+ [ 138, "Fernbedienungssensor"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json b/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
new file mode 100644
index 00000000..4927e14b
--- /dev/null
+++ b/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 4-8kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitstemperatur (R3T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Niederdruck"],
+ [ 56, "Niederdruck in °C"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Magnetventil 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Magnetventil 1"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Druckausgleich(T)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH Ausgangskapazität"],
+ [ 201, "CT-Sensormessung (L1)"],
+ [ 202, "CT-Sensormessung (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "CT-Sensormessung (L3)"],
+ [ 205, "Daten Aktivieren/Deaktivieren"],
+ [ 206, "Adresse des Innengeräts"],
+ [ 207, "Hybridbetrieb"],
+ [ 208, "Gas/Boiler Heizung Anforderung"],
+ [ 209, "Gas/Boiler DHW Anforderung"],
+ [ 210, "Bypassventil Ausgang"],
+ [ 211, "BE_COP"],
+ [ 212, "Hybrid Heizung Solltemp."],
+ [ 213, "Gas/Boiler Heizung Solltemp."],
+ [ 214, "Zusatzpumpe"],
+ [ 215, "Main pump"],
+ [ 216, "Mischwassertemperatur"],
+ [ 217, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 218, "Ziel Delta T (Heizen) (K)"],
+ [ 219, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json b/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
new file mode 100644
index 00000000..84c1947f
--- /dev/null
+++ b/definitions/X10A/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 9-16kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Kühlkörpertemp."],
+ [ 54, "Druck"],
+ [ 55, "Druck(T)"],
+ [ 56, "Nicht im Einsatz"],
+ [ 57, "Nicht im Einsatz"],
+ [ 58, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 59, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 60, "Spannung (VAC)"],
+ [ 61, "Frostschutz Fluss Schalter"],
+ [ 62, "Nicht im Einsatz"],
+ [ 63, "Nicht im Einsatz"],
+ [ 64, "Nicht im Einsatz"],
+ [ 65, "Nicht im Einsatz"],
+ [ 66, "Nicht im Einsatz"],
+ [ 67, "Nicht im Einsatz"],
+ [ 68, "Nicht im Einsatz"],
+ [ 69, "Frostschutz Einlasstemp."],
+ [ 70, "Frostschutz Auslasstemp."],
+ [ 71, "Kühltemp. Verdampfer Ein"],
+ [ 72, "Kühltemp. Verdampfer Aus"],
+ [ 73, "Nicht im Einsatz"],
+ [ 74, "Nicht im Einsatz"],
+ [ 75, "Nicht im Einsatz"],
+ [ 76, "Nicht im Einsatz"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Drehzahl Verdichter (U/Sek)"],
+ [ 79, "VDI Frequenz 2 (U/s)"],
+ [ 80, "Verdichter (STD1)"],
+ [ 81, "Verdichter (STD2)"],
+ [ 82, "Ventilator 1 (Stufe)"],
+ [ 83, "Ventilator 2 (Stufe)"],
+ [ 84, "Expansionsventil_1 (pls)"],
+ [ 85, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 86, "Expansionsventil_3 (pls)"],
+ [ 87, "Expansionsventil_4 (pls)"],
+ [ 88, "Expansionsventil_5 (pls)"],
+ [ 89, "4-Wege-Ventil 1"],
+ [ 90, "4-Wege-Ventil 2"],
+ [ 91, "4-Wege-Ventil 3"],
+ [ 92, "4-Wege-Ventil 4"],
+ [ 93, "4-Wege-Ventil 5"],
+ [ 94, "Ölsumpfheizung VDI 1"],
+ [ 95, "Ölsumpfheizung VDI 2"],
+ [ 96, "Ölsumpfheizung VDI 3"],
+ [ 97, "Ölsumpfheizung 4"],
+ [ 98, "Y3S: MV Heißgaspybass"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Magnetventil 3"],
+ [ 101, "Magnetventil 4"],
+ [ 102, "Magnetventil 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Daten Aktivieren/Deaktivieren"],
+ [ 105, "Adresse des Innengeräts"],
+ [ 106, "Betriebsart"],
+ [ 107, "Thermostat EIN/AUS"],
+ [ 108, "Frostschutz"],
+ [ 109, "Schallreduzierter Betrieb"],
+ [ 110, "Frostschutz für Wasserleitung"],
+ [ 111, "Störcode"],
+ [ 112, "Innengerätecode"],
+ [ 113, "I/U Kapazitätscode"],
+ [ 114, "Sollwert Brauchwasser"],
+ [ 115, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 116, "Strömungsschalter (ON=OK)"],
+ [ 117, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 118, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 119, "HT/NT Tarif Abschaltung"],
+ [ 120, "Solar Eingang"],
+ [ 121, "Nicht im Einsatz"],
+ [ 122, "Nicht im Einsatz"],
+ [ 123, "Bivalenter Betrieb"],
+ [ 124, "2-Wege-Ventil_Shut Off Valve"],
+ [ 125, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 126, "Heizstab Speicher (BSH)"],
+ [ 127, "Heizstab Stufe 1"],
+ [ 128, "Heizstab Stufe 2"],
+ [ 129, "BPH"],
+ [ 130, "Umwälzpumpe 1 Hauptzone"],
+ [ 131, "Solarpumpe"],
+ [ 132, "IG Optionscode"],
+ [ 133, "Software Hydrobox (xx)"],
+ [ 134, "Software Hydrobox (yy)"],
+ [ 135, "EEPROM Hydrobox Version"],
+ [ 136, "Daten Aktivieren/Deaktivieren"],
+ [ 137, "Adresse des Innengeräts"],
+ [ 138, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 139, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 140, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 141, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 142, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 143, "IG Luftansaugtemperatur (R1T)"],
+ [ 144, "Ext. Raum-/Außentemperatursensor"],
+ [ 145, "Daten Aktivieren/Deaktivieren"],
+ [ 146, "Adresse des Innengeräts"],
+ [ 147, "Brachwasserbetrieb (DHW)"],
+ [ 148, "Speicher Eco-Mode"],
+ [ 149, "Speicher Kompfort-Mode"],
+ [ 150, "Speicher Power-Mode"],
+ [ 151, "Raumheizbetrieb"],
+ [ 152, "System AUS"],
+ [ 153, "Nicht im Einsatz"],
+ [ 154, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 155, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 156, "Sollwert Raumtemperatur"],
+ [ 157, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 158, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 159, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 160, "Haupt Raumthermostat Eingang Heizen"],
+ [ 161, "Stromverbrauchsgrenze 4"],
+ [ 162, "Stromverbrauchsgrenze 3"],
+ [ 163, "Stromverbrauchsgrenze 2"],
+ [ 164, "Stromverbrauchsgrenze 1"],
+ [ 165, "Keine"],
+ [ 166, "Nicht im Einsatz"],
+ [ 167, "Nicht im Einsatz"],
+ [ 168, "Nicht im Einsatz"],
+ [ 169, "Speicher Vorheizen"],
+ [ 170, "Umwälzpumpe 2 Zusatzzone"],
+ [ 171, "Alarmausgang"],
+ [ 172, "Ausgang Betriebsmeldung"],
+ [ 173, "Durchflussmenge (l/min)"],
+ [ 174, "Wasserdruck"],
+ [ 175, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 176, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 177, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Nicht im Einsatz"],
+ [ 180, "Nicht im Einsatz"],
+ [ 181, "Nicht im Einsatz"],
+ [ 182, "Nicht im Einsatz"],
+ [ 183, "Nicht im Einsatz"],
+ [ 184, "Nicht im Einsatz"],
+ [ 185, "Nicht im Einsatz"],
+ [ 186, "Nicht im Einsatz"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "I/U EEPROM (3. Ziffer)"],
+ [ 190, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 191, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 192, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 193, "I/U EEPROM (11. Ziffer)"],
+ [ 194, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 195, "Daten Aktivieren/Deaktivieren"],
+ [ 196, "Adresse des Innengeräts"],
+ [ 197, "Hybridbetrieb"],
+ [ 198, "Gas/Boiler Heizung Anforderung"],
+ [ 199, "Gas/Boiler DHW Anforderung"],
+ [ 200, "Bypassventil Ausgang"],
+ [ 201, "BE_COP"],
+ [ 202, "Hybrid Heizung Solltemp."],
+ [ 203, "Gas/Boiler Heizung Solltemp."],
+ [ 204, "Zusatzpumpe"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp."]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json b/definitions/X10A/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
new file mode 100644
index 00000000..3f7d6683
--- /dev/null
+++ b/definitions/X10A/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Maximale Anzahl - Sensoren AG"],
+ [ 10, "Maximale Anzahl - Inverterverdichter"],
+ [ 11, "Maximale Anzahl – Standardverdichter"],
+ [ 12, "Maximale Anzahl - Außengerätelüfter"],
+ [ 13, "Maximale Anzahl - Expansionsventile"],
+ [ 14, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 15, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 16, "Maximale Anzahl – Magnetventile"],
+ [ 17, "Max. anschließbare Innengerätezahl"],
+ [ 18, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 19, "AG Software ID (xx)"],
+ [ 20, "AG Software ID (yy)"],
+ [ 21, "Max. Außengerät Leistung (kW)"],
+ [ 22, "Aktuelle Betriebsart"],
+ [ 23, "Thermostat EIN/AUS"],
+ [ 24, "Wiederanlaufverzögerung"],
+ [ 25, "Anlaufregelung"],
+ [ 26, "Abtauung"],
+ [ 27, "Ölrückführung"],
+ [ 28, "Druckausgleich"],
+ [ 29, "Lastabwurf"],
+ [ 30, "Schallreduzierter Betrieb"],
+ [ 31, "Betrieb / Störung"],
+ [ 32, "Störcode"],
+ [ 33, "Zielniederdruck in °C (Zielverdampfung)"],
+ [ 34, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 35, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 36, "Verdichtungsendtemp.Schutz retry"],
+ [ 37, "Verdichterüberstromschutz aktiv"],
+ [ 38, "Verdichterüberstromschutz retry"],
+ [ 39, "Hochdruckschutz aktiv"],
+ [ 40, "Hochdruckschutz retry"],
+ [ 41, "Niederdruckschutz aktiv"],
+ [ 42, "Niederdruckschutz retry"],
+ [ 43, "Inverterplatinentemp.Schutz aktiv"],
+ [ 44, "Inverterplatinentemp.Schutz retry"],
+ [ 45, "Sonstiger Schutzmodus"],
+ [ 46, "Nicht im Einsatz"],
+ [ 47, "AG EEPROM (1. Ziffer)"],
+ [ 48, "AG EEPROM (3. 4. Ziffer)"],
+ [ 49, "AG EEPROM (5. 6. Ziffer)"],
+ [ 50, "AG EEPROM (7. 8. Ziffer)"],
+ [ 51, "AG EEPROM (10. Ziffer)"],
+ [ 52, "AG EEPROM (11. Ziffer)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "R1T-Außentemperatur"],
+ [ 55, "AG Wärmetauschertemp."],
+ [ 56, "Verdichtungsendtemperatur"],
+ [ 57, "Sauggastemperatur"],
+ [ 58, "AG Wärmetauscher Mitteltemp."],
+ [ 59, "Flüssigkeitsleitungstemp."],
+ [ 60, "Platienentemperatur"],
+ [ 61, "Druck"],
+ [ 62, "Druck(T)"],
+ [ 63, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 64, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 65, "Spannung (VAC)"],
+ [ 66, "Frostschutz Einlasstemp."],
+ [ 67, "Frostschutz Auslasstemp."],
+ [ 68, "Kühltemp. Verdampfer Ein"],
+ [ 69, "Kühltemp. Verdampfer Aus"],
+ [ 70, "NextDataGrid"],
+ [ 71, "Drehzahl Verdichter (U/Sek)"],
+ [ 72, "VDI Frequenz 2 (U/s)"],
+ [ 73, "Verdichter (STD1)"],
+ [ 74, "Verdichter (STD2)"],
+ [ 75, "Ventilator 1 (Stufe)"],
+ [ 76, "Ventilator 2 (Stufe)"],
+ [ 77, "Expansionsventil (pls)"],
+ [ 78, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 79, "Expansionsventil_3 (pls)"],
+ [ 80, "Expansionsventil_4 (pls)"],
+ [ 81, "Expansionsventil_5 (pls)"],
+ [ 82, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 83, "4-Wege-Ventil 2"],
+ [ 84, "4-Wege-Ventil 3"],
+ [ 85, "4-Wege-Ventil 4"],
+ [ 86, "4-Wege-Ventil 5"],
+ [ 87, "Ölsumpfheizung"],
+ [ 88, "Ölsumpfheizung VDI 2"],
+ [ 89, "Ölsumpfheizung VDI 3"],
+ [ 90, "Ölsumpfheizung 4"],
+ [ 91, "Magnetventil 1"],
+ [ 92, "Magnetventil 2"],
+ [ 93, "Magnetventil 3"],
+ [ 94, "Magnetventil 4"],
+ [ 95, "Magnetventil 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Daten Aktivieren/Deaktivieren"],
+ [ 98, "Adresse des Innengeräts"],
+ [ 99, "Betriebsart"],
+ [ 100, "Thermostat EIN/AUS"],
+ [ 101, "Frostschutz"],
+ [ 102, "Schallreduzierter Betrieb"],
+ [ 103, "Frostschutz für Wasserleitung"],
+ [ 104, "Störcode"],
+ [ 105, "Innengerätecode"],
+ [ 106, "I/U Kapazitätscode"],
+ [ 107, "Sollwert Brauchwasser"],
+ [ 108, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 109, "Strömungsschalter (ON=OK)"],
+ [ 110, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 111, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 112, "HT/NT Tarif Abschaltung"],
+ [ 113, "Solar Eingang"],
+ [ 114, "Nicht im Einsatz"],
+ [ 115, "Nicht im Einsatz"],
+ [ 116, "Bivalenter Betrieb"],
+ [ 117, "2-Wege-Ventil_Shut Off Valve"],
+ [ 118, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 119, "Heizstab Speicher (BSH)"],
+ [ 120, "Heizstab Stufe 1"],
+ [ 121, "Heizstab Stufe 2"],
+ [ 122, "Fußbodenkreis Abschaltventil"],
+ [ 123, "Umwälzpumpe 1 Hauptzone"],
+ [ 124, "Solarpumpe"],
+ [ 125, "IG Optionscode"],
+ [ 126, "Software Hydrobox (xx)"],
+ [ 127, "Software Hydrobox (yy)"],
+ [ 128, "EEPROM Hydrobox Version"],
+ [ 129, "Daten Aktivieren/Deaktivieren"],
+ [ 130, "Adresse des Innengeräts"],
+ [ 131, "Auslass Wasser Wärmetauscher Temp. (R1T)"],
+ [ 132, "Auslass Wasser BUH Temp. (R2T)"],
+ [ 133, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 134, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 135, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 136, "IG Luftansaugtemperatur (R1T)"],
+ [ 137, "Daten Aktivieren/Deaktivieren"],
+ [ 138, "Adresse des Innengeräts"],
+ [ 139, "Brachwasserbetrieb (DHW)"],
+ [ 140, "Speicher Eco-Mode"],
+ [ 141, "Speicher Kompfort-Mode"],
+ [ 142, "Speicher Power-Mode"],
+ [ 143, "Raumheizbetrieb"],
+ [ 144, "System AUS"],
+ [ 145, "Nicht im Einsatz"],
+ [ 146, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 147, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 148, "Sollwert Raumtemperatur"],
+ [ 149, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 150, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 151, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 152, "Haupt Raumthermostat Eingang Heizen"],
+ [ 153, "Stromverbrauchsgrenze 4"],
+ [ 154, "Stromverbrauchsgrenze 3"],
+ [ 155, "Stromverbrauchsgrenze 2"],
+ [ 156, "Stromverbrauchsgrenze 1"],
+ [ 157, "Keine"],
+ [ 158, "Nicht im Einsatz"],
+ [ 159, "Nicht im Einsatz"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Speicher Vorheizen"],
+ [ 162, "Umwälzpumpe 2 Zusatzzone"],
+ [ 163, "Alarmausgang"],
+ [ 164, "Ausgang Betriebsmeldung"],
+ [ 165, "Durchflussmenge (l/min)"],
+ [ 166, "Wasserdruck"],
+ [ 167, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 168, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 169, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 170, "Nicht im Einsatz"],
+ [ 171, "Nicht im Einsatz"],
+ [ 172, "Nicht im Einsatz"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Nicht im Einsatz"],
+ [ 176, "Nicht im Einsatz"],
+ [ 177, "Nicht im Einsatz"],
+ [ 178, "Nicht im Einsatz"],
+ [ 179, "Daten Aktivieren/Deaktivieren"],
+ [ 180, "Adresse des Innengeräts"],
+ [ 181, "I/U EEPROM (3. Ziffer)"],
+ [ 182, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 183, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 184, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 185, "I/U EEPROM (11. Ziffer)"],
+ [ 186, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 187, "Daten Aktivieren/Deaktivieren"],
+ [ 188, "Adresse des Innengeräts"],
+ [ 189, "Hybridbetrieb"],
+ [ 190, "Gas/Boiler Heizung Anforderung"],
+ [ 191, "Gas/Boiler DHW Anforderung"],
+ [ 192, "Bypassventil Ausgang"],
+ [ 193, "BE_COP"],
+ [ 194, "Hybrid Heizung Solltemp."],
+ [ 195, "Gas/Boiler Heizung Solltemp."],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/German/EKHWET-BAV3(MULTI DHW TANK).json b/definitions/X10A/German/EKHWET-BAV3(MULTI DHW TANK).json
new file mode 100644
index 00000000..1008a8f8
--- /dev/null
+++ b/definitions/X10A/German/EKHWET-BAV3(MULTI DHW TANK).json
@@ -0,0 +1,231 @@
+{
+ "Model": "EKHWET-BAV3(MULTI DHW TANK)",
+ "Language": "German",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Kältemittel Typ"],
+ [ 2, "Maximale Anzahl - Sensoren AG"],
+ [ 3, "Maximale Anzahl - Inverterverdichter"],
+ [ 4, "Maximale Anzahl – Standardverdichter"],
+ [ 5, "Maximale Anzahl - Außengerätelüfter"],
+ [ 6, "Maximale Anzahl - Expansionsventile"],
+ [ 7, "Maximale Anzahl - 4 Wege Ventile"],
+ [ 8, "Maximale Anzahl - Ölsumpfheizungen"],
+ [ 9, "Maximale Anzahl – Magnetventile"],
+ [ 10, "Max. anschließbare Innengerätezahl"],
+ [ 11, "Erkannte DX Innengerätezahl (max. 59 anzeigbar)"],
+ [ 12, "AG Software ID (xx)"],
+ [ 13, "AG Software ID (yy)"],
+ [ 14, "Max. Außengerät Leistung (kW)"],
+ [ 15, "Aktuelle Betriebsart"],
+ [ 16, "Thermostat EIN/AUS"],
+ [ 17, "Wiederanlaufverzögerung"],
+ [ 18, "Anlaufregelung"],
+ [ 19, "Abtauung"],
+ [ 20, "Ölrückführung"],
+ [ 21, "Druckausgleich"],
+ [ 22, "Lastabwurf"],
+ [ 23, "Schallreduzierter Betrieb"],
+ [ 24, "Betrieb / Störung"],
+ [ 25, "Störcode"],
+ [ 26, "Not translated yet"],
+ [ 27, "Zielhochdruck in °C (Zielverflüssigung)"],
+ [ 28, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 29, "Verdichtungsendtemp.Schutz retry"],
+ [ 30, "Verdichterüberstromschutz aktiv"],
+ [ 31, "Verdichterüberstromschutz retry"],
+ [ 32, "Hochdruckschutz aktiv"],
+ [ 33, "Hochdruckschutz retry"],
+ [ 34, "Niederdruckschutz aktiv"],
+ [ 35, "Niederdruckschutz retry"],
+ [ 36, "Inverterplatinentemp.Schutz aktiv"],
+ [ 37, "Inverterplatinentemp.Schutz retry"],
+ [ 38, "Sonstiger Schutzmodus"],
+ [ 39, "Nicht im Einsatz"],
+ [ 40, "AG EEPROM (1. Ziffer)"],
+ [ 41, "AG EEPROM (3. 4. Ziffer)"],
+ [ 42, "AG EEPROM (5. 6. Ziffer)"],
+ [ 43, "AG EEPROM (7. 8. Ziffer)"],
+ [ 44, "AG EEPROM (10. Ziffer)"],
+ [ 45, "AG EEPROM (11. Ziffer)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "R1T-Außentemperatur"],
+ [ 48, "O/U Wärmetauscher Temp."],
+ [ 49, "Verdichtungsendtemperatur"],
+ [ 50, "R21T - Saugleitung VDI 1"],
+ [ 51, "Wärmetauscher Mitteltemp."],
+ [ 52, "Flüssigkeitsleitungstemp. (R6T)"],
+ [ 53, "Hochdruck"],
+ [ 54, "Hochdruck in °C"],
+ [ 55, "Druck"],
+ [ 56, "Druck(T)"],
+ [ 57, "INV Platine Eingangsstrom (A) (Primärkreis)"],
+ [ 58, "Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"],
+ [ 59, "Inverter Platinentemperatur"],
+ [ 60, "Platinentemperatur Lüfter 1"],
+ [ 61, "Platinentemperatur Lüfter 2"],
+ [ 62, "Verdichtungsendtemperatur"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Drehzahl Verdichter (U/Sek)"],
+ [ 65, "Ventilator 1 (Stufe)"],
+ [ 66, "Ventilator 2 (Stufe)"],
+ [ 67, "Expansionsventil_1 (pls)"],
+ [ 68, "Y1E-Expansionsventil Mitteldruck_Unterkühler"],
+ [ 69, "Expansionsventil_3 (pls)"],
+ [ 70, "Expansionsventil_4 (pls)"],
+ [ 71, "Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"],
+ [ 72, "Ölsumpfheizung"],
+ [ 73, "Not translated yet"],
+ [ 74, "Not translated yet"],
+ [ 75, "Not translated yet"],
+ [ 76, "In-Out separator"],
+ [ 77, "Ansaugleitungstemperatur"],
+ [ 78, "AG Wärmetauschertemp."],
+ [ 79, "Flüssigkeitsleitungstemp."],
+ [ 80, "Druck"],
+ [ 81, "Expansionsventil_3 (pls)"],
+ [ 82, "AG Software ID"],
+ [ 83, "AG Software ID"],
+ [ 84, "HPS aktiviert"],
+ [ 85, "Betrieb absichern"],
+ [ 86, "Ölsumpfheizung"],
+ [ 87, "Not translated yet"],
+ [ 88, "Not translated yet"],
+ [ 89, "Not translated yet"],
+ [ 90, "Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"],
+ [ 91, "52C Output"],
+ [ 92, "Verdichtungsendtemp.Schutz aktiv"],
+ [ 93, "Aktiver Notlauf"],
+ [ 94, "Ausblasen der Inneneinheit bei 50 ° C"],
+ [ 95, "Leistungsstarkes Bit (MT-Einstellungsbit)"],
+ [ 96, "Verdichtertemperatur"],
+ [ 97, "R9T-Wassereintrittstemp. vor PWT"],
+ [ 98, "R10T-Wasseraustrittstemp. nach PWT"],
+ [ 99, "Y4S-Flüssigkeitnacheinspritung vor VDI"],
+ [ 100, "Bodenwannen/Ablauf Heizung (Option)"],
+ [ 101, "Heizband PWT"],
+ [ 102, "Ziel-Verdichtungsendtemperatur"],
+ [ 103, "Zielporttemperatur"],
+ [ 104, "Monobloc-Einstellung"],
+ [ 105, "Minichiller-Einstellung"],
+ [ 106, "MT-Einstellung"],
+ [ 107, "GSHP-Einstellung"],
+ [ 108, "Hydro split-Einstellung"],
+ [ 109, "Altherma LT-Einstellung"],
+ [ 110, "Daten Aktivieren/Deaktivieren"],
+ [ 111, "Adresse des Innengeräts"],
+ [ 112, "Betriebsart"],
+ [ 113, "Thermostat EIN/AUS"],
+ [ 114, "Frostschutz"],
+ [ 115, "Schallreduzierter Betrieb"],
+ [ 116, "Frostschutz für Wasserleitung"],
+ [ 117, "Störcode"],
+ [ 118, "Fehlerdetailcode"],
+ [ 119, "Betrieb / Störung"],
+ [ 120, "I/U Kapazitätscode"],
+ [ 121, "Sollwert Brauchwasser"],
+ [ 122, "Sollwert Heizungsvorlauf Hauptzone"],
+ [ 123, "Strömungsschalter (ON=OK)"],
+ [ 124, "Übertemperaturschutz Clixon BUH (ON=OK)"],
+ [ 125, "Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"],
+ [ 126, "HT/NT Tarif Abschaltung"],
+ [ 127, "Solar Eingang"],
+ [ 128, "Nicht im Einsatz"],
+ [ 129, "Nicht im Einsatz"],
+ [ 130, "Bivalenter Betrieb"],
+ [ 131, "2-Wege-Ventil_Shut Off Valve"],
+ [ 132, "3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"],
+ [ 133, "Heizstab Speicher (BSH)"],
+ [ 134, "Heizstab Stufe 1"],
+ [ 135, "Heizstab Stufe 2"],
+ [ 136, "Fußbodenkreis Abschaltventil"],
+ [ 137, "Umwälzpumpe 1 Hauptzone"],
+ [ 138, "Solarpumpe"],
+ [ 139, "IG Optionscode"],
+ [ 140, "Software Hydrobox (xx)"],
+ [ 141, "Software Hydrobox (yy)"],
+ [ 142, "EEPROM Hydrobox Version"],
+ [ 143, "Daten Aktivieren/Deaktivieren"],
+ [ 144, "Adresse des Innengeräts"],
+ [ 145, "R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"],
+ [ 146, "R2T-Wasser Vorlauftemp. nach dem Heizstab"],
+ [ 147, "R3T-Kältemittel Flüssigkeitstemperatur"],
+ [ 148, "R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"],
+ [ 149, "R5T-Brauchwassertemperatur im Speicher"],
+ [ 150, "IG Luftansaugtemperatur (R1T)"],
+ [ 151, "Ext. Raum-/Außentemperatursensor"],
+ [ 152, "Daten Aktivieren/Deaktivieren"],
+ [ 153, "Adresse des Innengeräts"],
+ [ 154, "Brachwasserbetrieb (DHW)"],
+ [ 155, "Speicher Eco-Mode"],
+ [ 156, "Speicher Kompfort-Mode"],
+ [ 157, "Speicher Power-Mode"],
+ [ 158, "Raumheizbetrieb"],
+ [ 159, "System AUS"],
+ [ 160, "Nicht im Einsatz"],
+ [ 161, "Notbetrieb aktiviert/nicht aktiviert"],
+ [ 162, "Sollwert Heizungsvorlauf Zusatzzone"],
+ [ 163, "Sollwert Raumtemperatur"],
+ [ 164, "Zusatz Raumthermostat Eingang Kühlen"],
+ [ 165, "Zusatz Raumthermostat Eingang Heizen"],
+ [ 166, "Haupt Raumthermostat Eingang Kühlen"],
+ [ 167, "Haupt Raumthermostat Eingang Heizen"],
+ [ 168, "Stromverbrauchsgrenze 4"],
+ [ 169, "Stromverbrauchsgrenze 3"],
+ [ 170, "Stromverbrauchsgrenze 2"],
+ [ 171, "Stromverbrauchsgrenze 1"],
+ [ 172, "Keine"],
+ [ 173, "Nicht im Einsatz"],
+ [ 174, "Nicht im Einsatz"],
+ [ 175, "Heizband PWT"],
+ [ 176, "Speicher Vorheizen"],
+ [ 177, "Umwälzpumpe 2 Zusatzzone"],
+ [ 178, "Alarmausgang"],
+ [ 179, "Ausgang Betriebsmeldung"],
+ [ 180, "Durchflussmenge (l/min)"],
+ [ 181, "Wasserdruck"],
+ [ 182, "Pumpengeschwindigkeit (0: Max-100: Stop)"],
+ [ 183, "[Zukunft] 3-Wege-Ventil Mischung 1"],
+ [ 184, "[Zukunft] 3-Wege-Ventil Mischung 2"],
+ [ 185, "Kältemittel-Drucksensor"],
+ [ 186, "Daten Aktivieren/Deaktivieren"],
+ [ 187, "Adresse des Innengeräts"],
+ [ 188, "I/U EEPROM (3. Ziffer)"],
+ [ 189, "I/U EEPROM (4. 5. Ziffer)"],
+ [ 190, "I/U EEPROM (6. 7. Ziffer)"],
+ [ 191, "I/U EEPROM (8. 9. Ziffer)"],
+ [ 192, "I/U EEPROM (11. Ziffer)"],
+ [ 193, "I/U EEPROM (12. Ziffer)(rev.)"],
+ [ 194, "Nicht im Einsatz"],
+ [ 195, "Nicht im Einsatz"],
+ [ 196, "Nicht im Einsatz"],
+ [ 197, "Nicht im Einsatz"],
+ [ 198, "Nicht im Einsatz"],
+ [ 199, "BUH Ausgangskapazität"],
+ [ 200, "CT-Sensormessung (L1)"],
+ [ 201, "CT-Sensormessung (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "CT-Sensormessung (L3)"],
+ [ 204, "Daten Aktivieren/Deaktivieren"],
+ [ 205, "Adresse des Innengeräts"],
+ [ 206, "Not translated yet"],
+ [ 207, "Abtauung"],
+ [ 208, "Power-Mode Anforderung"],
+ [ 209, "Trinkwasser Prioritätsanforderung"],
+ [ 210, "Not translated yet"],
+ [ 211, "Zusatzpumpe"],
+ [ 212, "Main pump"],
+ [ 213, "Not translated yet"],
+ [ 214, "BE_COP"],
+ [ 215, "Hybrid Heizung Solltemp."],
+ [ 216, "Gas/Boiler Heizung Solltemp."],
+ [ 217, "Zusatzpumpe"],
+ [ 218, "Main pump"],
+ [ 219, "Mischwassertemperatur"],
+ [ 220, "Zusatztemperaturfühler Brauchwasser DHW"],
+ [ 221, "Ziel Delta T (Heizen) (K)"],
+ [ 222, "Ziel Delta T (Kühlen) (K)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/ALTHERMA(HYBRID).json b/definitions/X10A/Italian/ALTHERMA(HYBRID).json
new file mode 100644
index 00000000..331425ae
--- /dev/null
+++ b/definitions/X10A/Italian/ALTHERMA(HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(HYBRID)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. aria esterna"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. Media scambiatore di calore O/U"],
+ [ 59, "Temp. tubo del liquido"],
+ [ 60, "Temp. aletta INV"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Corrente primaria INV (A)"],
+ [ 66, "Corrente secondaria INV (A)"],
+ [ 67, "Tensione (V)"],
+ [ 68, "Interruttore flusso salamoia"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Temp. ingresso salamoia"],
+ [ 77, "Temp. uscita salamoia"],
+ [ 78, "Ing. evap. temp. refrig."],
+ [ 79, "Usc. evap. temp. refrig."],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "Non in uso"],
+ [ 83, "Non in uso"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Frequenza INV (giri/sec.)"],
+ [ 86, "Frequenza INV 2 (giri/sec.)"],
+ [ 87, "Compressore STD 1"],
+ [ 88, "Compressore STD 2"],
+ [ 89, "Ventilatore 1 (10 rpm)"],
+ [ 90, "Ventilatore 2 (gradino)"],
+ [ 91, "Valvola di espansione elettron.1(pls)"],
+ [ 92, "Valvola di espansione elettron.2(pls)"],
+ [ 93, "Valvola di espansione elettron.3(pls)"],
+ [ 94, "Valvola di espansione elettron.4(pls)"],
+ [ 95, "Valvola di espansione elettron.5(pls)"],
+ [ 96, "Valvola a 4 vie 1"],
+ [ 97, "Valvola a 4 vie 2"],
+ [ 98, "Valvola a 4 vie 3"],
+ [ 99, "Valvola a 4 vie 4"],
+ [ 100, "Valvola a 4 vie 5"],
+ [ 101, "Riscaldatore del carter 1"],
+ [ 102, "Riscaldatore del carter 2"],
+ [ 103, "Riscaldatore del carter 3"],
+ [ 104, "Riscaldatore del carter 4"],
+ [ 105, "Riscaldatore del carter 5"],
+ [ 106, "Elettrovalvola 1"],
+ [ 107, "SV (BPH)"],
+ [ 108, "Elettrovalvola 3"],
+ [ 109, "Elettrovalvola 4"],
+ [ 110, "Elettrovalvola 5"],
+ [ 111, "In-Out separator"],
+ [ 112, "Abilita/disabilita dati"],
+ [ 113, "Indirizzo unità interna"],
+ [ 114, "I/U modo di funzionamento"],
+ [ 115, "Termostato ON/OFF"],
+ [ 116, "Prevenzione congelamento"],
+ [ 117, "Modalità silenziosa"],
+ [ 118, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 119, "Codice malfunzionamento"],
+ [ 120, "Codice unità interna"],
+ [ 121, "Codice capacità I/U"],
+ [ 122, "Valore di riferimento DHW"],
+ [ 123, "Valore di riferimento LW (principale)"],
+ [ 124, "Interruttore portata d acqua"],
+ [ 125, "Protezione termica (Q1L) BUH"],
+ [ 126, "Protezione termica BSH"],
+ [ 127, "Alimentazione flusso kWh benefit"],
+ [ 128, "Entrata solare"],
+ [ 129, "Non in uso"],
+ [ 130, "Non in uso"],
+ [ 131, "Funzionamento bivalente"],
+ [ 132, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 133, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 134, "BSH"],
+ [ 135, "Gradino1 BUH"],
+ [ 136, "Gradino2 BUH"],
+ [ 137, "BPH"],
+ [ 138, "Funzionamento pompa dell acqua"],
+ [ 139, "Funzionamento pompa solare"],
+ [ 140, "Codice opzione interna"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Abilita/disabilita dati"],
+ [ 145, "Indirizzo unità interna"],
+ [ 146, "Temp. acqua in uscita scambiatore di calore (R1T)"],
+ [ 147, "Temp. acqua in uscita BUH (R2T)"],
+ [ 148, "Lato liquido temp. refrig. (R3T)"],
+ [ 149, "Temp. acqua ingresso (R4T)"],
+ [ 150, "Temp. serbatoio DHW (R5T)"],
+ [ 151, "Temp. RT"],
+ [ 152, "Sensore est. o ambiente esterno"],
+ [ 153, "Abilita/disabilita dati"],
+ [ 154, "Indirizzo unità interna"],
+ [ 155, "Risc. prev/mant ON/OFF"],
+ [ 156, "Eco serbatoio ON/OFF"],
+ [ 157, "Comfort serbatoio ON/OFF"],
+ [ 158, "Funzionamento DHW potente. ON/OFF"],
+ [ 159, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 160, "Sistema OFF"],
+ [ 161, "Non in uso"],
+ [ 162, "Emergenza (interna) Attiva/non Attiva"],
+ [ 163, "Valore di riferimento LW (aggiuntivo)"],
+ [ 164, "Valore di riferimento RT"],
+ [ 165, "Raffredd. entrata RT est. agg."],
+ [ 166, "Riscaldam. entrata RT est. agg."],
+ [ 167, "Raffreddamento RT principale"],
+ [ 168, "Riscaldamento RT principale"],
+ [ 169, "Limite 4 consumo energetico"],
+ [ 170, "Limite 3 consumo energetico"],
+ [ 171, "Limite 2 consumo energetico"],
+ [ 172, "Limite 1 consumo energetico"],
+ [ 173, "Nessuno"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Prerisc. serbatoio ON/OFF"],
+ [ 178, "Funzionamento pompa di circolazione"],
+ [ 179, "Uscita allarme"],
+ [ 180, "Funz. raff./risc. ambienti o BPH"],
+ [ 181, "Sensore flusso (l/min)"],
+ [ 182, "Pressione acqua"],
+ [ 183, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 184, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 185, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Non in uso"],
+ [ 193, "Non in uso"],
+ [ 194, "Non in uso"],
+ [ 195, "Abilita/disabilita dati"],
+ [ 196, "Indirizzo unità interna"],
+ [ 197, "I/U EEPROM (3º cifra)"],
+ [ 198, "I/U EEPROM (4º 5º cifra)"],
+ [ 199, "I/U EEPROM (6º 7º cifra)"],
+ [ 200, "I/U EEPROM (8º 9º cifra)"],
+ [ 201, "I/U EEPROM (11º cifra)"],
+ [ 202, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 203, "Abilita/disabilita dati"],
+ [ 204, "Indirizzo unità interna"],
+ [ 205, "Modalità funz. ibrido"],
+ [ 206, "Funzionamento boiler su richiesta"],
+ [ 207, "Boiler DHW su richiesta"],
+ [ 208, "Uscita valvola bypass"],
+ [ 209, "Modalità ACS ibrida"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. target riscaldamento ibrido"],
+ [ 212, "Temp. target riscaldamento boiler"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_04-08KW).json b/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_04-08KW).json
new file mode 100644
index 00000000..59c4d10d
--- /dev/null
+++ b/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_04-08KW).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_04-08KW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (gradino)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice dettagliato errore"],
+ [ 118, "Tipo malfunzionamento"],
+ [ 119, "Codice capacità I/U"],
+ [ 120, "Valore di riferimento DHW"],
+ [ 121, "Valore di riferimento LW (principale)"],
+ [ 122, "Interruttore portata d acqua"],
+ [ 123, "Protezione termica (Q1L) BUH"],
+ [ 124, "Protezione termica BSH"],
+ [ 125, "Alimentazione flusso kWh benefit"],
+ [ 126, "Entrata solare"],
+ [ 127, "Non in uso"],
+ [ 128, "Non in uso"],
+ [ 129, "Funzionamento bivalente"],
+ [ 130, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 131, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 132, "BSH"],
+ [ 133, "Gradino1 BUH"],
+ [ 134, "Gradino2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Funzionamento pompa dell acqua"],
+ [ 137, "Funzionamento pompa solare"],
+ [ 138, "Codice opzione interna"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Abilita/disabilita dati"],
+ [ 143, "Indirizzo unità interna"],
+ [ 144, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 145, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 146, "Lato liquido temp. refrig. (R3T)"],
+ [ 147, "Temp. acqua ingresso (R4T)"],
+ [ 148, "Temp. serbatoio DHW (R5T)"],
+ [ 149, "Temp. ambiente interna (R1T)"],
+ [ 150, "Sensore ambiente interno est. (R6T)"],
+ [ 151, "Abilita/disabilita dati"],
+ [ 152, "Indirizzo unità interna"],
+ [ 153, "Risc. prev/mant ON/OFF"],
+ [ 154, "Eco serbatoio ON/OFF"],
+ [ 155, "Comfort serbatoio ON/OFF"],
+ [ 156, "Funzionamento DHW potente. ON/OFF"],
+ [ 157, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 158, "Sistema OFF"],
+ [ 159, "Non in uso"],
+ [ 160, "Emergenza (interna) Attiva/non Attiva"],
+ [ 161, "Valore di riferimento LW (aggiuntivo)"],
+ [ 162, "Valore di riferimento RT"],
+ [ 163, "Raffredd. entrata RT est. agg."],
+ [ 164, "Riscaldam. entrata RT est. agg."],
+ [ 165, "Raffreddamento RT principale"],
+ [ 166, "Riscaldamento RT principale"],
+ [ 167, "Limite 4 consumo energetico"],
+ [ 168, "Limite 3 consumo energetico"],
+ [ 169, "Limite 2 consumo energetico"],
+ [ 170, "Limite 1 consumo energetico"],
+ [ 171, "Nessuno"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Prerisc. serbatoio ON/OFF"],
+ [ 176, "Funzionamento pompa di circolazione"],
+ [ 177, "Uscita allarme"],
+ [ 178, "Uscita funzionamento riscald. ambienti"],
+ [ 179, "Sensore flusso (l/min)"],
+ [ 180, "Pressione acqua"],
+ [ 181, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 182, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 183, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Non in uso"],
+ [ 193, "Abilita/disabilita dati"],
+ [ 194, "Indirizzo unità interna"],
+ [ 195, "I/U EEPROM (3º cifra)"],
+ [ 196, "I/U EEPROM (4º 5º cifra)"],
+ [ 197, "I/U EEPROM (6º 7º cifra)"],
+ [ 198, "I/U EEPROM (8º 9º cifra)"],
+ [ 199, "I/U EEPROM (11º cifra)"],
+ [ 200, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 201, "Abilita/disabilita dati"],
+ [ 202, "Indirizzo unità interna"],
+ [ 203, "Modalità funz. ibrido"],
+ [ 204, "Funzionamento boiler su richiesta"],
+ [ 205, "Boiler DHW su richiesta"],
+ [ 206, "Uscita valvola bypass"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. target riscaldamento ibrido"],
+ [ 209, "Temp. target riscaldamento boiler"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_11-16KW).json b/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_11-16KW).json
new file mode 100644
index 00000000..5c8538ef
--- /dev/null
+++ b/definitions/X10A/Italian/ALTHERMA(LT_CA_CB_11-16KW).json
@@ -0,0 +1,209 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_11-16KW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Temp. dissipatore"],
+ [ 54, "Pressione"],
+ [ 55, "Pressione(T)"],
+ [ 56, "Non in uso"],
+ [ 57, "Non in uso"],
+ [ 58, "Corrente primaria INV (A)"],
+ [ 59, "Corrente secondaria INV (A)"],
+ [ 60, "Voltaggio (N-fase) (V)"],
+ [ 61, "Interruttore flusso salamoia"],
+ [ 62, "Non in uso"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Non in uso"],
+ [ 66, "Non in uso"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Temp. ingresso salamoia"],
+ [ 70, "Temp. uscita salamoia"],
+ [ 71, "Ing. evap. temp. refrig."],
+ [ 72, "Usc. evap. temp. refrig."],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Non in uso"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frequenza INV (giri/sec.)"],
+ [ 79, "Ventilatore 1 (gradino)"],
+ [ 80, "Ventilatore 2 (gradino)"],
+ [ 81, "Valvola di espansione elettron.1(pls)"],
+ [ 82, "Valvola di espansione elettron.2(pls)"],
+ [ 83, "Valvola a 4 vie 1"],
+ [ 84, "Valvola a 4 vie 2"],
+ [ 85, "Valvola a 4 vie 3"],
+ [ 86, "Valvola a 4 vie 4"],
+ [ 87, "Valvola a 4 vie 5"],
+ [ 88, "Riscaldatore del carter 1"],
+ [ 89, "Riscaldatore del carter 2"],
+ [ 90, "Riscaldatore del carter 3"],
+ [ 91, "Riscaldatore del carter 4"],
+ [ 92, "SV1 (gas caldo)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Elettrovalvola 3"],
+ [ 95, "Elettrovalvola 4"],
+ [ 96, "Elettrovalvola 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Abilita/disabilita dati"],
+ [ 99, "Indirizzo unità interna"],
+ [ 100, "I/U modo di funzionamento"],
+ [ 101, "Termostato ON/OFF"],
+ [ 102, "Prevenzione congelamento"],
+ [ 103, "Modalità silenziosa"],
+ [ 104, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 105, "Codice malfunzionamento"],
+ [ 106, "Codice unità interna"],
+ [ 107, "Codice capacità I/U"],
+ [ 108, "Valore di riferimento DHW"],
+ [ 109, "Valore di riferimento LW (principale)"],
+ [ 110, "Interruttore portata d acqua"],
+ [ 111, "Protezione termica BUH"],
+ [ 112, "Protezione termica BSH"],
+ [ 113, "Alimentazione flusso kWh benefit"],
+ [ 114, "Entrata solare"],
+ [ 115, "Non in uso"],
+ [ 116, "Non in uso"],
+ [ 117, "Funzionamento bivalente"],
+ [ 118, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 119, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 120, "BSH"],
+ [ 121, "Gradino1 BUH"],
+ [ 122, "Gradino2 BUH"],
+ [ 123, "BPH"],
+ [ 124, "Funzionamento pompa dell acqua"],
+ [ 125, "Funzionamento pompa solare"],
+ [ 126, "Codice opzione interna"],
+ [ 127, "I/U Software ID (xx)"],
+ [ 128, "I/U Software ID (yy)"],
+ [ 129, "I/U EEPROM Ver."],
+ [ 130, "Abilita/disabilita dati"],
+ [ 131, "Indirizzo unità interna"],
+ [ 132, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 133, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 134, "Lato liquido temp. refrig. (R3T)"],
+ [ 135, "Temp. acqua ingresso (R4T)"],
+ [ 136, "Temp. serbatoio DHW (R5T)"],
+ [ 137, "Temp. ambiente interna (R1T)"],
+ [ 138, "Sensore ambiente interno est. (R6T)"],
+ [ 139, "Abilita/disabilita dati"],
+ [ 140, "Indirizzo unità interna"],
+ [ 141, "Risc. prev/mant ON/OFF"],
+ [ 142, "Eco serbatoio ON/OFF"],
+ [ 143, "Comfort serbatoio ON/OFF"],
+ [ 144, "Funzionamento DHW potente. ON/OFF"],
+ [ 145, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 146, "Sistema OFF"],
+ [ 147, "Non in uso"],
+ [ 148, "Emergenza (interna) Attiva/non Attiva"],
+ [ 149, "Valore di riferimento LW (aggiuntivo)"],
+ [ 150, "Valore di riferimento RT"],
+ [ 151, "Raffredd. entrata RT est. agg."],
+ [ 152, "Riscaldam. entrata RT est. agg."],
+ [ 153, "Raffreddamento RT principale"],
+ [ 154, "Riscaldamento RT principale"],
+ [ 155, "Limite 4 consumo energetico"],
+ [ 156, "Limite 3 consumo energetico"],
+ [ 157, "Limite 2 consumo energetico"],
+ [ 158, "Limite 1 consumo energetico"],
+ [ 159, "Nessuno"],
+ [ 160, "Non in uso"],
+ [ 161, "Non in uso"],
+ [ 162, "Non in uso"],
+ [ 163, "Prerisc. serbatoio ON/OFF"],
+ [ 164, "Funzionamento pompa di circolazione"],
+ [ 165, "Uscita allarme"],
+ [ 166, "Uscita funzionamento riscald. ambienti"],
+ [ 167, "Sensore flusso (l/min)"],
+ [ 168, "Pressione acqua"],
+ [ 169, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 170, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 171, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Non in uso"],
+ [ 178, "Non in uso"],
+ [ 179, "Non in uso"],
+ [ 180, "Non in uso"],
+ [ 181, "Abilita/disabilita dati"],
+ [ 182, "Indirizzo unità interna"],
+ [ 183, "I/U EEPROM (3º cifra)"],
+ [ 184, "I/U EEPROM (4º 5º cifra)"],
+ [ 185, "I/U EEPROM (6º 7º cifra)"],
+ [ 186, "I/U EEPROM (8º 9º cifra)"],
+ [ 187, "I/U EEPROM (11º cifra)"],
+ [ 188, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 189, "Abilita/disabilita dati"],
+ [ 190, "Indirizzo unità interna"],
+ [ 191, "Modalità funz. ibrido"],
+ [ 192, "Funzionamento boiler su richiesta"],
+ [ 193, "Boiler DHW su richiesta"],
+ [ 194, "Uscita valvola bypass"],
+ [ 195, "BE_COP"],
+ [ 196, "Temp. target riscaldamento ibrido"],
+ [ 197, "Temp. target riscaldamento boiler"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/ALTHERMA(LT_MULTI_DHWHP).json b/definitions/X10A/Italian/ALTHERMA(LT_MULTI_DHWHP).json
new file mode 100644
index 00000000..d0f5585d
--- /dev/null
+++ b/definitions/X10A/Italian/ALTHERMA(LT_MULTI_DHWHP).json
@@ -0,0 +1,221 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_DHWHP)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (gradino)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice unità interna"],
+ [ 118, "Codice capacità I/U"],
+ [ 119, "Valore di riferimento DHW"],
+ [ 120, "Valore di riferimento LW (principale)"],
+ [ 121, "Interruttore portata d acqua"],
+ [ 122, "Protezione termica (Q1L) BUH"],
+ [ 123, "Protezione termica BSH"],
+ [ 124, "Alimentazione flusso kWh benefit"],
+ [ 125, "Entrata solare"],
+ [ 126, "Non in uso"],
+ [ 127, "Non in uso"],
+ [ 128, "Funzionamento bivalente"],
+ [ 129, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 130, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 131, "BSH"],
+ [ 132, "Gradino1 BUH"],
+ [ 133, "Gradino2 BUH"],
+ [ 134, "Valvola chiusura pavimento"],
+ [ 135, "Funzionamento pompa dell acqua"],
+ [ 136, "Funzionamento pompa solare"],
+ [ 137, "Codice opzione interna"],
+ [ 138, "I/U Software ID (xx)"],
+ [ 139, "I/U Software ID (yy)"],
+ [ 140, "I/U EEPROM Ver."],
+ [ 141, "Abilita/disabilita dati"],
+ [ 142, "Indirizzo unità interna"],
+ [ 143, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 144, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 145, "Lato liquido temp. refrig. (R3T)"],
+ [ 146, "Temp. acqua ingresso (R4T)"],
+ [ 147, "Temp. serbatoio DHW (R5T)"],
+ [ 148, "Temp. ambiente interna (R1T)"],
+ [ 149, "Sensore ambiente interno est. (R6T)"],
+ [ 150, "Abilita/disabilita dati"],
+ [ 151, "Indirizzo unità interna"],
+ [ 152, "Risc. prev/mant ON/OFF"],
+ [ 153, "Eco serbatoio ON/OFF"],
+ [ 154, "Comfort serbatoio ON/OFF"],
+ [ 155, "Funzionamento DHW potente. ON/OFF"],
+ [ 156, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 157, "Sistema OFF"],
+ [ 158, "Non in uso"],
+ [ 159, "Emergenza (interna) Attiva/non Attiva"],
+ [ 160, "Valore di riferimento LW (aggiuntivo)"],
+ [ 161, "Valore di riferimento RT"],
+ [ 162, "Raffredd. entrata RT est. agg."],
+ [ 163, "Riscaldam. entrata RT est. agg."],
+ [ 164, "Raffreddamento RT principale"],
+ [ 165, "Riscaldamento RT principale"],
+ [ 166, "Limite 4 consumo energetico"],
+ [ 167, "Limite 3 consumo energetico"],
+ [ 168, "Limite 2 consumo energetico"],
+ [ 169, "Limite 1 consumo energetico"],
+ [ 170, "Nessuno"],
+ [ 171, "Inibizione sbrinamento ON/OFF"],
+ [ 172, "Richiesta powerfull"],
+ [ 173, "Priorità richiesta ACS"],
+ [ 174, "Conflitto modalità"],
+ [ 175, "Funzionamento pompa di circolazione"],
+ [ 176, "Uscita allarme"],
+ [ 177, "Uscita funzionamento riscald. ambienti"],
+ [ 178, "Sensore flusso (l/min)"],
+ [ 179, "Pressione acqua"],
+ [ 180, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 181, "Mixing 1 valvola a 3 vie"],
+ [ 182, "Mixing 2 valvola a 3 vie"],
+ [ 183, "Non in uso"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Abilita/disabilita dati"],
+ [ 193, "Indirizzo unità interna"],
+ [ 194, "I/U EEPROM (3º cifra)"],
+ [ 195, "I/U EEPROM (4º 5º cifra)"],
+ [ 196, "I/U EEPROM (6º 7º cifra)"],
+ [ 197, "I/U EEPROM (8º 9º cifra)"],
+ [ 198, "I/U EEPROM (11º cifra)"],
+ [ 199, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 200, "Abilita/disabilita dati"],
+ [ 201, "Indirizzo unità interna"],
+ [ 202, "Modalità funz. ibrido"],
+ [ 203, "Funzionamento boiler su richiesta"],
+ [ 204, "Boiler DHW su richiesta"],
+ [ 205, "Uscita valvola bypass"],
+ [ 206, "BE_COP"],
+ [ 207, "Temp. target riscaldamento ibrido"],
+ [ 208, "Temp. target riscaldamento boiler"],
+ [ 209, "Add pump"],
+ [ 210, "Main pump"],
+ [ 211, "Mixed water temp.(R7T)"],
+ [ 212, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/ALTHERMA(LT_MULTI_HYBRID).json b/definitions/X10A/Italian/ALTHERMA(LT_MULTI_HYBRID).json
new file mode 100644
index 00000000..92e0a5a9
--- /dev/null
+++ b/definitions/X10A/Italian/ALTHERMA(LT_MULTI_HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_HYBRID)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (gradino)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice unità interna"],
+ [ 118, "Codice capacità I/U"],
+ [ 119, "Valore di riferimento DHW"],
+ [ 120, "Valore di riferimento LW (principale)"],
+ [ 121, "Interruttore portata d acqua"],
+ [ 122, "Protezione termica (Q1L) BUH"],
+ [ 123, "Protezione termica BSH"],
+ [ 124, "Alimentazione flusso kWh benefit"],
+ [ 125, "Entrata solare"],
+ [ 126, "Non in uso"],
+ [ 127, "Non in uso"],
+ [ 128, "Funzionamento bivalente"],
+ [ 129, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 130, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 131, "BSH"],
+ [ 132, "Gradino1 BUH"],
+ [ 133, "Gradino2 BUH"],
+ [ 134, "Valvola chiusura pavimento"],
+ [ 135, "Funzionamento pompa dell acqua"],
+ [ 136, "Funzionamento pompa solare"],
+ [ 137, "Codice opzione interna"],
+ [ 138, "I/U Software ID (xx)"],
+ [ 139, "I/U Software ID (yy)"],
+ [ 140, "I/U EEPROM Ver."],
+ [ 141, "Abilita/disabilita dati"],
+ [ 142, "Indirizzo unità interna"],
+ [ 143, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 144, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 145, "Lato liquido temp. refrig. (R3T)"],
+ [ 146, "Temp. acqua ingresso (R4T)"],
+ [ 147, "Temp. serbatoio DHW (R5T)"],
+ [ 148, "Temp. ambiente interna (R1T)"],
+ [ 149, "Sensore ambiente interno est. (R6T)"],
+ [ 150, "Abilita/disabilita dati"],
+ [ 151, "Indirizzo unità interna"],
+ [ 152, "Risc. prev/mant ON/OFF"],
+ [ 153, "Eco serbatoio ON/OFF"],
+ [ 154, "Comfort serbatoio ON/OFF"],
+ [ 155, "Funzionamento DHW potente. ON/OFF"],
+ [ 156, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 157, "Sistema OFF"],
+ [ 158, "Non in uso"],
+ [ 159, "Emergenza (interna) Attiva/non Attiva"],
+ [ 160, "Valore di riferimento LW (aggiuntivo)"],
+ [ 161, "Valore di riferimento RT"],
+ [ 162, "Raffredd. entrata RT est. agg."],
+ [ 163, "Riscaldam. entrata RT est. agg."],
+ [ 164, "Raffreddamento RT principale"],
+ [ 165, "Riscaldamento RT principale"],
+ [ 166, "Limite 4 consumo energetico"],
+ [ 167, "Limite 3 consumo energetico"],
+ [ 168, "Limite 2 consumo energetico"],
+ [ 169, "Limite 1 consumo energetico"],
+ [ 170, "Nessuno"],
+ [ 171, "Inibizione sbrinamento ON/OFF"],
+ [ 172, "Richiesta powerfull"],
+ [ 173, "Priorità richiesta ACS"],
+ [ 174, "Conflitto modalità"],
+ [ 175, "Funzionamento pompa di circolazione"],
+ [ 176, "Uscita allarme"],
+ [ 177, "Uscita funzionamento riscald. ambienti"],
+ [ 178, "Sensore flusso (l/min)"],
+ [ 179, "Pressione acqua"],
+ [ 180, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 181, "Mixing 1 valvola a 3 vie"],
+ [ 182, "Mixing 2 valvola a 3 vie"],
+ [ 183, "Non in uso"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Abilita/disabilita dati"],
+ [ 193, "Indirizzo unità interna"],
+ [ 194, "I/U EEPROM (3º cifra)"],
+ [ 195, "I/U EEPROM (4º 5º cifra)"],
+ [ 196, "I/U EEPROM (6º 7º cifra)"],
+ [ 197, "I/U EEPROM (8º 9º cifra)"],
+ [ 198, "I/U EEPROM (11º cifra)"],
+ [ 199, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 200, "Abilita/disabilita dati"],
+ [ 201, "Indirizzo unità interna"],
+ [ 202, "Modalità funz. ibrido"],
+ [ 203, "Funzionamento boiler su richiesta"],
+ [ 204, "Boiler DHW su richiesta"],
+ [ 205, "Uscita valvola bypass"],
+ [ 206, "Modalità ACS ibrida"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. target riscaldamento ibrido"],
+ [ 209, "Temp. target riscaldamento boiler"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json b/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
new file mode 100644
index 00000000..6342fd85
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 4-8kW Monobloc)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temperatura liquido (R3T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Sensore di pressione(T)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacità di output"],
+ [ 201, "Misura del sensore CT (L1)"],
+ [ 202, "Misura del sensore CT (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "Misura del sensore CT (L3)"],
+ [ 205, "Abilita/disabilita dati"],
+ [ 206, "Indirizzo unità interna"],
+ [ 207, "Modalità funz. ibrido"],
+ [ 208, "Funzionamento boiler su richiesta"],
+ [ 209, "Boiler DHW su richiesta"],
+ [ 210, "Uscita valvola bypass"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. target riscaldamento ibrido"],
+ [ 213, "Temp. target riscaldamento boiler"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura dell acqua miscelata"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json b/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
new file mode 100644
index 00000000..552f0891
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
@@ -0,0 +1,232 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 9-16kW Monobloc)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Non in uso"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Non in uso"],
+ [ 199, "BUH capacità di output"],
+ [ 200, "Misura del sensore CT (L1)"],
+ [ 201, "Misura del sensore CT (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "Misura del sensore CT (L3)"],
+ [ 204, "Abilita/disabilita dati"],
+ [ 205, "Indirizzo unità interna"],
+ [ 206, "Modalità funz. ibrido"],
+ [ 207, "Funzionamento boiler su richiesta"],
+ [ 208, "Boiler DHW su richiesta"],
+ [ 209, "Uscita valvola bypass"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. target riscaldamento ibrido"],
+ [ 212, "Temp. target riscaldamento boiler"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura dell acqua miscelata"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"],
+ [ 219, "Abilita/disabilita dati"],
+ [ 220, "Indirizzo unità interna"],
+ [ 221, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 222, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 223, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json b/definitions/X10A/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
new file mode 100644
index 00000000..127ac1fa
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
@@ -0,0 +1,179 @@
+{
+ "Model": "Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Termistore 2 fasi (R4T)"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Inserimento temp. salamoia (R5T)"],
+ [ 52, "Temp. salamoia uscita (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Feedback pompa salamoia"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola a 4 vie (Y1S)"],
+ [ 74, "Y2S"],
+ [ 75, "Y3S"],
+ [ 76, "Elettrovalvola 4"],
+ [ 77, "Elettrovalvola 5"],
+ [ 78, "In-Out separator"],
+ [ 79, "Abilita/disabilita dati"],
+ [ 80, "Indirizzo unità interna"],
+ [ 81, "I/U modo di funzionamento"],
+ [ 82, "Termostato ON/OFF"],
+ [ 83, "Prevenzione congelamento"],
+ [ 84, "Modalità silenziosa"],
+ [ 85, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 86, "Codice malfunzionamento"],
+ [ 87, "Codice dettagliato errore"],
+ [ 88, "Tipo malfunzionamento"],
+ [ 89, "Capacità unità interna"],
+ [ 90, "Valore di riferimento DHW"],
+ [ 91, "Valore di riferimento LW (principale)"],
+ [ 92, "Interruttore portata d acqua"],
+ [ 93, "Protezione termica (Q1L) BUH"],
+ [ 94, "Protezione termica BSH"],
+ [ 95, "Alimentazione flusso kWh benefit"],
+ [ 96, "Entrata solare"],
+ [ 97, "Non in uso"],
+ [ 98, "Non in uso"],
+ [ 99, "Funzionamento bivalente"],
+ [ 100, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 101, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 102, "BSH"],
+ [ 103, "Gradino1 BUH"],
+ [ 104, "Gradino2 BUH"],
+ [ 105, "Valvola chiusura pavimento"],
+ [ 106, "Funzionamento pompa dell acqua"],
+ [ 107, "Funzionamento pompa solare"],
+ [ 108, "Codice opzione interna"],
+ [ 109, "I/U Software ID (xx)"],
+ [ 110, "I/U Software ID (yy)"],
+ [ 111, "I/U EEPROM Ver."],
+ [ 112, "Abilita/disabilita dati"],
+ [ 113, "Indirizzo unità interna"],
+ [ 114, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 115, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 116, "Lato liquido temp. refrig. (R3T)"],
+ [ 117, "Temp. acqua ingresso (R4T)"],
+ [ 118, "Temp. serbatoio DHW (R5T)"],
+ [ 119, "Temp. ambiente interna (R1T)"],
+ [ 120, "Sensore ambiente interno est. (R6T)"],
+ [ 121, "Abilita/disabilita dati"],
+ [ 122, "Indirizzo unità interna"],
+ [ 123, "Risc. prev/mant ON/OFF"],
+ [ 124, "Eco serbatoio ON/OFF"],
+ [ 125, "Comfort serbatoio ON/OFF"],
+ [ 126, "Funzionamento DHW potente. ON/OFF"],
+ [ 127, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 128, "Sistema OFF"],
+ [ 129, "Non in uso"],
+ [ 130, "Emergenza (interna) Attiva/non Attiva"],
+ [ 131, "Valore di riferimento LW (aggiuntivo)"],
+ [ 132, "Valore di riferimento RT"],
+ [ 133, "Raffredd. entrata RT est. agg."],
+ [ 134, "Riscaldam. entrata RT est. agg."],
+ [ 135, "Raffreddamento RT principale"],
+ [ 136, "Riscaldamento RT principale"],
+ [ 137, "Limite 4 consumo energetico"],
+ [ 138, "Limite 3 consumo energetico"],
+ [ 139, "Limite 2 consumo energetico"],
+ [ 140, "Limite 1 consumo energetico"],
+ [ 141, "Nessuno"],
+ [ 142, "Non in uso"],
+ [ 143, "Non in uso"],
+ [ 144, "Riscaldatore PHE"],
+ [ 145, "Prerisc. serbatoio ON/OFF"],
+ [ 146, "Funzionamento pompa di circolazione"],
+ [ 147, "Uscita allarme"],
+ [ 148, "Uscita funzionamento riscald. ambienti"],
+ [ 149, "Sensore flusso (l/min)"],
+ [ 150, "Pressione acqua"],
+ [ 151, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 152, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 153, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 154, "Sensore di pressione del refrigerante"],
+ [ 155, "Abilita/disabilita dati"],
+ [ 156, "Indirizzo unità interna"],
+ [ 157, "I/U EEPROM (3º cifra)"],
+ [ 158, "I/U EEPROM (4º 5º cifra)"],
+ [ 159, "I/U EEPROM (6º 7º cifra)"],
+ [ 160, "I/U EEPROM (8º 9º cifra)"],
+ [ 161, "I/U EEPROM (11º cifra)"],
+ [ 162, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 163, "BUH capacità di output"],
+ [ 164, "Misura del sensore CT (L1)"],
+ [ 165, "Misura del sensore CT (L2)"],
+ [ 166, "Misura del sensore CT (L3)"],
+ [ 167, "Operazione HP forzata dall installatore"],
+ [ 168, "2nd Domestic hot water temperature"],
+ [ 169, "Target delta T heating"],
+ [ 170, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EGSQH-A series 10kW GEO2).json b/definitions/X10A/Italian/Altherma(EGSQH-A series 10kW GEO2).json
new file mode 100644
index 00000000..2d9107ff
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EGSQH-A series 10kW GEO2).json
@@ -0,0 +1,220 @@
+{
+ "Model": "Altherma(EGSQH-A series 10kW GEO2)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Termistore 2 fasi (R4T)"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temp. tubo di aspirazione(R3T)"],
+ [ 58, "Inserimento temp. salamoia (R5T)"],
+ [ 59, "Temp. salamoia uscita (R6T)"],
+ [ 60, "Temp. dissipatore (R10T)"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Corrente primaria INV (A)"],
+ [ 66, "Corrente secondaria INV (A)"],
+ [ 67, "Voltaggio (N-fase) (V)"],
+ [ 68, "Interruttore flusso salamoia"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Temp. ingresso salamoia"],
+ [ 77, "Temp. uscita salamoia"],
+ [ 78, "Ing. evap. temp. refrig."],
+ [ 79, "Usc. evap. temp. refrig."],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "Non in uso"],
+ [ 83, "Non in uso"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Frequenza INV (giri/sec.)"],
+ [ 86, "Frequenza INV 2 (giri/sec.)"],
+ [ 87, "Compressore STD 1"],
+ [ 88, "Compressore STD 2"],
+ [ 89, "Ventilatore 1 (gradino)"],
+ [ 90, "Ventilatore 2 (gradino)"],
+ [ 91, "Valvola di espansione elettron.(pls)"],
+ [ 92, "Valvola di espansione elettron.2(pls)"],
+ [ 93, "Valvola di espansione elettron.3(pls)"],
+ [ 94, "Valvola di espansione elettron.4(pls)"],
+ [ 95, "Valvola di espansione elettron.5(pls)"],
+ [ 96, "Valvola a 4 vie"],
+ [ 97, "Valvola a 4 vie 2"],
+ [ 98, "Valvola a 4 vie 3"],
+ [ 99, "Valvola a 4 vie 4"],
+ [ 100, "Valvola a 4 vie 5"],
+ [ 101, "Riscaldatore del carter"],
+ [ 102, "Riscaldatore del carter 2"],
+ [ 103, "Riscaldatore del carter 3"],
+ [ 104, "Riscaldatore del carter 4"],
+ [ 105, "SV (gas caldo)"],
+ [ 106, "SV (BPH)"],
+ [ 107, "Elettrovalvola 3"],
+ [ 108, "Elettrovalvola 4"],
+ [ 109, "Elettrovalvola 5"],
+ [ 110, "In-Out separator"],
+ [ 111, "Abilita/disabilita dati"],
+ [ 112, "Indirizzo unità interna"],
+ [ 113, "I/U modo di funzionamento"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Prevenzione congelamento"],
+ [ 116, "Modalità silenziosa"],
+ [ 117, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 118, "Codice malfunzionamento"],
+ [ 119, "Codice unità interna"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Non in uso"],
+ [ 129, "Non in uso"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "BPH"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Non in uso"],
+ [ 193, "Non in uso"],
+ [ 194, "Abilita/disabilita dati"],
+ [ 195, "Indirizzo unità interna"],
+ [ 196, "I/U EEPROM (3º cifra)"],
+ [ 197, "I/U EEPROM (4º 5º cifra)"],
+ [ 198, "I/U EEPROM (6º 7º cifra)"],
+ [ 199, "I/U EEPROM (8º 9º cifra)"],
+ [ 200, "I/U EEPROM (11º cifra)"],
+ [ 201, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 202, "Abilita/disabilita dati"],
+ [ 203, "Indirizzo unità interna"],
+ [ 204, "Modalità funz. ibrido"],
+ [ 205, "Funzionamento boiler su richiesta"],
+ [ 206, "Boiler DHW su richiesta"],
+ [ 207, "Uscita valvola bypass"],
+ [ 208, "BE_COP"],
+ [ 209, "Temp. target riscaldamento ibrido"],
+ [ 210, "Temp. target riscaldamento boiler"],
+ [ 211, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json b/definitions/X10A/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
new file mode 100644
index 00000000..366d7820
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
@@ -0,0 +1,201 @@
+{
+ "Model": "Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Temp. ingresso salamoia"],
+ [ 61, "Temp. uscita salamoia"],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "Usc. evap. temp. refrig."],
+ [ 64, "Non in uso"],
+ [ 65, "Non in uso"],
+ [ 66, "Non in uso"],
+ [ 67, "Non in uso"],
+ [ 68, "NextDataGrid"],
+ [ 69, "Frequenza INV (giri/sec.)"],
+ [ 70, "Ventilatore 1 (gradino)"],
+ [ 71, "Ventilatore 2 (gradino)"],
+ [ 72, "Valvola di espansione elettron.1(pls)"],
+ [ 73, "Valvola di espansione elettron.2(pls)"],
+ [ 74, "Valvola a 4 vie 1"],
+ [ 75, "Valvola a 4 vie 2"],
+ [ 76, "Valvola a 4 vie 3"],
+ [ 77, "Valvola a 4 vie 4"],
+ [ 78, "Valvola a 4 vie 5"],
+ [ 79, "Valvola a 4 vie 6"],
+ [ 80, "Valvola a 4 vie 7"],
+ [ 81, "Valvola a 4 vie 8"],
+ [ 82, "Riscaldatore del carter"],
+ [ 83, "Valvola bypass gas caldo (Y2S)"],
+ [ 84, "Valvola di bypass a bassa pressione (Y3S)"],
+ [ 85, "Temperatura dell acqua in ingresso. (DMW)"],
+ [ 86, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 87, "In-Out separator"],
+ [ 88, "Valvola a 4 vie (Y1S)"],
+ [ 89, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 90, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 91, "Riscaldatore piastra fondo"],
+ [ 92, "Riscaldatore PHE"],
+ [ 93, "Abilita/disabilita dati"],
+ [ 94, "Indirizzo unità interna"],
+ [ 95, "I/U modo di funzionamento"],
+ [ 96, "Termostato ON/OFF"],
+ [ 97, "Prevenzione congelamento"],
+ [ 98, "Modalità silenziosa"],
+ [ 99, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 100, "Codice malfunzionamento"],
+ [ 101, "Codice dettagliato errore"],
+ [ 102, "Tipo malfunzionamento"],
+ [ 103, "Codice capacità I/U"],
+ [ 104, "Valore di riferimento DHW"],
+ [ 105, "Valore di riferimento LW (principale)"],
+ [ 106, "Interruttore portata d acqua"],
+ [ 107, "Protezione termica (Q1L) BUH"],
+ [ 108, "Protezione termica BSH"],
+ [ 109, "Alimentazione flusso kWh benefit"],
+ [ 110, "Entrata solare"],
+ [ 111, "Non in uso"],
+ [ 112, "Non in uso"],
+ [ 113, "Funzionamento bivalente"],
+ [ 114, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 115, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 116, "BSH"],
+ [ 117, "Gradino1 BUH"],
+ [ 118, "Gradino2 BUH"],
+ [ 119, "Valvola chiusura pavimento"],
+ [ 120, "Funzionamento pompa dell acqua"],
+ [ 121, "Funzionamento pompa solare"],
+ [ 122, "Codice opzione interna"],
+ [ 123, "I/U Software ID (xx)"],
+ [ 124, "I/U Software ID (yy)"],
+ [ 125, "I/U EEPROM Ver."],
+ [ 126, "Abilita/disabilita dati"],
+ [ 127, "Indirizzo unità interna"],
+ [ 128, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 129, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 130, "Lato liquido temp. refrig. (R3T)"],
+ [ 131, "Temp. acqua ingresso (R4T)"],
+ [ 132, "Temp. serbatoio DHW (R5T)"],
+ [ 133, "Temp. ambiente interna (R1T)"],
+ [ 134, "Sensore ambiente interno est. (R6T)"],
+ [ 135, "Abilita/disabilita dati"],
+ [ 136, "Indirizzo unità interna"],
+ [ 137, "Risc. prev/mant ON/OFF"],
+ [ 138, "Eco serbatoio ON/OFF"],
+ [ 139, "Comfort serbatoio ON/OFF"],
+ [ 140, "Funzionamento DHW potente. ON/OFF"],
+ [ 141, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 142, "Sistema OFF"],
+ [ 143, "Non in uso"],
+ [ 144, "Emergenza (interna) Attiva/non Attiva"],
+ [ 145, "Valore di riferimento LW (aggiuntivo)"],
+ [ 146, "Valore di riferimento RT"],
+ [ 147, "Raffredd. entrata RT est. agg."],
+ [ 148, "Riscaldam. entrata RT est. agg."],
+ [ 149, "Raffreddamento RT principale"],
+ [ 150, "Riscaldamento RT principale"],
+ [ 151, "Limite 4 consumo energetico"],
+ [ 152, "Limite 3 consumo energetico"],
+ [ 153, "Limite 2 consumo energetico"],
+ [ 154, "Limite 1 consumo energetico"],
+ [ 155, "Nessuno"],
+ [ 156, "Non in uso"],
+ [ 157, "Non in uso"],
+ [ 158, "Riscaldatore PHE"],
+ [ 159, "Prerisc. serbatoio ON/OFF"],
+ [ 160, "Funzionamento pompa di circolazione"],
+ [ 161, "Uscita allarme"],
+ [ 162, "Uscita funzionamento riscald. ambienti"],
+ [ 163, "Sensore flusso (l/min)"],
+ [ 164, "Pressione acqua"],
+ [ 165, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 166, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 167, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 168, "Sensore di pressione del refrigerante"],
+ [ 169, "Abilita/disabilita dati"],
+ [ 170, "Indirizzo unità interna"],
+ [ 171, "I/U EEPROM (3º cifra)"],
+ [ 172, "I/U EEPROM (4º 5º cifra)"],
+ [ 173, "I/U EEPROM (6º 7º cifra)"],
+ [ 174, "I/U EEPROM (8º 9º cifra)"],
+ [ 175, "I/U EEPROM (11º cifra)"],
+ [ 176, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 177, "HP Forced FG"],
+ [ 178, "Abilita/disabilita dati"],
+ [ 179, "Indirizzo unità interna"],
+ [ 180, "Modalità funz. ibrido"],
+ [ 181, "Funzionamento boiler su richiesta"],
+ [ 182, "Boiler DHW su richiesta"],
+ [ 183, "Uscita valvola bypass"],
+ [ 184, "BE_COP"],
+ [ 185, "Temp. target riscaldamento ibrido"],
+ [ 186, "Temp. target riscaldamento boiler"],
+ [ 187, "Add pump"],
+ [ 188, "Main pump"],
+ [ 189, "Temperatura dell acqua miscelata"],
+ [ 190, "2nd Domestic hot water temperature"],
+ [ 191, "Target delta T heating"],
+ [ 192, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json b/definitions/X10A/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
new file mode 100644
index 00000000..e9cec51f
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "[HPSU] Tv Temp mandata (R1T)"],
+ [ 146, "[HPSU] Tvbh Temp mandata doppo barile/BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Non in uso"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Not translated yet"],
+ [ 199, "BUH capacità di output"],
+ [ 200, "Misura del sensore CT (L1)"],
+ [ 201, "Misura del sensore CT (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "Misura del sensore CT (L3)"],
+ [ 204, "Abilita/disabilita dati"],
+ [ 205, "Indirizzo unità interna"],
+ [ 206, "Modalità funz. ibrido"],
+ [ 207, "Funzionamento boiler su richiesta"],
+ [ 208, "Boiler DHW su richiesta"],
+ [ 209, "Uscita valvola bypass"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. target riscaldamento ibrido"],
+ [ 212, "Temp. target riscaldamento boiler"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura dell acqua miscelata"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json b/definitions/X10A/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
new file mode 100644
index 00000000..cead6d0e
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Non in uso"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Non in uso"],
+ [ 199, "BUH capacità di output"],
+ [ 200, "Misura del sensore CT (L1)"],
+ [ 201, "Misura del sensore CT (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "Misura del sensore CT (L3)"],
+ [ 204, "Abilita/disabilita dati"],
+ [ 205, "Indirizzo unità interna"],
+ [ 206, "Modalità funz. ibrido"],
+ [ 207, "Funzionamento boiler su richiesta"],
+ [ 208, "Boiler DHW su richiesta"],
+ [ 209, "Uscita valvola bypass"],
+ [ 210, "BE_COP"],
+ [ 211, "Temp. target riscaldamento ibrido"],
+ [ 212, "Temp. target riscaldamento boiler"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura dell acqua miscelata"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json b/definitions/X10A/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
new file mode 100644
index 00000000..b4b195a0
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Riscaldatore PHE"],
+ [ 177, "Prerisc. serbatoio ON/OFF"],
+ [ 178, "Funzionamento pompa di circolazione"],
+ [ 179, "Uscita allarme"],
+ [ 180, "Uscita funzionamento riscald. ambienti"],
+ [ 181, "Sensore flusso (l/min)"],
+ [ 182, "Pressione acqua"],
+ [ 183, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 184, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 185, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 186, "Sensore di pressione del refrigerante"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacità di output"],
+ [ 205, "Misura del sensore CT (L1)"],
+ [ 206, "Misura del sensore CT (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "Misura del sensore CT (L3)"],
+ [ 209, "Abilita/disabilita dati"],
+ [ 210, "Indirizzo unità interna"],
+ [ 211, "Modalità funz. ibrido"],
+ [ 212, "Funzionamento boiler su richiesta"],
+ [ 213, "Boiler DHW su richiesta"],
+ [ 214, "Uscita valvola bypass"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. target riscaldamento ibrido"],
+ [ 217, "Temp. target riscaldamento boiler"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura dell acqua miscelata"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Abilita/disabilita dati"],
+ [ 225, "Indirizzo unità interna"],
+ [ 226, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 228, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json b/definitions/X10A/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
new file mode 100644
index 00000000..13db8186
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Riscaldatore PHE"],
+ [ 177, "Prerisc. serbatoio ON/OFF"],
+ [ 178, "Funzionamento pompa di circolazione"],
+ [ 179, "Uscita allarme"],
+ [ 180, "Uscita funzionamento riscald. ambienti"],
+ [ 181, "Sensore flusso (l/min)"],
+ [ 182, "Pressione acqua"],
+ [ 183, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 184, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 185, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 186, "Sensore di pressione del refrigerante"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacità di output"],
+ [ 205, "Misura del sensore CT (L1)"],
+ [ 206, "Misura del sensore CT (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "Misura del sensore CT (L3)"],
+ [ 209, "Abilita/disabilita dati"],
+ [ 210, "Indirizzo unità interna"],
+ [ 211, "Modalità funz. ibrido"],
+ [ 212, "Funzionamento boiler su richiesta"],
+ [ 213, "Boiler DHW su richiesta"],
+ [ 214, "Uscita valvola bypass"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. target riscaldamento ibrido"],
+ [ 217, "Temp. target riscaldamento boiler"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura dell acqua miscelata"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Abilita/disabilita dati"],
+ [ 225, "Indirizzo unità interna"],
+ [ 226, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 228, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json b/definitions/X10A/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
new file mode 100644
index 00000000..11171003
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Frequenza INV (giri/sec.)"],
+ [ 66, "Ventilatore 1 (gradino)"],
+ [ 67, "Ventilatore 2 (gradino)"],
+ [ 68, "Valvola di espansione elettron.1(pls)"],
+ [ 69, "Valvola di espansione elettron.2(pls)"],
+ [ 70, "Valvola di espansione elettron.3(pls)"],
+ [ 71, "Valvola di espansione elettron.4(pls)"],
+ [ 72, "Valvola a 4 vie"],
+ [ 73, "Riscaldatore del carter"],
+ [ 74, "Valvola bypass gas caldo (Y3S)"],
+ [ 75, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Temperatura linea di aspirazione"],
+ [ 79, "Temp. scambiatore di calore esterno"],
+ [ 80, "Temp. tubo del liquido"],
+ [ 81, "Pressione"],
+ [ 82, "Valvola di espansione elettron.3(pls)"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "O/U MPU ID"],
+ [ 85, "HPS attivato"],
+ [ 86, "Operazione di salvaguardia"],
+ [ 87, "Riscaldatore del carter"],
+ [ 88, "Elettrovalvola 3"],
+ [ 89, "Elettrovalvola 2"],
+ [ 90, "Elettrovalvola 1"],
+ [ 91, "Valvola a 4 vie (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Calo temp. scarico"],
+ [ 94, "Durante le operazioni di emergenza"],
+ [ 95, "Bandiera unità interna da 50 ° C"],
+ [ 96, "Bit potente (bit di impostazione MT)"],
+ [ 97, "Temperatura della porta del compressore"],
+ [ 98, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 99, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 100, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 101, "Riscaldatore piastra fondo"],
+ [ 102, "Riscaldatore PHE"],
+ [ 103, "Temp. scarico target"],
+ [ 104, "Temperatura della porta target"],
+ [ 105, "Impostazione Monobloc"],
+ [ 106, "Impostazione Minichiller"],
+ [ 107, "Impostazione MT"],
+ [ 108, "Impostazione GSHP"],
+ [ 109, "Impostazione Hydro split"],
+ [ 110, "Impostazione Altherma LT"],
+ [ 111, "Abilita/disabilita dati"],
+ [ 112, "Indirizzo unità interna"],
+ [ 113, "I/U modo di funzionamento"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Prevenzione congelamento"],
+ [ 116, "Modalità silenziosa"],
+ [ 117, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 118, "Codice malfunzionamento"],
+ [ 119, "Codice dettagliato errore"],
+ [ 120, "Tipo malfunzionamento"],
+ [ 121, "Codice capacità I/U"],
+ [ 122, "Valore di riferimento DHW"],
+ [ 123, "Valore di riferimento LW (principale)"],
+ [ 124, "Interruttore portata d acqua"],
+ [ 125, "Protezione termica (Q1L) BUH"],
+ [ 126, "Protezione termica BSH"],
+ [ 127, "Alimentazione flusso kWh benefit"],
+ [ 128, "Entrata solare"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Funzionamento bivalente"],
+ [ 132, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 133, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 134, "BSH"],
+ [ 135, "Gradino1 BUH"],
+ [ 136, "Gradino2 BUH"],
+ [ 137, "Valvola chiusura pavimento"],
+ [ 138, "Funzionamento pompa dell acqua"],
+ [ 139, "Funzionamento pompa solare"],
+ [ 140, "Codice opzione interna"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Abilita/disabilita dati"],
+ [ 145, "Indirizzo unità interna"],
+ [ 146, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 147, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 148, "Lato liquido temp. refrig. (R3T)"],
+ [ 149, "Temp. acqua ingresso (R4T)"],
+ [ 150, "Temp. serbatoio DHW (R5T)"],
+ [ 151, "Temp. ambiente interna (R1T)"],
+ [ 152, "Sensore ambiente interno est. (R6T)"],
+ [ 153, "Abilita/disabilita dati"],
+ [ 154, "Indirizzo unità interna"],
+ [ 155, "Risc. prev/mant ON/OFF"],
+ [ 156, "Eco serbatoio ON/OFF"],
+ [ 157, "Comfort serbatoio ON/OFF"],
+ [ 158, "Funzionamento DHW potente. ON/OFF"],
+ [ 159, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 160, "Sistema OFF"],
+ [ 161, "Non in uso"],
+ [ 162, "Emergenza (interna) Attiva/non Attiva"],
+ [ 163, "Valore di riferimento LW (aggiuntivo)"],
+ [ 164, "Valore di riferimento RT"],
+ [ 165, "Raffredd. entrata RT est. agg."],
+ [ 166, "Riscaldam. entrata RT est. agg."],
+ [ 167, "Raffreddamento RT principale"],
+ [ 168, "Riscaldamento RT principale"],
+ [ 169, "Limite 4 consumo energetico"],
+ [ 170, "Limite 3 consumo energetico"],
+ [ 171, "Limite 2 consumo energetico"],
+ [ 172, "Limite 1 consumo energetico"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Riscaldatore PHE"],
+ [ 178, "Prerisc. serbatoio ON/OFF"],
+ [ 179, "Funzionamento pompa di circolazione"],
+ [ 180, "Uscita allarme"],
+ [ 181, "Uscita funzionamento riscald. ambienti"],
+ [ 182, "Sensore flusso (l/min)"],
+ [ 183, "Pressione acqua"],
+ [ 184, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 185, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 186, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 187, "Sensore di pressione del refrigerante"],
+ [ 188, "Abilita/disabilita dati"],
+ [ 189, "Indirizzo unità interna"],
+ [ 190, "I/U EEPROM (3º cifra)"],
+ [ 191, "I/U EEPROM (4º 5º cifra)"],
+ [ 192, "I/U EEPROM (6º 7º cifra)"],
+ [ 193, "I/U EEPROM (8º 9º cifra)"],
+ [ 194, "I/U EEPROM (11º cifra)"],
+ [ 195, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH capacità di output"],
+ [ 206, "Misura del sensore CT (L1)"],
+ [ 207, "Misura del sensore CT (L2)"],
+ [ 208, "HP Forced FG"],
+ [ 209, "Misura del sensore CT (L3)"],
+ [ 210, "Abilita/disabilita dati"],
+ [ 211, "Indirizzo unità interna"],
+ [ 212, "Modalità funz. ibrido"],
+ [ 213, "Funzionamento boiler su richiesta"],
+ [ 214, "Boiler DHW su richiesta"],
+ [ 215, "Uscita valvola bypass"],
+ [ 216, "BE_COP"],
+ [ 217, "Temp. target riscaldamento ibrido"],
+ [ 218, "Temp. target riscaldamento boiler"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Temperatura dell acqua miscelata"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Abilita/disabilita dati"],
+ [ 226, "Indirizzo unità interna"],
+ [ 227, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 229, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json b/definitions/X10A/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
new file mode 100644
index 00000000..482dc207
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Frequenza INV (giri/sec.)"],
+ [ 66, "Ventilatore 1 (gradino)"],
+ [ 67, "Ventilatore 2 (gradino)"],
+ [ 68, "Valvola di espansione elettron.1(pls)"],
+ [ 69, "Valvola di espansione elettron.2(pls)"],
+ [ 70, "Valvola di espansione elettron.3(pls)"],
+ [ 71, "Valvola di espansione elettron.4(pls)"],
+ [ 72, "Valvola a 4 vie"],
+ [ 73, "Riscaldatore del carter"],
+ [ 74, "Valvola bypass gas caldo (Y3S)"],
+ [ 75, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Temperatura linea di aspirazione"],
+ [ 79, "Temp. scambiatore di calore esterno"],
+ [ 80, "Temp. tubo del liquido"],
+ [ 81, "Pressione"],
+ [ 82, "Valvola di espansione elettron.3(pls)"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "O/U MPU ID"],
+ [ 85, "HPS attivato"],
+ [ 86, "Operazione di salvaguardia"],
+ [ 87, "Riscaldatore del carter"],
+ [ 88, "Elettrovalvola 3"],
+ [ 89, "Elettrovalvola 2"],
+ [ 90, "Elettrovalvola 1"],
+ [ 91, "Valvola a 4 vie (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Calo temp. scarico"],
+ [ 94, "Durante le operazioni di emergenza"],
+ [ 95, "Bandiera unità interna da 50 ° C"],
+ [ 96, "Bit potente (bit di impostazione MT)"],
+ [ 97, "Temperatura della porta del compressore"],
+ [ 98, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 99, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 100, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 101, "Riscaldatore piastra fondo"],
+ [ 102, "Riscaldatore PHE"],
+ [ 103, "Temp. scarico target"],
+ [ 104, "Temperatura della porta target"],
+ [ 105, "Impostazione Monobloc"],
+ [ 106, "Impostazione Minichiller"],
+ [ 107, "Impostazione MT"],
+ [ 108, "Impostazione GSHP"],
+ [ 109, "Impostazione Hydro split"],
+ [ 110, "Impostazione Altherma LT"],
+ [ 111, "Abilita/disabilita dati"],
+ [ 112, "Indirizzo unità interna"],
+ [ 113, "I/U modo di funzionamento"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Prevenzione congelamento"],
+ [ 116, "Modalità silenziosa"],
+ [ 117, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 118, "Codice malfunzionamento"],
+ [ 119, "Codice dettagliato errore"],
+ [ 120, "Tipo malfunzionamento"],
+ [ 121, "Codice capacità I/U"],
+ [ 122, "Valore di riferimento DHW"],
+ [ 123, "Valore di riferimento LW (principale)"],
+ [ 124, "Interruttore portata d acqua"],
+ [ 125, "Protezione termica (Q1L) BUH"],
+ [ 126, "Protezione termica BSH"],
+ [ 127, "Alimentazione flusso kWh benefit"],
+ [ 128, "Entrata solare"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Funzionamento bivalente"],
+ [ 132, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 133, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 134, "BSH"],
+ [ 135, "Gradino1 BUH"],
+ [ 136, "Gradino2 BUH"],
+ [ 137, "Valvola chiusura pavimento"],
+ [ 138, "Funzionamento pompa dell acqua"],
+ [ 139, "Funzionamento pompa solare"],
+ [ 140, "Codice opzione interna"],
+ [ 141, "I/U Software ID (xx)"],
+ [ 142, "I/U Software ID (yy)"],
+ [ 143, "I/U EEPROM Ver."],
+ [ 144, "Abilita/disabilita dati"],
+ [ 145, "Indirizzo unità interna"],
+ [ 146, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 147, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 148, "Lato liquido temp. refrig. (R3T)"],
+ [ 149, "Temp. acqua ingresso (R4T)"],
+ [ 150, "Temp. serbatoio DHW (R5T)"],
+ [ 151, "Temp. ambiente interna (R1T)"],
+ [ 152, "Sensore ambiente interno est. (R6T)"],
+ [ 153, "Abilita/disabilita dati"],
+ [ 154, "Indirizzo unità interna"],
+ [ 155, "Risc. prev/mant ON/OFF"],
+ [ 156, "Eco serbatoio ON/OFF"],
+ [ 157, "Comfort serbatoio ON/OFF"],
+ [ 158, "Funzionamento DHW potente. ON/OFF"],
+ [ 159, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 160, "Sistema OFF"],
+ [ 161, "Non in uso"],
+ [ 162, "Emergenza (interna) Attiva/non Attiva"],
+ [ 163, "Valore di riferimento LW (aggiuntivo)"],
+ [ 164, "Valore di riferimento RT"],
+ [ 165, "Raffredd. entrata RT est. agg."],
+ [ 166, "Riscaldam. entrata RT est. agg."],
+ [ 167, "Raffreddamento RT principale"],
+ [ 168, "Riscaldamento RT principale"],
+ [ 169, "Limite 4 consumo energetico"],
+ [ 170, "Limite 3 consumo energetico"],
+ [ 171, "Limite 2 consumo energetico"],
+ [ 172, "Limite 1 consumo energetico"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Riscaldatore PHE"],
+ [ 178, "Prerisc. serbatoio ON/OFF"],
+ [ 179, "Funzionamento pompa di circolazione"],
+ [ 180, "Uscita allarme"],
+ [ 181, "Uscita funzionamento riscald. ambienti"],
+ [ 182, "Sensore flusso (l/min)"],
+ [ 183, "Pressione acqua"],
+ [ 184, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 185, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 186, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 187, "Sensore di pressione del refrigerante"],
+ [ 188, "Abilita/disabilita dati"],
+ [ 189, "Indirizzo unità interna"],
+ [ 190, "I/U EEPROM (3º cifra)"],
+ [ 191, "I/U EEPROM (4º 5º cifra)"],
+ [ 192, "I/U EEPROM (6º 7º cifra)"],
+ [ 193, "I/U EEPROM (8º 9º cifra)"],
+ [ 194, "I/U EEPROM (11º cifra)"],
+ [ 195, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "BUH capacità di output"],
+ [ 206, "Misura del sensore CT (L1)"],
+ [ 207, "Misura del sensore CT (L2)"],
+ [ 208, "HP Forced FG"],
+ [ 209, "Misura del sensore CT (L3)"],
+ [ 210, "Abilita/disabilita dati"],
+ [ 211, "Indirizzo unità interna"],
+ [ 212, "Modalità funz. ibrido"],
+ [ 213, "Funzionamento boiler su richiesta"],
+ [ 214, "Boiler DHW su richiesta"],
+ [ 215, "Uscita valvola bypass"],
+ [ 216, "BE_COP"],
+ [ 217, "Temp. target riscaldamento ibrido"],
+ [ 218, "Temp. target riscaldamento boiler"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Temperatura dell acqua miscelata"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Abilita/disabilita dati"],
+ [ 226, "Indirizzo unità interna"],
+ [ 227, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 229, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json b/definitions/X10A/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..fa9f19d4
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Sensore di pressione"],
+ [ 62, "Sensore di pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (10 rpm)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice dettagliato errore"],
+ [ 118, "Tipo malfunzionamento"],
+ [ 119, "Codice capacità I/U"],
+ [ 120, "Valore di riferimento DHW"],
+ [ 121, "Valore di riferimento LW (principale)"],
+ [ 122, "Interruttore portata d acqua"],
+ [ 123, "Protezione termica (Q1L) BUH"],
+ [ 124, "Protezione termica BSH"],
+ [ 125, "Alimentazione flusso kWh benefit"],
+ [ 126, "Entrata solare"],
+ [ 127, "Non in uso"],
+ [ 128, "Non in uso"],
+ [ 129, "Funzionamento bivalente"],
+ [ 130, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 131, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 132, "BSH"],
+ [ 133, "Gradino1 BUH"],
+ [ 134, "Gradino2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Funzionamento pompa dell acqua"],
+ [ 137, "Funzionamento pompa solare"],
+ [ 138, "Codice opzione interna"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Abilita/disabilita dati"],
+ [ 143, "Indirizzo unità interna"],
+ [ 144, "[HPSU] Tv Temp mandata (R1T)"],
+ [ 145, "[HPSU] Tvbh Temp mandata doppo barile/BUH (R2T)"],
+ [ 146, "Lato liquido temp. refrig. (R3T)"],
+ [ 147, "[HPSU] Tr Temp ritorno (R4T)"],
+ [ 148, "Temp. serbatoio DHW (R5T)"],
+ [ 149, "Temp. ambiente interna (R1T)"],
+ [ 150, "Sensore ambiente interno est. (R6T)"],
+ [ 151, "Abilita/disabilita dati"],
+ [ 152, "Indirizzo unità interna"],
+ [ 153, "Risc. prev/mant ON/OFF"],
+ [ 154, "Eco serbatoio ON/OFF"],
+ [ 155, "Comfort serbatoio ON/OFF"],
+ [ 156, "Funzionamento DHW potente. ON/OFF"],
+ [ 157, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 158, "Sistema OFF"],
+ [ 159, "Non in uso"],
+ [ 160, "Emergenza (interna) Attiva/non Attiva"],
+ [ 161, "Valore di riferimento LW (aggiuntivo)"],
+ [ 162, "Valore di riferimento RT"],
+ [ 163, "Raffredd. entrata RT est. agg."],
+ [ 164, "Riscaldam. entrata RT est. agg."],
+ [ 165, "Raffreddamento RT principale"],
+ [ 166, "Riscaldamento RT principale"],
+ [ 167, "Limite 4 consumo energetico"],
+ [ 168, "Limite 3 consumo energetico"],
+ [ 169, "Limite 2 consumo energetico"],
+ [ 170, "Limite 1 consumo energetico"],
+ [ 171, "Nessuno"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Prerisc. serbatoio ON/OFF"],
+ [ 176, "Funzionamento pompa di circolazione"],
+ [ 177, "Uscita allarme"],
+ [ 178, "Uscita funzionamento riscald. ambienti"],
+ [ 179, "Sensore flusso (l/min)"],
+ [ 180, "Pressione acqua"],
+ [ 181, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 182, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 183, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 184, "Sensore di pressione del refrigerante"],
+ [ 185, "Sensore di pressione(T)"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Abilita/disabilita dati"],
+ [ 195, "Indirizzo unità interna"],
+ [ 196, "Modalità funz. ibrido"],
+ [ 197, "Funzionamento boiler su richiesta"],
+ [ 198, "Boiler DHW su richiesta"],
+ [ 199, "Uscita valvola bypass"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. target riscaldamento ibrido"],
+ [ 202, "Temp. target riscaldamento boiler"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura dell acqua miscelata"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json b/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
new file mode 100644
index 00000000..4f6cb7d3
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Sensore di pressione"],
+ [ 62, "Sensore di pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (10 rpm)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice dettagliato errore"],
+ [ 118, "Tipo malfunzionamento"],
+ [ 119, "Codice capacità I/U"],
+ [ 120, "Valore di riferimento DHW"],
+ [ 121, "Valore di riferimento LW (principale)"],
+ [ 122, "Interruttore portata d acqua"],
+ [ 123, "Protezione termica (Q1L) BUH"],
+ [ 124, "Protezione termica BSH"],
+ [ 125, "Alimentazione flusso kWh benefit"],
+ [ 126, "Entrata solare"],
+ [ 127, "Non in uso"],
+ [ 128, "Non in uso"],
+ [ 129, "Funzionamento bivalente"],
+ [ 130, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 131, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 132, "BSH"],
+ [ 133, "Gradino1 BUH"],
+ [ 134, "Gradino2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Funzionamento pompa dell acqua"],
+ [ 137, "Funzionamento pompa solare"],
+ [ 138, "Codice opzione interna"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Abilita/disabilita dati"],
+ [ 143, "Indirizzo unità interna"],
+ [ 144, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 145, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 146, "Lato liquido temp. refrig. (R3T)"],
+ [ 147, "Temp. acqua ingresso (R4T)"],
+ [ 148, "Temp. serbatoio DHW (R5T)"],
+ [ 149, "Temp. ambiente interna (R1T)"],
+ [ 150, "Sensore ambiente interno est. (R6T)"],
+ [ 151, "Abilita/disabilita dati"],
+ [ 152, "Indirizzo unità interna"],
+ [ 153, "Risc. prev/mant ON/OFF"],
+ [ 154, "Eco serbatoio ON/OFF"],
+ [ 155, "Comfort serbatoio ON/OFF"],
+ [ 156, "Funzionamento DHW potente. ON/OFF"],
+ [ 157, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 158, "Sistema OFF"],
+ [ 159, "Non in uso"],
+ [ 160, "Emergenza (interna) Attiva/non Attiva"],
+ [ 161, "Valore di riferimento LW (aggiuntivo)"],
+ [ 162, "Valore di riferimento RT"],
+ [ 163, "Raffredd. entrata RT est. agg."],
+ [ 164, "Riscaldam. entrata RT est. agg."],
+ [ 165, "Raffreddamento RT principale"],
+ [ 166, "Riscaldamento RT principale"],
+ [ 167, "Limite 4 consumo energetico"],
+ [ 168, "Limite 3 consumo energetico"],
+ [ 169, "Limite 2 consumo energetico"],
+ [ 170, "Limite 1 consumo energetico"],
+ [ 171, "Nessuno"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Prerisc. serbatoio ON/OFF"],
+ [ 176, "Funzionamento pompa di circolazione"],
+ [ 177, "Uscita allarme"],
+ [ 178, "Uscita funzionamento riscald. ambienti"],
+ [ 179, "Sensore flusso (l/min)"],
+ [ 180, "Pressione acqua"],
+ [ 181, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 182, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 183, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 184, "Sensore di pressione del refrigerante"],
+ [ 185, "Sensore di pressione(T)"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Abilita/disabilita dati"],
+ [ 195, "Indirizzo unità interna"],
+ [ 196, "Modalità funz. ibrido"],
+ [ 197, "Funzionamento boiler su richiesta"],
+ [ 198, "Boiler DHW su richiesta"],
+ [ 199, "Uscita valvola bypass"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. target riscaldamento ibrido"],
+ [ 202, "Temp. target riscaldamento boiler"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura dell acqua miscelata"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json b/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
new file mode 100644
index 00000000..9a919352
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temperatura liquido (R3T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (10 rpm)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie 1"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Sensore di pressione(T)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacità di output"],
+ [ 201, "Misura del sensore CT (L1)"],
+ [ 202, "Misura del sensore CT (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "Misura del sensore CT (L3)"],
+ [ 205, "Abilita/disabilita dati"],
+ [ 206, "Indirizzo unità interna"],
+ [ 207, "Modalità funz. ibrido"],
+ [ 208, "Funzionamento boiler su richiesta"],
+ [ 209, "Boiler DHW su richiesta"],
+ [ 210, "Uscita valvola bypass"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. target riscaldamento ibrido"],
+ [ 213, "Temp. target riscaldamento boiler"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura dell acqua miscelata"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json b/definitions/X10A/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..5eb446ef
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temperatura liquido (R3T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Riscaldatore PHE"],
+ [ 177, "Prerisc. serbatoio ON/OFF"],
+ [ 178, "Funzionamento pompa di circolazione"],
+ [ 179, "Uscita allarme"],
+ [ 180, "Uscita funzionamento riscald. ambienti"],
+ [ 181, "Sensore flusso (l/min)"],
+ [ 182, "Pressione acqua"],
+ [ 183, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 184, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 185, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 186, "Sensore di pressione del refrigerante"],
+ [ 187, "Sensore di pressione(T)"],
+ [ 188, "Abilita/disabilita dati"],
+ [ 189, "Indirizzo unità interna"],
+ [ 190, "I/U EEPROM (3º cifra)"],
+ [ 191, "I/U EEPROM (4º 5º cifra)"],
+ [ 192, "I/U EEPROM (6º 7º cifra)"],
+ [ 193, "I/U EEPROM (8º 9º cifra)"],
+ [ 194, "I/U EEPROM (11º cifra)"],
+ [ 195, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "Misura del sensore CT (L1)"],
+ [ 206, "Misura del sensore CT (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "Misura del sensore CT (L3)"],
+ [ 209, "Abilita/disabilita dati"],
+ [ 210, "Indirizzo unità interna"],
+ [ 211, "Modalità funz. ibrido"],
+ [ 212, "Funzionamento boiler su richiesta"],
+ [ 213, "Boiler DHW su richiesta"],
+ [ 214, "Uscita valvola bypass"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. target riscaldamento ibrido"],
+ [ 217, "Temp. target riscaldamento boiler"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura dell acqua miscelata"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Abilita/disabilita dati"],
+ [ 225, "Indirizzo unità interna"],
+ [ 226, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 228, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json b/definitions/X10A/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
new file mode 100644
index 00000000..fee9f17b
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temperatura liquido (R3T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Sensore di pressione(T)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacità di output"],
+ [ 201, "Misura del sensore CT (L1)"],
+ [ 202, "Misura del sensore CT (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "Misura del sensore CT (L3)"],
+ [ 205, "Abilita/disabilita dati"],
+ [ 206, "Indirizzo unità interna"],
+ [ 207, "Modalità funz. ibrido"],
+ [ 208, "Funzionamento boiler su richiesta"],
+ [ 209, "Boiler DHW su richiesta"],
+ [ 210, "Uscita valvola bypass"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. target riscaldamento ibrido"],
+ [ 213, "Temp. target riscaldamento boiler"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura dell acqua miscelata"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json b/definitions/X10A/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
new file mode 100644
index 00000000..adb3c032
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
@@ -0,0 +1,236 @@
+{
+ "Model": "Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Not translated yet"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "BUH capacità di output"],
+ [ 204, "Misura del sensore CT (L1)"],
+ [ 205, "Misura del sensore CT (L2)"],
+ [ 206, "HP Forced FG"],
+ [ 207, "Misura del sensore CT (L3)"],
+ [ 208, "Abilita/disabilita dati"],
+ [ 209, "Indirizzo unità interna"],
+ [ 210, "Modalità funz. ibrido"],
+ [ 211, "Funzionamento boiler su richiesta"],
+ [ 212, "Boiler DHW su richiesta"],
+ [ 213, "Uscita valvola bypass"],
+ [ 214, "BE_COP"],
+ [ 215, "Temp. target riscaldamento ibrido"],
+ [ 216, "Temp. target riscaldamento boiler"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Temperatura dell acqua miscelata"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"],
+ [ 223, "Abilita/disabilita dati"],
+ [ 224, "Indirizzo unità interna"],
+ [ 225, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 226, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 227, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json b/definitions/X10A/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
new file mode 100644
index 00000000..cc3c1d7a
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U(R4T)"],
+ [ 49, "Temperatura tubo di scarico(R2T)"],
+ [ 50, "Temp. tubo di aspirazione(R3T)"],
+ [ 51, "Temp. media scambiatore di calore(R5T)"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Valvola bypass gas caldo (Y3S)"],
+ [ 74, "Valvola di bypass a bassa pressione (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "Elettrovalvola 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Riscaldatore PHE"],
+ [ 177, "Prerisc. serbatoio ON/OFF"],
+ [ 178, "Funzionamento pompa di circolazione"],
+ [ 179, "Uscita allarme"],
+ [ 180, "Uscita funzionamento riscald. ambienti"],
+ [ 181, "Sensore flusso (l/min)"],
+ [ 182, "Pressione acqua"],
+ [ 183, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 184, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 185, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 186, "Sensore di pressione del refrigerante"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Mixed water temp.(R7T)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "BUH capacità di output"],
+ [ 205, "Misura del sensore CT (L1)"],
+ [ 206, "Misura del sensore CT (L2)"],
+ [ 207, "HP Forced FG"],
+ [ 208, "Misura del sensore CT (L3)"],
+ [ 209, "Abilita/disabilita dati"],
+ [ 210, "Indirizzo unità interna"],
+ [ 211, "Modalità funz. ibrido"],
+ [ 212, "Funzionamento boiler su richiesta"],
+ [ 213, "Boiler DHW su richiesta"],
+ [ 214, "Uscita valvola bypass"],
+ [ 215, "BE_COP"],
+ [ 216, "Temp. target riscaldamento ibrido"],
+ [ 217, "Temp. target riscaldamento boiler"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura dell acqua miscelata"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Abilita/disabilita dati"],
+ [ 225, "Indirizzo unità interna"],
+ [ 226, "Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"],
+ [ 228, "[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json b/definitions/X10A/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
new file mode 100644
index 00000000..a351c070
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Sensore di pressione"],
+ [ 62, "Sensore di pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (10 rpm)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice dettagliato errore"],
+ [ 118, "Tipo malfunzionamento"],
+ [ 119, "Codice capacità I/U"],
+ [ 120, "Valore di riferimento DHW"],
+ [ 121, "Valore di riferimento LW (principale)"],
+ [ 122, "Interruttore portata d acqua"],
+ [ 123, "Protezione termica (Q1L) BUH"],
+ [ 124, "Protezione termica BSH"],
+ [ 125, "Alimentazione flusso kWh benefit"],
+ [ 126, "Entrata solare"],
+ [ 127, "Non in uso"],
+ [ 128, "Non in uso"],
+ [ 129, "Funzionamento bivalente"],
+ [ 130, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 131, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 132, "BSH"],
+ [ 133, "Gradino1 BUH"],
+ [ 134, "Gradino2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Funzionamento pompa dell acqua"],
+ [ 137, "Funzionamento pompa solare"],
+ [ 138, "Codice opzione interna"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Abilita/disabilita dati"],
+ [ 143, "Indirizzo unità interna"],
+ [ 144, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 145, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 146, "Lato liquido temp. refrig. (R3T)"],
+ [ 147, "Temp. acqua ingresso (R4T)"],
+ [ 148, "Temp. serbatoio DHW (R5T)"],
+ [ 149, "Temp. ambiente interna (R1T)"],
+ [ 150, "Sensore ambiente interno est. (R6T)"],
+ [ 151, "Abilita/disabilita dati"],
+ [ 152, "Indirizzo unità interna"],
+ [ 153, "Risc. prev/mant ON/OFF"],
+ [ 154, "Eco serbatoio ON/OFF"],
+ [ 155, "Comfort serbatoio ON/OFF"],
+ [ 156, "Funzionamento DHW potente. ON/OFF"],
+ [ 157, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 158, "Sistema OFF"],
+ [ 159, "Non in uso"],
+ [ 160, "Emergenza (interna) Attiva/non Attiva"],
+ [ 161, "Valore di riferimento LW (aggiuntivo)"],
+ [ 162, "Valore di riferimento RT"],
+ [ 163, "Raffredd. entrata RT est. agg."],
+ [ 164, "Riscaldam. entrata RT est. agg."],
+ [ 165, "Raffreddamento RT principale"],
+ [ 166, "Riscaldamento RT principale"],
+ [ 167, "Limite 4 consumo energetico"],
+ [ 168, "Limite 3 consumo energetico"],
+ [ 169, "Limite 2 consumo energetico"],
+ [ 170, "Limite 1 consumo energetico"],
+ [ 171, "Nessuno"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Prerisc. serbatoio ON/OFF"],
+ [ 176, "Funzionamento pompa di circolazione"],
+ [ 177, "Uscita allarme"],
+ [ 178, "Uscita funzionamento riscald. ambienti"],
+ [ 179, "Sensore flusso (l/min)"],
+ [ 180, "Pressione acqua"],
+ [ 181, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 182, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 183, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 184, "Sensore di pressione del refrigerante"],
+ [ 185, "Sensore di pressione(T)"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Abilita/disabilita dati"],
+ [ 195, "Indirizzo unità interna"],
+ [ 196, "Modalità funz. ibrido"],
+ [ 197, "Funzionamento boiler su richiesta"],
+ [ 198, "Boiler DHW su richiesta"],
+ [ 199, "Uscita valvola bypass"],
+ [ 200, "BE_COP"],
+ [ 201, "Temp. target riscaldamento ibrido"],
+ [ 202, "Temp. target riscaldamento boiler"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura dell acqua miscelata"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(LT_CB_04-08kW Bizone).json b/definitions/X10A/Italian/Altherma(LT_CB_04-08kW Bizone).json
new file mode 100644
index 00000000..751a3cc4
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(LT_CB_04-08kW Bizone).json
@@ -0,0 +1,222 @@
+{
+ "Model": "Altherma(LT_CB_04-08kW Bizone)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore O/U"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore"],
+ [ 59, "Temp. tubo del liquido (R6T)"],
+ [ 60, "Temp. dissipatore"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Interruttore flusso salamoia"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Non in uso"],
+ [ 70, "Non in uso"],
+ [ 71, "Non in uso"],
+ [ 72, "Non in uso"],
+ [ 73, "Non in uso"],
+ [ 74, "Temp. ingresso salamoia"],
+ [ 75, "Temp. uscita salamoia"],
+ [ 76, "Ing. evap. temp. refrig."],
+ [ 77, "Usc. evap. temp. refrig."],
+ [ 78, "Non in uso"],
+ [ 79, "Non in uso"],
+ [ 80, "Non in uso"],
+ [ 81, "Non in uso"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frequenza INV (giri/sec.)"],
+ [ 84, "Frequenza INV 2 (giri/sec.)"],
+ [ 85, "Compressore STD 1"],
+ [ 86, "Compressore STD 2"],
+ [ 87, "Ventilatore 1 (gradino)"],
+ [ 88, "Ventilatore 2 (gradino)"],
+ [ 89, "Valvola di espansione elettron.(pls)"],
+ [ 90, "Valvola di espansione elettron.2(pls)"],
+ [ 91, "Valvola di espansione elettron.3(pls)"],
+ [ 92, "Valvola di espansione elettron.4(pls)"],
+ [ 93, "Valvola di espansione elettron.5(pls)"],
+ [ 94, "Valvola a 4 vie 1"],
+ [ 95, "Valvola a 4 vie 2"],
+ [ 96, "Valvola a 4 vie 3"],
+ [ 97, "Valvola a 4 vie 4"],
+ [ 98, "Valvola a 4 vie 5"],
+ [ 99, "Riscaldatore del carter 1"],
+ [ 100, "Riscaldatore del carter 2"],
+ [ 101, "Riscaldatore del carter 3"],
+ [ 102, "Riscaldatore del carter 4"],
+ [ 103, "Elettrovalvola 1"],
+ [ 104, "Elettrovalvola 2"],
+ [ 105, "Elettrovalvola 3"],
+ [ 106, "Elettrovalvola 4"],
+ [ 107, "Elettrovalvola 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Abilita/disabilita dati"],
+ [ 110, "Indirizzo unità interna"],
+ [ 111, "I/U modo di funzionamento"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Prevenzione congelamento"],
+ [ 114, "Modalità silenziosa"],
+ [ 115, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 116, "Codice malfunzionamento"],
+ [ 117, "Codice dettagliato errore"],
+ [ 118, "Tipo malfunzionamento"],
+ [ 119, "Codice capacità I/U"],
+ [ 120, "Valore di riferimento DHW"],
+ [ 121, "Valore di riferimento LW (principale)"],
+ [ 122, "Interruttore portata d acqua"],
+ [ 123, "Protezione termica (Q1L) BUH"],
+ [ 124, "Protezione termica BSH"],
+ [ 125, "Alimentazione flusso kWh benefit"],
+ [ 126, "Entrata solare"],
+ [ 127, "Non in uso"],
+ [ 128, "Non in uso"],
+ [ 129, "Funzionamento bivalente"],
+ [ 130, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 131, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 132, "BSH"],
+ [ 133, "Gradino1 BUH"],
+ [ 134, "Gradino2 BUH"],
+ [ 135, "BPH"],
+ [ 136, "Funzionamento pompa dell acqua"],
+ [ 137, "Funzionamento pompa solare"],
+ [ 138, "Codice opzione interna"],
+ [ 139, "I/U Software ID (xx)"],
+ [ 140, "I/U Software ID (yy)"],
+ [ 141, "I/U EEPROM Ver."],
+ [ 142, "Abilita/disabilita dati"],
+ [ 143, "Indirizzo unità interna"],
+ [ 144, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 145, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 146, "Lato liquido temp. refrig. (R3T)"],
+ [ 147, "Temp. acqua ingresso (R4T)"],
+ [ 148, "Temp. serbatoio DHW (R5T)"],
+ [ 149, "Temp. ambiente interna (R1T)"],
+ [ 150, "Sensore ambiente interno est. (R6T)"],
+ [ 151, "Abilita/disabilita dati"],
+ [ 152, "Indirizzo unità interna"],
+ [ 153, "Risc. prev/mant ON/OFF"],
+ [ 154, "Eco serbatoio ON/OFF"],
+ [ 155, "Comfort serbatoio ON/OFF"],
+ [ 156, "Funzionamento DHW potente. ON/OFF"],
+ [ 157, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 158, "Sistema OFF"],
+ [ 159, "Non in uso"],
+ [ 160, "Emergenza (interna) Attiva/non Attiva"],
+ [ 161, "Valore di riferimento LW (aggiuntivo)"],
+ [ 162, "Valore di riferimento RT"],
+ [ 163, "Raffredd. entrata RT est. agg."],
+ [ 164, "Riscaldam. entrata RT est. agg."],
+ [ 165, "Raffreddamento RT principale"],
+ [ 166, "Riscaldamento RT principale"],
+ [ 167, "Limite 4 consumo energetico"],
+ [ 168, "Limite 3 consumo energetico"],
+ [ 169, "Limite 2 consumo energetico"],
+ [ 170, "Limite 1 consumo energetico"],
+ [ 171, "Nessuno"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Prerisc. serbatoio ON/OFF"],
+ [ 176, "Funzionamento pompa di circolazione"],
+ [ 177, "Uscita allarme"],
+ [ 178, "Uscita funzionamento riscald. ambienti"],
+ [ 179, "Sensore flusso (l/min)"],
+ [ 180, "Pressione acqua"],
+ [ 181, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 182, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 183, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Non in uso"],
+ [ 188, "Non in uso"],
+ [ 189, "Non in uso"],
+ [ 190, "Non in uso"],
+ [ 191, "Non in uso"],
+ [ 192, "Non in uso"],
+ [ 193, "Abilita/disabilita dati"],
+ [ 194, "Indirizzo unità interna"],
+ [ 195, "I/U EEPROM (3º cifra)"],
+ [ 196, "I/U EEPROM (4º 5º cifra)"],
+ [ 197, "I/U EEPROM (6º 7º cifra)"],
+ [ 198, "I/U EEPROM (8º 9º cifra)"],
+ [ 199, "I/U EEPROM (11º cifra)"],
+ [ 200, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 201, "Abilita/disabilita dati"],
+ [ 202, "Indirizzo unità interna"],
+ [ 203, "Modalità funz. ibrido"],
+ [ 204, "Funzionamento boiler su richiesta"],
+ [ 205, "Boiler DHW su richiesta"],
+ [ 206, "Uscita valvola bypass"],
+ [ 207, "BE_COP"],
+ [ 208, "Temp. target riscaldamento ibrido"],
+ [ 209, "Temp. target riscaldamento boiler"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(LT_CB_11-16kW Bizone).json b/definitions/X10A/Italian/Altherma(LT_CB_11-16kW Bizone).json
new file mode 100644
index 00000000..fa25e6e1
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(LT_CB_11-16kW Bizone).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Altherma(LT_CB_11-16kW Bizone)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Temp. dissipatore"],
+ [ 54, "Pressione"],
+ [ 55, "Pressione(T)"],
+ [ 56, "Non in uso"],
+ [ 57, "Non in uso"],
+ [ 58, "Corrente primaria INV (A)"],
+ [ 59, "Corrente secondaria INV (A)"],
+ [ 60, "Voltaggio (N-fase) (V)"],
+ [ 61, "Interruttore flusso salamoia"],
+ [ 62, "Non in uso"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Non in uso"],
+ [ 66, "Non in uso"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Temp. ingresso salamoia"],
+ [ 70, "Temp. uscita salamoia"],
+ [ 71, "Ing. evap. temp. refrig."],
+ [ 72, "Usc. evap. temp. refrig."],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Non in uso"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frequenza INV (giri/sec.)"],
+ [ 79, "Frequenza INV 2 (giri/sec.)"],
+ [ 80, "Compressore STD 1"],
+ [ 81, "Compressore STD 2"],
+ [ 82, "Ventilatore 1 (gradino)"],
+ [ 83, "Ventilatore 2 (gradino)"],
+ [ 84, "Valvola di espansione elettron.1(pls)"],
+ [ 85, "Valvola di espansione elettron.2(pls)"],
+ [ 86, "Valvola di espansione elettron.3(pls)"],
+ [ 87, "Valvola di espansione elettron.4(pls)"],
+ [ 88, "Valvola di espansione elettron.5(pls)"],
+ [ 89, "Valvola a 4 vie 1"],
+ [ 90, "Valvola a 4 vie 2"],
+ [ 91, "Valvola a 4 vie 3"],
+ [ 92, "Valvola a 4 vie 4"],
+ [ 93, "Valvola a 4 vie 5"],
+ [ 94, "Riscaldatore del carter 1"],
+ [ 95, "Riscaldatore del carter 2"],
+ [ 96, "Riscaldatore del carter 3"],
+ [ 97, "Riscaldatore del carter 4"],
+ [ 98, "SV1 (gas caldo)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Elettrovalvola 3"],
+ [ 101, "Elettrovalvola 4"],
+ [ 102, "Elettrovalvola 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Abilita/disabilita dati"],
+ [ 105, "Indirizzo unità interna"],
+ [ 106, "I/U modo di funzionamento"],
+ [ 107, "Termostato ON/OFF"],
+ [ 108, "Prevenzione congelamento"],
+ [ 109, "Modalità silenziosa"],
+ [ 110, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 111, "Codice malfunzionamento"],
+ [ 112, "Codice unità interna"],
+ [ 113, "Codice capacità I/U"],
+ [ 114, "Valore di riferimento DHW"],
+ [ 115, "Valore di riferimento LW (principale)"],
+ [ 116, "Interruttore portata d acqua"],
+ [ 117, "Protezione termica BUH"],
+ [ 118, "Protezione termica BSH"],
+ [ 119, "Alimentazione flusso kWh benefit"],
+ [ 120, "Entrata solare"],
+ [ 121, "Non in uso"],
+ [ 122, "Non in uso"],
+ [ 123, "Funzionamento bivalente"],
+ [ 124, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 125, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 126, "BSH"],
+ [ 127, "Gradino1 BUH"],
+ [ 128, "Gradino2 BUH"],
+ [ 129, "BPH"],
+ [ 130, "Funzionamento pompa dell acqua"],
+ [ 131, "Funzionamento pompa solare"],
+ [ 132, "Codice opzione interna"],
+ [ 133, "I/U Software ID (xx)"],
+ [ 134, "I/U Software ID (yy)"],
+ [ 135, "I/U EEPROM Ver."],
+ [ 136, "Abilita/disabilita dati"],
+ [ 137, "Indirizzo unità interna"],
+ [ 138, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 139, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 140, "Lato liquido temp. refrig. (R3T)"],
+ [ 141, "Temp. acqua ingresso (R4T)"],
+ [ 142, "Temp. serbatoio DHW (R5T)"],
+ [ 143, "Temp. ambiente interna (R1T)"],
+ [ 144, "Sensore ambiente interno est. (R6T)"],
+ [ 145, "Abilita/disabilita dati"],
+ [ 146, "Indirizzo unità interna"],
+ [ 147, "Risc. prev/mant ON/OFF"],
+ [ 148, "Eco serbatoio ON/OFF"],
+ [ 149, "Comfort serbatoio ON/OFF"],
+ [ 150, "Funzionamento DHW potente. ON/OFF"],
+ [ 151, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 152, "Sistema OFF"],
+ [ 153, "Non in uso"],
+ [ 154, "Emergenza (interna) Attiva/non Attiva"],
+ [ 155, "Valore di riferimento LW (aggiuntivo)"],
+ [ 156, "Valore di riferimento RT"],
+ [ 157, "Raffredd. entrata RT est. agg."],
+ [ 158, "Riscaldam. entrata RT est. agg."],
+ [ 159, "Raffreddamento RT principale"],
+ [ 160, "Riscaldamento RT principale"],
+ [ 161, "Limite 4 consumo energetico"],
+ [ 162, "Limite 3 consumo energetico"],
+ [ 163, "Limite 2 consumo energetico"],
+ [ 164, "Limite 1 consumo energetico"],
+ [ 165, "Nessuno"],
+ [ 166, "Non in uso"],
+ [ 167, "Non in uso"],
+ [ 168, "Non in uso"],
+ [ 169, "Prerisc. serbatoio ON/OFF"],
+ [ 170, "Funzionamento pompa di circolazione"],
+ [ 171, "Uscita allarme"],
+ [ 172, "Uscita funzionamento riscald. ambienti"],
+ [ 173, "Sensore flusso (l/min)"],
+ [ 174, "Pressione acqua"],
+ [ 175, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 176, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 177, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 178, "Non in uso"],
+ [ 179, "Non in uso"],
+ [ 180, "Non in uso"],
+ [ 181, "Non in uso"],
+ [ 182, "Non in uso"],
+ [ 183, "Non in uso"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Abilita/disabilita dati"],
+ [ 196, "Indirizzo unità interna"],
+ [ 197, "Modalità funz. ibrido"],
+ [ 198, "Funzionamento boiler su richiesta"],
+ [ 199, "Boiler DHW su richiesta"],
+ [ 200, "Uscita valvola bypass"],
+ [ 201, "BE_COP"],
+ [ 202, "Temp. target riscaldamento ibrido"],
+ [ 203, "Temp. target riscaldamento boiler"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json b/definitions/X10A/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
new file mode 100644
index 00000000..0f421a67
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore esterno"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore esterno"],
+ [ 59, "Temp. tubo del liquido"],
+ [ 60, "Temp. aletta"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Temp. ingresso salamoia"],
+ [ 67, "Temp. uscita salamoia"],
+ [ 68, "Ing. evap. temp. refrig."],
+ [ 69, "Usc. evap. temp. refrig."],
+ [ 70, "NextDataGrid"],
+ [ 71, "Frequenza INV (giri/sec.)"],
+ [ 72, "Frequenza INV 2 (giri/sec.)"],
+ [ 73, "Compressore STD 1"],
+ [ 74, "Compressore STD 2"],
+ [ 75, "Ventilatore 1 (gradino)"],
+ [ 76, "Ventilatore 2 (gradino)"],
+ [ 77, "Valvola di espansione elettron.(pls)"],
+ [ 78, "Valvola di espansione elettron.2(pls)"],
+ [ 79, "Valvola di espansione elettron.3(pls)"],
+ [ 80, "Valvola di espansione elettron.4(pls)"],
+ [ 81, "Valvola di espansione elettron.5(pls)"],
+ [ 82, "Valvola a 4 vie"],
+ [ 83, "Valvola a 4 vie 2"],
+ [ 84, "Valvola a 4 vie 3"],
+ [ 85, "Valvola a 4 vie 4"],
+ [ 86, "Valvola a 4 vie 5"],
+ [ 87, "Riscaldatore del carter"],
+ [ 88, "Riscaldatore del carter 2"],
+ [ 89, "Riscaldatore del carter 3"],
+ [ 90, "Riscaldatore del carter 4"],
+ [ 91, "Elettrovalvola 1"],
+ [ 92, "Elettrovalvola 2"],
+ [ 93, "Elettrovalvola 3"],
+ [ 94, "Elettrovalvola 4"],
+ [ 95, "Elettrovalvola 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Abilita/disabilita dati"],
+ [ 98, "Indirizzo unità interna"],
+ [ 99, "I/U modo di funzionamento"],
+ [ 100, "Termostato ON/OFF"],
+ [ 101, "Prevenzione congelamento"],
+ [ 102, "Modalità silenziosa"],
+ [ 103, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 104, "Codice malfunzionamento"],
+ [ 105, "Codice unità interna"],
+ [ 106, "Codice capacità I/U"],
+ [ 107, "Valore di riferimento DHW"],
+ [ 108, "Valore di riferimento LW (principale)"],
+ [ 109, "Interruttore portata d acqua"],
+ [ 110, "Protezione termica (Q1L) BUH"],
+ [ 111, "Protezione termica BSH"],
+ [ 112, "Alimentazione flusso kWh benefit"],
+ [ 113, "Entrata solare"],
+ [ 114, "Non in uso"],
+ [ 115, "Non in uso"],
+ [ 116, "Funzionamento bivalente"],
+ [ 117, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 118, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 119, "BSH"],
+ [ 120, "Gradino1 BUH"],
+ [ 121, "Gradino2 BUH"],
+ [ 122, "Valvola chiusura pavimento"],
+ [ 123, "Funzionamento pompa dell acqua"],
+ [ 124, "Funzionamento pompa solare"],
+ [ 125, "Codice opzione interna"],
+ [ 126, "I/U Software ID (xx)"],
+ [ 127, "I/U Software ID (yy)"],
+ [ 128, "I/U EEPROM Ver."],
+ [ 129, "Abilita/disabilita dati"],
+ [ 130, "Indirizzo unità interna"],
+ [ 131, "Temp. acqua in uscita scambiatore di calore (R1T)"],
+ [ 132, "Temp. acqua in uscita BUH (R2T)"],
+ [ 133, "Lato liquido temp. refrig. (R3T)"],
+ [ 134, "Temp. acqua ingresso (R4T)"],
+ [ 135, "Temp. serbatoio DHW (R5T)"],
+ [ 136, "Temp. ambiente interna (R1T)"],
+ [ 137, "Abilita/disabilita dati"],
+ [ 138, "Indirizzo unità interna"],
+ [ 139, "Risc. prev/mant ON/OFF"],
+ [ 140, "Eco serbatoio ON/OFF"],
+ [ 141, "Comfort serbatoio ON/OFF"],
+ [ 142, "Funzionamento DHW potente. ON/OFF"],
+ [ 143, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 144, "Sistema OFF"],
+ [ 145, "Non in uso"],
+ [ 146, "Emergenza (interna) Attiva/non Attiva"],
+ [ 147, "Valore di riferimento LW (aggiuntivo)"],
+ [ 148, "Valore di riferimento RT"],
+ [ 149, "Raffredd. entrata RT est. agg."],
+ [ 150, "Riscaldam. entrata RT est. agg."],
+ [ 151, "Raffreddamento RT principale"],
+ [ 152, "Riscaldamento RT principale"],
+ [ 153, "Limite 4 consumo energetico"],
+ [ 154, "Limite 3 consumo energetico"],
+ [ 155, "Limite 2 consumo energetico"],
+ [ 156, "Limite 1 consumo energetico"],
+ [ 157, "Nessuno"],
+ [ 158, "Non in uso"],
+ [ 159, "Non in uso"],
+ [ 160, "Non in uso"],
+ [ 161, "Prerisc. serbatoio ON/OFF"],
+ [ 162, "Funzionamento pompa di circolazione"],
+ [ 163, "Uscita allarme"],
+ [ 164, "Uscita funzionamento riscald. ambienti"],
+ [ 165, "Sensore flusso (l/min)"],
+ [ 166, "Pressione acqua"],
+ [ 167, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 168, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 169, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 170, "Non in uso"],
+ [ 171, "Non in uso"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Non in uso"],
+ [ 178, "Non in uso"],
+ [ 179, "Abilita/disabilita dati"],
+ [ 180, "Indirizzo unità interna"],
+ [ 181, "I/U EEPROM (3º cifra)"],
+ [ 182, "I/U EEPROM (4º 5º cifra)"],
+ [ 183, "I/U EEPROM (6º 7º cifra)"],
+ [ 184, "I/U EEPROM (8º 9º cifra)"],
+ [ 185, "I/U EEPROM (11º cifra)"],
+ [ 186, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "Modalità funz. ibrido"],
+ [ 190, "Funzionamento boiler su richiesta"],
+ [ 191, "Boiler DHW su richiesta"],
+ [ 192, "Uscita valvola bypass"],
+ [ 193, "BE_COP"],
+ [ 194, "Temp. target riscaldamento ibrido"],
+ [ 195, "Temp. target riscaldamento boiler"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json b/definitions/X10A/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
new file mode 100644
index 00000000..b6763642
--- /dev/null
+++ b/definitions/X10A/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
@@ -0,0 +1,209 @@
+{
+ "Model": "Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Temp. dissipatore"],
+ [ 54, "Pressione"],
+ [ 55, "Pressione(T)"],
+ [ 56, "Non in uso"],
+ [ 57, "Non in uso"],
+ [ 58, "Corrente primaria INV (A)"],
+ [ 59, "Corrente secondaria INV (A)"],
+ [ 60, "Voltaggio (N-fase) (V)"],
+ [ 61, "Interruttore flusso salamoia"],
+ [ 62, "Non in uso"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Non in uso"],
+ [ 66, "Non in uso"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Temp. ingresso salamoia"],
+ [ 70, "Temp. uscita salamoia"],
+ [ 71, "Ing. evap. temp. refrig."],
+ [ 72, "Usc. evap. temp. refrig."],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Non in uso"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frequenza INV (giri/sec.)"],
+ [ 79, "Ventilatore 1 (gradino)"],
+ [ 80, "Ventilatore 2 (gradino)"],
+ [ 81, "Valvola di espansione elettron.1(pls)"],
+ [ 82, "Valvola di espansione elettron.2(pls)"],
+ [ 83, "Valvola a 4 vie 1"],
+ [ 84, "Valvola a 4 vie 2"],
+ [ 85, "Valvola a 4 vie 3"],
+ [ 86, "Valvola a 4 vie 4"],
+ [ 87, "Valvola a 4 vie 5"],
+ [ 88, "Riscaldatore del carter 1"],
+ [ 89, "Riscaldatore del carter 2"],
+ [ 90, "Riscaldatore del carter 3"],
+ [ 91, "Riscaldatore del carter 4"],
+ [ 92, "SV1 (gas caldo)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Elettrovalvola 3"],
+ [ 95, "Elettrovalvola 4"],
+ [ 96, "Elettrovalvola 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Abilita/disabilita dati"],
+ [ 99, "Indirizzo unità interna"],
+ [ 100, "I/U modo di funzionamento"],
+ [ 101, "Termostato ON/OFF"],
+ [ 102, "Prevenzione congelamento"],
+ [ 103, "Modalità silenziosa"],
+ [ 104, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 105, "Codice malfunzionamento"],
+ [ 106, "Codice unità interna"],
+ [ 107, "Codice capacità I/U"],
+ [ 108, "Valore di riferimento DHW"],
+ [ 109, "Valore di riferimento LW (principale)"],
+ [ 110, "Interruttore portata d acqua"],
+ [ 111, "Protezione termica BUH"],
+ [ 112, "Protezione termica BSH"],
+ [ 113, "Alimentazione flusso kWh benefit"],
+ [ 114, "Entrata solare"],
+ [ 115, "Non in uso"],
+ [ 116, "Non in uso"],
+ [ 117, "Funzionamento bivalente"],
+ [ 118, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 119, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 120, "BSH"],
+ [ 121, "Gradino1 BUH"],
+ [ 122, "Gradino2 BUH"],
+ [ 123, "BPH"],
+ [ 124, "Funzionamento pompa dell acqua"],
+ [ 125, "Funzionamento pompa solare"],
+ [ 126, "Codice opzione interna"],
+ [ 127, "I/U Software ID (xx)"],
+ [ 128, "I/U Software ID (yy)"],
+ [ 129, "I/U EEPROM Ver."],
+ [ 130, "Abilita/disabilita dati"],
+ [ 131, "Indirizzo unità interna"],
+ [ 132, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 133, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 134, "Lato liquido temp. refrig. (R3T)"],
+ [ 135, "Temp. acqua ingresso (R4T)"],
+ [ 136, "Temp. serbatoio DHW (R5T)"],
+ [ 137, "Temp. ambiente interna (R1T)"],
+ [ 138, "Sensore ambiente interno est. (R6T)"],
+ [ 139, "Abilita/disabilita dati"],
+ [ 140, "Indirizzo unità interna"],
+ [ 141, "Risc. prev/mant ON/OFF"],
+ [ 142, "Eco serbatoio ON/OFF"],
+ [ 143, "Comfort serbatoio ON/OFF"],
+ [ 144, "Funzionamento DHW potente. ON/OFF"],
+ [ 145, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 146, "Sistema OFF"],
+ [ 147, "Non in uso"],
+ [ 148, "Emergenza (interna) Attiva/non Attiva"],
+ [ 149, "Valore di riferimento LW (aggiuntivo)"],
+ [ 150, "Valore di riferimento RT"],
+ [ 151, "Raffredd. entrata RT est. agg."],
+ [ 152, "Riscaldam. entrata RT est. agg."],
+ [ 153, "Raffreddamento RT principale"],
+ [ 154, "Riscaldamento RT principale"],
+ [ 155, "Limite 4 consumo energetico"],
+ [ 156, "Limite 3 consumo energetico"],
+ [ 157, "Limite 2 consumo energetico"],
+ [ 158, "Limite 1 consumo energetico"],
+ [ 159, "Nessuno"],
+ [ 160, "Non in uso"],
+ [ 161, "Non in uso"],
+ [ 162, "Non in uso"],
+ [ 163, "Prerisc. serbatoio ON/OFF"],
+ [ 164, "Funzionamento pompa di circolazione"],
+ [ 165, "Uscita allarme"],
+ [ 166, "Uscita funzionamento riscald. ambienti"],
+ [ 167, "Sensore flusso (l/min)"],
+ [ 168, "Pressione acqua"],
+ [ 169, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 170, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 171, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Non in uso"],
+ [ 178, "Non in uso"],
+ [ 179, "Non in uso"],
+ [ 180, "Non in uso"],
+ [ 181, "Abilita/disabilita dati"],
+ [ 182, "Indirizzo unità interna"],
+ [ 183, "I/U EEPROM (3º cifra)"],
+ [ 184, "I/U EEPROM (4º 5º cifra)"],
+ [ 185, "I/U EEPROM (6º 7º cifra)"],
+ [ 186, "I/U EEPROM (8º 9º cifra)"],
+ [ 187, "I/U EEPROM (11º cifra)"],
+ [ 188, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 189, "Abilita/disabilita dati"],
+ [ 190, "Indirizzo unità interna"],
+ [ 191, "Modalità funz. ibrido"],
+ [ 192, "Funzionamento boiler su richiesta"],
+ [ 193, "Boiler DHW su richiesta"],
+ [ 194, "Uscita valvola bypass"],
+ [ 195, "BE_COP"],
+ [ 196, "Temp. target riscaldamento ibrido"],
+ [ 197, "Temp. target riscaldamento boiler"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/DEFAULT.json b/definitions/X10A/Italian/DEFAULT.json
new file mode 100644
index 00000000..9cde6a0a
--- /dev/null
+++ b/definitions/X10A/Italian/DEFAULT.json
@@ -0,0 +1,147 @@
+{
+ "Model": "DEFAULT",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Compressore STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID"],
+ [ 13, "O/U MPU ID"],
+ [ 14, "Modo di funzionamento"],
+ [ 15, "Termostato ON/OFF"],
+ [ 16, "Standby riavvio"],
+ [ 17, "Controllo all avviamento"],
+ [ 18, "Sbrinamento"],
+ [ 19, "Recupero dell’olio"],
+ [ 20, "Funzionamento regolazione di pressione"],
+ [ 21, "Segnale su richiesta"],
+ [ 22, "Controllo bassa rumorosità"],
+ [ 23, "Altro controllo 1"],
+ [ 24, "Altro controllo 2"],
+ [ 25, "Altro controllo 3"],
+ [ 26, "Altro controllo 4"],
+ [ 27, "Altro controllo 5"],
+ [ 28, "Altro controllo 6"],
+ [ 29, "Altro controllo 7"],
+ [ 30, "Altro controllo 8"],
+ [ 31, "Altro controllo 9"],
+ [ 32, "Altro controllo 10"],
+ [ 33, "Altro controllo 11"],
+ [ 34, "Altro controllo 12"],
+ [ 35, "Altro controllo 13"],
+ [ 36, "Altro controllo 14"],
+ [ 37, "Altro controllo 15"],
+ [ 38, "Altro controllo 16"],
+ [ 39, "Tipo malfunzionamento"],
+ [ 40, "Codice malfunzionamento"],
+ [ 41, "Temp. evap. target"],
+ [ 42, "Temp. Cond. target"],
+ [ 43, "Calo temp. scarico"],
+ [ 44, "Qtà tentativi protezione temp. Scarico"],
+ [ 45, "Calo corrente INV comp."],
+ [ 46, "Qtà tentativi protezione corrente INV comp."],
+ [ 47, "Controllo calo HP"],
+ [ 48, "Qtà tentativi protezione HP"],
+ [ 49, "Controllo calo LP"],
+ [ 50, "Qtà tentativi protezione LP"],
+ [ 51, "Altro controllo"],
+ [ 52, "NextDataGrid"],
+ [ 53, "Temp. aria esterna"],
+ [ 54, "Temp. scambiatore di calore esterno"],
+ [ 55, "Temperatura tubo di scarico"],
+ [ 56, "Temperatura linea di aspirazione"],
+ [ 57, "Temp. media scambiatore di calore esterno"],
+ [ 58, "Temp. tubo del liquido"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Bassa pressione"],
+ [ 61, "Bassa pressione(T)"],
+ [ 62, "Dati del sensore 9"],
+ [ 63, "Dati del sensore 10"],
+ [ 64, "Dati del sensore 11"],
+ [ 65, "Corrente primaria INV (A)"],
+ [ 66, "Corrente secondaria INV (A)"],
+ [ 67, "Temp. aletta INV"],
+ [ 68, "Dati del sensore 4"],
+ [ 69, "Dati del sensore 5"],
+ [ 70, "Dati del sensore 6"],
+ [ 71, "Dati del sensore 7"],
+ [ 72, "Dati del sensore 8"],
+ [ 73, "Dati del sensore 9"],
+ [ 74, "Dati del sensore 10"],
+ [ 75, "Dati del sensore 11"],
+ [ 76, "NextDataGrid"],
+ [ 77, "Frequenza INV 1 (giri/sec.)"],
+ [ 78, "Frequenza INV 2 (giri/sec.)"],
+ [ 79, "Compressore STD 1"],
+ [ 80, "Compressore STD 2"],
+ [ 81, "Ventilatore 1 (gradino)"],
+ [ 82, "Ventilatore 2 (gradino)"],
+ [ 83, "Valvola di espansione elettron.1(pls)"],
+ [ 84, "Valvola di espansione elettron.2(pls)"],
+ [ 85, "Valvola a 4 vie 1"],
+ [ 86, "Valvola a 4 vie 2"],
+ [ 87, "Riscaldatore del carter 1"],
+ [ 88, "Riscaldatore del carter 2"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Elettrovalvola 2"],
+ [ 91, "Elettrovalvola 3"],
+ [ 92, "Elettrovalvola 4"],
+ [ 93, "Elettrovalvola 5"],
+ [ 94, "Elettrovalvola 6"],
+ [ 95, "Elettrovalvola 7"],
+ [ 96, "Elettrovalvola 8"],
+ [ 97, "Elettrovalvola 9"],
+ [ 98, "Elettrovalvola 10"],
+ [ 99, "In-Out separator"],
+ [ 100, "Abilita/disabilita dati"],
+ [ 101, "Indirizzo unità interna"],
+ [ 102, "Modalità di funzionamento interna"],
+ [ 103, "Termostato ON/OFF"],
+ [ 104, "Prevenzione congelamento"],
+ [ 105, "Modalità silenziosa"],
+ [ 106, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 107, "Codice malfunzionamento"],
+ [ 108, "Codice unità interna"],
+ [ 109, "Capacità unità interna"],
+ [ 110, "Valore di riferimento R/C"],
+ [ 111, "Valore di riferimento uscita H/P"],
+ [ 112, "Interruttore flusso"],
+ [ 113, "Clixon BUH"],
+ [ 114, "Clixon BSH"],
+ [ 115, "Entrata tariffa HP"],
+ [ 116, "Entrata solare"],
+ [ 117, "Non in uso"],
+ [ 118, "Non in uso"],
+ [ 119, "Funzionamento bivalente"],
+ [ 120, "Valvola a 3 vie (raffreddamento/riscaldamento)"],
+ [ 121, "Valvola a 4 vie (Ambienti/DHW)"],
+ [ 122, "BSH"],
+ [ 123, "BUH1"],
+ [ 124, "BUH2"],
+ [ 125, "Riscaldatore piastra fondo"],
+ [ 126, "Uscita pompa"],
+ [ 127, "Segnale uscita solare"],
+ [ 128, "Codice opzione interna"],
+ [ 129, "Versione software interno"],
+ [ 130, "Versione EEPROM interna"],
+ [ 131, "Abilita/disabilita dati"],
+ [ 132, "Indirizzo unità interna"],
+ [ 133, "Uscita PHE(R1T)"],
+ [ 134, "Uscita BUH(R2T)"],
+ [ 135, "Temperatura liquido (R3T)"],
+ [ 136, "Temperatura ingresso (R4T)"],
+ [ 137, "Temperatura DHW (R5T)"],
+ [ 138, "Termistore Remocon"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json b/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
new file mode 100644
index 00000000..5a867c44
--- /dev/null
+++ b/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 4-8kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temperatura liquido (R3T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Bassa pressione"],
+ [ 56, "Bassa pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Elettrovalvola 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Elettrovalvola 1"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Sensore di pressione(T)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "BUH capacità di output"],
+ [ 201, "Misura del sensore CT (L1)"],
+ [ 202, "Misura del sensore CT (L2)"],
+ [ 203, "HP Forced FG"],
+ [ 204, "Misura del sensore CT (L3)"],
+ [ 205, "Abilita/disabilita dati"],
+ [ 206, "Indirizzo unità interna"],
+ [ 207, "Modalità funz. ibrido"],
+ [ 208, "Funzionamento boiler su richiesta"],
+ [ 209, "Boiler DHW su richiesta"],
+ [ 210, "Uscita valvola bypass"],
+ [ 211, "BE_COP"],
+ [ 212, "Temp. target riscaldamento ibrido"],
+ [ 213, "Temp. target riscaldamento boiler"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura dell acqua miscelata"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json b/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
new file mode 100644
index 00000000..6719b150
--- /dev/null
+++ b/definitions/X10A/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 9-16kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Temp. evap. target"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Temp. dissipatore"],
+ [ 54, "Pressione"],
+ [ 55, "Pressione(T)"],
+ [ 56, "Non in uso"],
+ [ 57, "Non in uso"],
+ [ 58, "Corrente primaria INV (A)"],
+ [ 59, "Corrente secondaria INV (A)"],
+ [ 60, "Voltaggio (N-fase) (V)"],
+ [ 61, "Interruttore flusso salamoia"],
+ [ 62, "Non in uso"],
+ [ 63, "Non in uso"],
+ [ 64, "Non in uso"],
+ [ 65, "Non in uso"],
+ [ 66, "Non in uso"],
+ [ 67, "Non in uso"],
+ [ 68, "Non in uso"],
+ [ 69, "Temp. ingresso salamoia"],
+ [ 70, "Temp. uscita salamoia"],
+ [ 71, "Ing. evap. temp. refrig."],
+ [ 72, "Usc. evap. temp. refrig."],
+ [ 73, "Non in uso"],
+ [ 74, "Non in uso"],
+ [ 75, "Non in uso"],
+ [ 76, "Non in uso"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frequenza INV (giri/sec.)"],
+ [ 79, "Frequenza INV 2 (giri/sec.)"],
+ [ 80, "Compressore STD 1"],
+ [ 81, "Compressore STD 2"],
+ [ 82, "Ventilatore 1 (gradino)"],
+ [ 83, "Ventilatore 2 (gradino)"],
+ [ 84, "Valvola di espansione elettron.1(pls)"],
+ [ 85, "Valvola di espansione elettron.2(pls)"],
+ [ 86, "Valvola di espansione elettron.3(pls)"],
+ [ 87, "Valvola di espansione elettron.4(pls)"],
+ [ 88, "Valvola di espansione elettron.5(pls)"],
+ [ 89, "Valvola a 4 vie 1"],
+ [ 90, "Valvola a 4 vie 2"],
+ [ 91, "Valvola a 4 vie 3"],
+ [ 92, "Valvola a 4 vie 4"],
+ [ 93, "Valvola a 4 vie 5"],
+ [ 94, "Riscaldatore del carter 1"],
+ [ 95, "Riscaldatore del carter 2"],
+ [ 96, "Riscaldatore del carter 3"],
+ [ 97, "Riscaldatore del carter 4"],
+ [ 98, "SV1 (gas caldo)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Elettrovalvola 3"],
+ [ 101, "Elettrovalvola 4"],
+ [ 102, "Elettrovalvola 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Abilita/disabilita dati"],
+ [ 105, "Indirizzo unità interna"],
+ [ 106, "I/U modo di funzionamento"],
+ [ 107, "Termostato ON/OFF"],
+ [ 108, "Prevenzione congelamento"],
+ [ 109, "Modalità silenziosa"],
+ [ 110, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 111, "Codice malfunzionamento"],
+ [ 112, "Codice unità interna"],
+ [ 113, "Codice capacità I/U"],
+ [ 114, "Valore di riferimento DHW"],
+ [ 115, "Valore di riferimento LW (principale)"],
+ [ 116, "Interruttore portata d acqua"],
+ [ 117, "Protezione termica BUH"],
+ [ 118, "Protezione termica BSH"],
+ [ 119, "Alimentazione flusso kWh benefit"],
+ [ 120, "Entrata solare"],
+ [ 121, "Non in uso"],
+ [ 122, "Non in uso"],
+ [ 123, "Funzionamento bivalente"],
+ [ 124, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 125, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 126, "BSH"],
+ [ 127, "Gradino1 BUH"],
+ [ 128, "Gradino2 BUH"],
+ [ 129, "BPH"],
+ [ 130, "Funzionamento pompa dell acqua"],
+ [ 131, "Funzionamento pompa solare"],
+ [ 132, "Codice opzione interna"],
+ [ 133, "I/U Software ID (xx)"],
+ [ 134, "I/U Software ID (yy)"],
+ [ 135, "I/U EEPROM Ver."],
+ [ 136, "Abilita/disabilita dati"],
+ [ 137, "Indirizzo unità interna"],
+ [ 138, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 139, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 140, "Lato liquido temp. refrig. (R3T)"],
+ [ 141, "Temp. acqua ingresso (R4T)"],
+ [ 142, "Temp. serbatoio DHW (R5T)"],
+ [ 143, "Temp. ambiente interna (R1T)"],
+ [ 144, "Sensore ambiente interno est. (R6T)"],
+ [ 145, "Abilita/disabilita dati"],
+ [ 146, "Indirizzo unità interna"],
+ [ 147, "Risc. prev/mant ON/OFF"],
+ [ 148, "Eco serbatoio ON/OFF"],
+ [ 149, "Comfort serbatoio ON/OFF"],
+ [ 150, "Funzionamento DHW potente. ON/OFF"],
+ [ 151, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 152, "Sistema OFF"],
+ [ 153, "Non in uso"],
+ [ 154, "Emergenza (interna) Attiva/non Attiva"],
+ [ 155, "Valore di riferimento LW (aggiuntivo)"],
+ [ 156, "Valore di riferimento RT"],
+ [ 157, "Raffredd. entrata RT est. agg."],
+ [ 158, "Riscaldam. entrata RT est. agg."],
+ [ 159, "Raffreddamento RT principale"],
+ [ 160, "Riscaldamento RT principale"],
+ [ 161, "Limite 4 consumo energetico"],
+ [ 162, "Limite 3 consumo energetico"],
+ [ 163, "Limite 2 consumo energetico"],
+ [ 164, "Limite 1 consumo energetico"],
+ [ 165, "Nessuno"],
+ [ 166, "Non in uso"],
+ [ 167, "Non in uso"],
+ [ 168, "Non in uso"],
+ [ 169, "Prerisc. serbatoio ON/OFF"],
+ [ 170, "Funzionamento pompa di circolazione"],
+ [ 171, "Uscita allarme"],
+ [ 172, "Uscita funzionamento riscald. ambienti"],
+ [ 173, "Sensore flusso (l/min)"],
+ [ 174, "Pressione acqua"],
+ [ 175, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 176, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 177, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 178, "Non in uso"],
+ [ 179, "Non in uso"],
+ [ 180, "Non in uso"],
+ [ 181, "Non in uso"],
+ [ 182, "Non in uso"],
+ [ 183, "Non in uso"],
+ [ 184, "Non in uso"],
+ [ 185, "Non in uso"],
+ [ 186, "Non in uso"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "I/U EEPROM (3º cifra)"],
+ [ 190, "I/U EEPROM (4º 5º cifra)"],
+ [ 191, "I/U EEPROM (6º 7º cifra)"],
+ [ 192, "I/U EEPROM (8º 9º cifra)"],
+ [ 193, "I/U EEPROM (11º cifra)"],
+ [ 194, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 195, "Abilita/disabilita dati"],
+ [ 196, "Indirizzo unità interna"],
+ [ 197, "Modalità funz. ibrido"],
+ [ 198, "Funzionamento boiler su richiesta"],
+ [ 199, "Boiler DHW su richiesta"],
+ [ 200, "Uscita valvola bypass"],
+ [ 201, "BE_COP"],
+ [ 202, "Temp. target riscaldamento ibrido"],
+ [ 203, "Temp. target riscaldamento boiler"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json b/definitions/X10A/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
new file mode 100644
index 00000000..368c2e73
--- /dev/null
+++ b/definitions/X10A/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Qtà dati sensore"],
+ [ 10, "Qtà compressori INV"],
+ [ 11, "Qtà compressori STD"],
+ [ 12, "Qtà dati ventilatore"],
+ [ 13, "Qtà dati valvola di espansione"],
+ [ 14, "Qtà dati valvola a 4 vie"],
+ [ 15, "Qtà riscaldatori del carter"],
+ [ 16, "Qtà elettrovalvole"],
+ [ 17, "Qtà max. unità interne collegabili"],
+ [ 18, "Qtà unità interne collegate"],
+ [ 19, "O/U MPU ID (xx)"],
+ [ 20, "O/U MPU ID (yy)"],
+ [ 21, "Capacità O/U (kW)"],
+ [ 22, "Modo di funzionamento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Standby riavvio"],
+ [ 25, "Controllo all avviamento"],
+ [ 26, "Sbrinamento"],
+ [ 27, "Recupero dell’olio"],
+ [ 28, "Funzionamento regolazione di pressione"],
+ [ 29, "Segnale su richiesta"],
+ [ 30, "Controllo bassa rumorosità"],
+ [ 31, "Tipo malfunzionamento"],
+ [ 32, "Codice malfunzionamento"],
+ [ 33, "Temp. evap. target"],
+ [ 34, "Temp. Cond. target"],
+ [ 35, "Calo temp. scarico"],
+ [ 36, "Qtà tentativi protezione temp. Scarico"],
+ [ 37, "Calo corrente INV comp."],
+ [ 38, "Qtà tentativi protezione corrente INV comp."],
+ [ 39, "Controllo calo HP"],
+ [ 40, "Qtà tentativi protezione HP"],
+ [ 41, "Controllo calo LP"],
+ [ 42, "Qtà tentativi protezione LP"],
+ [ 43, "Controllo calo temp. aletta"],
+ [ 44, "Qtà tentativi protezione temp. aletta"],
+ [ 45, "Altro controllo calo"],
+ [ 46, "Non in uso"],
+ [ 47, "O/U EEPROM (1º cifra)"],
+ [ 48, "O/U EEPROM (3º 4º cifra)"],
+ [ 49, "O/U EEPROM (5º 6º cifra)"],
+ [ 50, "O/U EEPROM (7º 8º cifre)"],
+ [ 51, "O/U EEPROM (10º cifre)"],
+ [ 52, "O/U EEPROM (11º cifra)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temperatura dell aria esterna(R1T)"],
+ [ 55, "Temp. scambiatore di calore esterno"],
+ [ 56, "Temperatura tubo di scarico"],
+ [ 57, "Temperatura linea di aspirazione"],
+ [ 58, "Temp. media scambiatore di calore esterno"],
+ [ 59, "Temp. tubo del liquido"],
+ [ 60, "Temp. aletta"],
+ [ 61, "Pressione"],
+ [ 62, "Pressione(T)"],
+ [ 63, "Corrente primaria INV (A)"],
+ [ 64, "Corrente secondaria INV (A)"],
+ [ 65, "Voltaggio (N-fase) (V)"],
+ [ 66, "Temp. ingresso salamoia"],
+ [ 67, "Temp. uscita salamoia"],
+ [ 68, "Ing. evap. temp. refrig."],
+ [ 69, "Usc. evap. temp. refrig."],
+ [ 70, "NextDataGrid"],
+ [ 71, "Frequenza INV (giri/sec.)"],
+ [ 72, "Frequenza INV 2 (giri/sec.)"],
+ [ 73, "Compressore STD 1"],
+ [ 74, "Compressore STD 2"],
+ [ 75, "Ventilatore 1 (gradino)"],
+ [ 76, "Ventilatore 2 (gradino)"],
+ [ 77, "Valvola di espansione elettron.(pls)"],
+ [ 78, "Valvola di espansione elettron.2(pls)"],
+ [ 79, "Valvola di espansione elettron.3(pls)"],
+ [ 80, "Valvola di espansione elettron.4(pls)"],
+ [ 81, "Valvola di espansione elettron.5(pls)"],
+ [ 82, "Valvola a 4 vie"],
+ [ 83, "Valvola a 4 vie 2"],
+ [ 84, "Valvola a 4 vie 3"],
+ [ 85, "Valvola a 4 vie 4"],
+ [ 86, "Valvola a 4 vie 5"],
+ [ 87, "Riscaldatore del carter"],
+ [ 88, "Riscaldatore del carter 2"],
+ [ 89, "Riscaldatore del carter 3"],
+ [ 90, "Riscaldatore del carter 4"],
+ [ 91, "Elettrovalvola 1"],
+ [ 92, "Elettrovalvola 2"],
+ [ 93, "Elettrovalvola 3"],
+ [ 94, "Elettrovalvola 4"],
+ [ 95, "Elettrovalvola 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Abilita/disabilita dati"],
+ [ 98, "Indirizzo unità interna"],
+ [ 99, "I/U modo di funzionamento"],
+ [ 100, "Termostato ON/OFF"],
+ [ 101, "Prevenzione congelamento"],
+ [ 102, "Modalità silenziosa"],
+ [ 103, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 104, "Codice malfunzionamento"],
+ [ 105, "Codice unità interna"],
+ [ 106, "Codice capacità I/U"],
+ [ 107, "Valore di riferimento DHW"],
+ [ 108, "Valore di riferimento LW (principale)"],
+ [ 109, "Interruttore portata d acqua"],
+ [ 110, "Protezione termica (Q1L) BUH"],
+ [ 111, "Protezione termica BSH"],
+ [ 112, "Alimentazione flusso kWh benefit"],
+ [ 113, "Entrata solare"],
+ [ 114, "Non in uso"],
+ [ 115, "Non in uso"],
+ [ 116, "Funzionamento bivalente"],
+ [ 117, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 118, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 119, "BSH"],
+ [ 120, "Gradino1 BUH"],
+ [ 121, "Gradino2 BUH"],
+ [ 122, "Valvola chiusura pavimento"],
+ [ 123, "Funzionamento pompa dell acqua"],
+ [ 124, "Funzionamento pompa solare"],
+ [ 125, "Codice opzione interna"],
+ [ 126, "I/U Software ID (xx)"],
+ [ 127, "I/U Software ID (yy)"],
+ [ 128, "I/U EEPROM Ver."],
+ [ 129, "Abilita/disabilita dati"],
+ [ 130, "Indirizzo unità interna"],
+ [ 131, "Temp. acqua in uscita scambiatore di calore (R1T)"],
+ [ 132, "Temp. acqua in uscita BUH (R2T)"],
+ [ 133, "Lato liquido temp. refrig. (R3T)"],
+ [ 134, "Temp. acqua ingresso (R4T)"],
+ [ 135, "Temp. serbatoio DHW (R5T)"],
+ [ 136, "Temp. ambiente interna (R1T)"],
+ [ 137, "Abilita/disabilita dati"],
+ [ 138, "Indirizzo unità interna"],
+ [ 139, "Risc. prev/mant ON/OFF"],
+ [ 140, "Eco serbatoio ON/OFF"],
+ [ 141, "Comfort serbatoio ON/OFF"],
+ [ 142, "Funzionamento DHW potente. ON/OFF"],
+ [ 143, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 144, "Sistema OFF"],
+ [ 145, "Non in uso"],
+ [ 146, "Emergenza (interna) Attiva/non Attiva"],
+ [ 147, "Valore di riferimento LW (aggiuntivo)"],
+ [ 148, "Valore di riferimento RT"],
+ [ 149, "Raffredd. entrata RT est. agg."],
+ [ 150, "Riscaldam. entrata RT est. agg."],
+ [ 151, "Raffreddamento RT principale"],
+ [ 152, "Riscaldamento RT principale"],
+ [ 153, "Limite 4 consumo energetico"],
+ [ 154, "Limite 3 consumo energetico"],
+ [ 155, "Limite 2 consumo energetico"],
+ [ 156, "Limite 1 consumo energetico"],
+ [ 157, "Nessuno"],
+ [ 158, "Non in uso"],
+ [ 159, "Non in uso"],
+ [ 160, "Non in uso"],
+ [ 161, "Prerisc. serbatoio ON/OFF"],
+ [ 162, "Funzionamento pompa di circolazione"],
+ [ 163, "Uscita allarme"],
+ [ 164, "Uscita funzionamento riscald. ambienti"],
+ [ 165, "Sensore flusso (l/min)"],
+ [ 166, "Pressione acqua"],
+ [ 167, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 168, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 169, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 170, "Non in uso"],
+ [ 171, "Non in uso"],
+ [ 172, "Non in uso"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Non in uso"],
+ [ 176, "Non in uso"],
+ [ 177, "Non in uso"],
+ [ 178, "Non in uso"],
+ [ 179, "Abilita/disabilita dati"],
+ [ 180, "Indirizzo unità interna"],
+ [ 181, "I/U EEPROM (3º cifra)"],
+ [ 182, "I/U EEPROM (4º 5º cifra)"],
+ [ 183, "I/U EEPROM (6º 7º cifra)"],
+ [ 184, "I/U EEPROM (8º 9º cifra)"],
+ [ 185, "I/U EEPROM (11º cifra)"],
+ [ 186, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 187, "Abilita/disabilita dati"],
+ [ 188, "Indirizzo unità interna"],
+ [ 189, "Modalità funz. ibrido"],
+ [ 190, "Funzionamento boiler su richiesta"],
+ [ 191, "Boiler DHW su richiesta"],
+ [ 192, "Uscita valvola bypass"],
+ [ 193, "BE_COP"],
+ [ 194, "Temp. target riscaldamento ibrido"],
+ [ 195, "Temp. target riscaldamento boiler"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Italian/EKHWET-BAV3(MULTI DHW TANK).json b/definitions/X10A/Italian/EKHWET-BAV3(MULTI DHW TANK).json
new file mode 100644
index 00000000..71fee526
--- /dev/null
+++ b/definitions/X10A/Italian/EKHWET-BAV3(MULTI DHW TANK).json
@@ -0,0 +1,231 @@
+{
+ "Model": "EKHWET-BAV3(MULTI DHW TANK)",
+ "Language": "Italian",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo di refrigerante"],
+ [ 2, "Qtà dati sensore"],
+ [ 3, "Qtà compressori INV"],
+ [ 4, "Qtà compressori STD"],
+ [ 5, "Qtà dati ventilatore"],
+ [ 6, "Qtà dati valvola di espansione"],
+ [ 7, "Qtà dati valvola a 4 vie"],
+ [ 8, "Qtà riscaldatori del carter"],
+ [ 9, "Qtà elettrovalvole"],
+ [ 10, "Qtà max. unità interne collegabili"],
+ [ 11, "Qtà unità interne collegate"],
+ [ 12, "O/U MPU ID (xx)"],
+ [ 13, "O/U MPU ID (yy)"],
+ [ 14, "Capacità O/U (kW)"],
+ [ 15, "Modo di funzionamento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Standby riavvio"],
+ [ 18, "Controllo all avviamento"],
+ [ 19, "Sbrinamento"],
+ [ 20, "Recupero dell’olio"],
+ [ 21, "Funzionamento regolazione di pressione"],
+ [ 22, "Segnale su richiesta"],
+ [ 23, "Controllo bassa rumorosità"],
+ [ 24, "Tipo malfunzionamento"],
+ [ 25, "Codice malfunzionamento"],
+ [ 26, "Not translated yet"],
+ [ 27, "Temp. Cond. target"],
+ [ 28, "Calo temp. scarico"],
+ [ 29, "Qtà tentativi protezione temp. Scarico"],
+ [ 30, "Calo corrente INV comp."],
+ [ 31, "Qtà tentativi protezione corrente INV comp."],
+ [ 32, "Controllo calo HP"],
+ [ 33, "Qtà tentativi protezione HP"],
+ [ 34, "Controllo calo LP"],
+ [ 35, "Qtà tentativi protezione LP"],
+ [ 36, "Controllo calo temp. aletta"],
+ [ 37, "Qtà tentativi protezione temp. aletta"],
+ [ 38, "Altro controllo calo"],
+ [ 39, "Non in uso"],
+ [ 40, "O/U EEPROM (1º cifra)"],
+ [ 41, "O/U EEPROM (3º 4º cifra)"],
+ [ 42, "O/U EEPROM (5º 6º cifra)"],
+ [ 43, "O/U EEPROM (7º 8º cifre)"],
+ [ 44, "O/U EEPROM (10º cifre)"],
+ [ 45, "O/U EEPROM (11º cifra)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temperatura dell aria esterna(R1T)"],
+ [ 48, "Temp. scambiatore di calore O/U"],
+ [ 49, "Temperatura tubo di scarico"],
+ [ 50, "Temperatura linea di aspirazione"],
+ [ 51, "Temp. media scambiatore di calore"],
+ [ 52, "Temp. tubo del liquido (R6T)"],
+ [ 53, "Alta pressione"],
+ [ 54, "Alta pressione(T)"],
+ [ 55, "Pressione"],
+ [ 56, "Pressione(T)"],
+ [ 57, "Corrente primaria INV (A)"],
+ [ 58, "Corrente secondaria INV (A)"],
+ [ 59, "Temp. aletta INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura uscita compressore"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frequenza INV (giri/sec.)"],
+ [ 65, "Ventilatore 1 (gradino)"],
+ [ 66, "Ventilatore 2 (gradino)"],
+ [ 67, "Valvola di espansione elettron.1(pls)"],
+ [ 68, "Valvola di espansione elettron.2(pls)"],
+ [ 69, "Valvola di espansione elettron.3(pls)"],
+ [ 70, "Valvola di espansione elettron.4(pls)"],
+ [ 71, "Valvola a 4 vie"],
+ [ 72, "Riscaldatore del carter"],
+ [ 73, "Not translated yet"],
+ [ 74, "Not translated yet"],
+ [ 75, "Not translated yet"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temperatura linea di aspirazione"],
+ [ 78, "Temp. scambiatore di calore esterno"],
+ [ 79, "Temp. tubo del liquido"],
+ [ 80, "Pressione"],
+ [ 81, "Valvola di espansione elettron.3(pls)"],
+ [ 82, "O/U MPU ID"],
+ [ 83, "O/U MPU ID"],
+ [ 84, "HPS attivato"],
+ [ 85, "Operazione di salvaguardia"],
+ [ 86, "Riscaldatore del carter"],
+ [ 87, "Not translated yet"],
+ [ 88, "Not translated yet"],
+ [ 89, "Not translated yet"],
+ [ 90, "Valvola a 4 vie (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Calo temp. scarico"],
+ [ 93, "Durante le operazioni di emergenza"],
+ [ 94, "Bandiera unità interna da 50 ° C"],
+ [ 95, "Bit potente (bit di impostazione MT)"],
+ [ 96, "Temperatura della porta del compressore"],
+ [ 97, "(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"],
+ [ 98, "(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"],
+ [ 99, "Elettrovalvola INJ liquida (Y4S)"],
+ [ 100, "Riscaldatore piastra fondo"],
+ [ 101, "Riscaldatore PHE"],
+ [ 102, "Temp. scarico target"],
+ [ 103, "Temperatura della porta target"],
+ [ 104, "Impostazione Monobloc"],
+ [ 105, "Impostazione Minichiller"],
+ [ 106, "Impostazione MT"],
+ [ 107, "Impostazione GSHP"],
+ [ 108, "Impostazione Hydro split"],
+ [ 109, "Impostazione Altherma LT"],
+ [ 110, "Abilita/disabilita dati"],
+ [ 111, "Indirizzo unità interna"],
+ [ 112, "I/U modo di funzionamento"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Prevenzione congelamento"],
+ [ 115, "Modalità silenziosa"],
+ [ 116, "Prevenzione del congelamento per le tubazioni dell acqua"],
+ [ 117, "Codice malfunzionamento"],
+ [ 118, "Codice dettagliato errore"],
+ [ 119, "Tipo malfunzionamento"],
+ [ 120, "Codice capacità I/U"],
+ [ 121, "Valore di riferimento DHW"],
+ [ 122, "Valore di riferimento LW (principale)"],
+ [ 123, "Interruttore portata d acqua"],
+ [ 124, "Protezione termica (Q1L) BUH"],
+ [ 125, "Protezione termica BSH"],
+ [ 126, "Alimentazione flusso kWh benefit"],
+ [ 127, "Entrata solare"],
+ [ 128, "Non in uso"],
+ [ 129, "Non in uso"],
+ [ 130, "Funzionamento bivalente"],
+ [ 131, "Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"],
+ [ 132, "Valvola a 3 vie (On:DHW_Off:Ambienti)"],
+ [ 133, "BSH"],
+ [ 134, "Gradino1 BUH"],
+ [ 135, "Gradino2 BUH"],
+ [ 136, "Valvola chiusura pavimento"],
+ [ 137, "Funzionamento pompa dell acqua"],
+ [ 138, "Funzionamento pompa solare"],
+ [ 139, "Codice opzione interna"],
+ [ 140, "I/U Software ID (xx)"],
+ [ 141, "I/U Software ID (yy)"],
+ [ 142, "I/U EEPROM Ver."],
+ [ 143, "Abilita/disabilita dati"],
+ [ 144, "Indirizzo unità interna"],
+ [ 145, "Temp. acqua uscita prima BUH (R1T)"],
+ [ 146, "Temp. acqua uscita dopo BUH (R2T)"],
+ [ 147, "Lato liquido temp. refrig. (R3T)"],
+ [ 148, "Temp. acqua ingresso (R4T)"],
+ [ 149, "Temp. serbatoio DHW (R5T)"],
+ [ 150, "Temp. ambiente interna (R1T)"],
+ [ 151, "Sensore ambiente interno est. (R6T)"],
+ [ 152, "Abilita/disabilita dati"],
+ [ 153, "Indirizzo unità interna"],
+ [ 154, "Risc. prev/mant ON/OFF"],
+ [ 155, "Eco serbatoio ON/OFF"],
+ [ 156, "Comfort serbatoio ON/OFF"],
+ [ 157, "Funzionamento DHW potente. ON/OFF"],
+ [ 158, "Funzionamento riscaldamento di ambienti ON/OFF"],
+ [ 159, "Sistema OFF"],
+ [ 160, "Non in uso"],
+ [ 161, "Emergenza (interna) Attiva/non Attiva"],
+ [ 162, "Valore di riferimento LW (aggiuntivo)"],
+ [ 163, "Valore di riferimento RT"],
+ [ 164, "Raffredd. entrata RT est. agg."],
+ [ 165, "Riscaldam. entrata RT est. agg."],
+ [ 166, "Raffreddamento RT principale"],
+ [ 167, "Riscaldamento RT principale"],
+ [ 168, "Limite 4 consumo energetico"],
+ [ 169, "Limite 3 consumo energetico"],
+ [ 170, "Limite 2 consumo energetico"],
+ [ 171, "Limite 1 consumo energetico"],
+ [ 172, "Nessuno"],
+ [ 173, "Non in uso"],
+ [ 174, "Non in uso"],
+ [ 175, "Riscaldatore PHE"],
+ [ 176, "Prerisc. serbatoio ON/OFF"],
+ [ 177, "Funzionamento pompa di circolazione"],
+ [ 178, "Uscita allarme"],
+ [ 179, "Uscita funzionamento riscald. ambienti"],
+ [ 180, "Sensore flusso (l/min)"],
+ [ 181, "Pressione acqua"],
+ [ 182, "Segnale pompa dell acqua (0:max-100:stop)"],
+ [ 183, "[Futuro] Mixing 1 valvola a 3 vie"],
+ [ 184, "[Futuro] Mixing 2 valvola a 3 vie"],
+ [ 185, "Sensore di pressione del refrigerante"],
+ [ 186, "Abilita/disabilita dati"],
+ [ 187, "Indirizzo unità interna"],
+ [ 188, "I/U EEPROM (3º cifra)"],
+ [ 189, "I/U EEPROM (4º 5º cifra)"],
+ [ 190, "I/U EEPROM (6º 7º cifra)"],
+ [ 191, "I/U EEPROM (8º 9º cifra)"],
+ [ 192, "I/U EEPROM (11º cifra)"],
+ [ 193, "I/U EEPROM (12º cifre)(rev.)"],
+ [ 194, "Non in uso"],
+ [ 195, "Non in uso"],
+ [ 196, "Non in uso"],
+ [ 197, "Non in uso"],
+ [ 198, "Non in uso"],
+ [ 199, "BUH capacità di output"],
+ [ 200, "Misura del sensore CT (L1)"],
+ [ 201, "Misura del sensore CT (L2)"],
+ [ 202, "HP Forced FG"],
+ [ 203, "Misura del sensore CT (L3)"],
+ [ 204, "Abilita/disabilita dati"],
+ [ 205, "Indirizzo unità interna"],
+ [ 206, "Not translated yet"],
+ [ 207, "Sbrinamento"],
+ [ 208, "Richiesta powerfull"],
+ [ 209, "Priorità richiesta ACS"],
+ [ 210, "Not translated yet"],
+ [ 211, "Add pump"],
+ [ 212, "Main pump"],
+ [ 213, "Not translated yet"],
+ [ 214, "BE_COP"],
+ [ 215, "Temp. target riscaldamento ibrido"],
+ [ 216, "Temp. target riscaldamento boiler"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Temperatura dell acqua miscelata"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Japanese/DEFAULT.json b/definitions/X10A/Japanese/DEFAULT.json
new file mode 100644
index 00000000..8dac3fad
--- /dev/null
+++ b/definitions/X10A/Japanese/DEFAULT.json
@@ -0,0 +1,147 @@
+{
+ "Model": "DEFAULT",
+ "Language": "Japanese",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*冷媒種別"],
+ [ 2, "センサ数(個)"],
+ [ 3, "INVデータ数(個)"],
+ [ 4, "STD圧縮機"],
+ [ 5, "ファンデータ数(個)"],
+ [ 6, "EVデータ数(個)"],
+ [ 7, "四路弁データ(数)"],
+ [ 8, "クランクケースヒータ数(個)"],
+ [ 9, "電磁弁(数)"],
+ [ 10, "データ収集可能室内機台数"],
+ [ 11, "室内機接続台数"],
+ [ 12, "室外機マイコンID"],
+ [ 13, "室外機マイコンID"],
+ [ 14, "運転モード"],
+ [ 15, "サーモON/OFF"],
+ [ 16, "再起動待機"],
+ [ 17, "起動制御中"],
+ [ 18, "デフロスト運転"],
+ [ 19, "油戻し運転"],
+ [ 20, "均油運転"],
+ [ 21, "デマンド指令"],
+ [ 22, "低騒音制御"],
+ [ 23, "その他制御1"],
+ [ 24, "その他制御2"],
+ [ 25, "その他制御3"],
+ [ 26, "その他制御4"],
+ [ 27, "その他制御5"],
+ [ 28, "その他制御6"],
+ [ 29, "その他制御7"],
+ [ 30, "その他制御8"],
+ [ 31, "その他制御9"],
+ [ 32, "その他制御10"],
+ [ 33, "その他制御11"],
+ [ 34, "その他制御12"],
+ [ 35, "その他制御13"],
+ [ 36, "その他制御14"],
+ [ 37, "その他制御15"],
+ [ 38, "その他制御16"],
+ [ 39, "エラーレベル"],
+ [ 40, "エラーコード"],
+ [ 41, "目標蒸発温度"],
+ [ 42, "目標凝縮温度"],
+ [ 43, "吐出管温度垂下"],
+ [ 44, "吐出管保護リトライ回数"],
+ [ 45, "圧縮機INV電流垂下"],
+ [ 46, "圧縮機INV電流保護リトライ回数"],
+ [ 47, "高圧垂下制御"],
+ [ 48, "高圧保護リトライ回数"],
+ [ 49, "低圧垂下制御"],
+ [ 50, "低圧保護リトライ回数"],
+ [ 51, "その他制御"],
+ [ 52, "NextDataGrid"],
+ [ 53, "外気温度"],
+ [ 54, "外熱交温度"],
+ [ 55, "吐出管温度"],
+ [ 56, "吸入管温度"],
+ [ 57, "室外熱交中間温度"],
+ [ 58, "液管温度"],
+ [ 59, "INVフィン温度"],
+ [ 60, "低圧圧力"],
+ [ 61, "低圧圧力(T)"],
+ [ 62, "センサーデータ9"],
+ [ 63, "センサーデータ10"],
+ [ 64, "センサーデータ11"],
+ [ 65, "INV1次電流"],
+ [ 66, "INV2次電流"],
+ [ 67, "INVフィン温度"],
+ [ 68, "センサーデータ4"],
+ [ 69, "センサーデータ5"],
+ [ 70, "センサーデータ6"],
+ [ 71, "センサーデータ7"],
+ [ 72, "センサーデータ8"],
+ [ 73, "センサーデータ9"],
+ [ 74, "センサーデータ10"],
+ [ 75, "センサーデータ11"],
+ [ 76, "NextDataGrid"],
+ [ 77, "INV周波数1(rps)"],
+ [ 78, "INV周波数2(rps)"],
+ [ 79, "STD圧縮機1"],
+ [ 80, "STD圧縮機2"],
+ [ 81, "ファン1(step)"],
+ [ 82, "ファン2(step)"],
+ [ 83, "電動弁1(pls)"],
+ [ 84, "電動弁2(pls)"],
+ [ 85, "四路弁1"],
+ [ 86, "四路弁2"],
+ [ 87, "クランクケースヒータ1"],
+ [ 88, "クランクケースヒータ2"],
+ [ 89, "電磁弁1"],
+ [ 90, "電磁弁2"],
+ [ 91, "電磁弁3"],
+ [ 92, "電磁弁4"],
+ [ 93, "電磁弁5"],
+ [ 94, "電磁弁6"],
+ [ 95, "電磁弁7"],
+ [ 96, "電磁弁8"],
+ [ 97, "電磁弁9"],
+ [ 98, "電磁弁10"],
+ [ 99, "In-Out separator"],
+ [ 100, "データ有効無効"],
+ [ 101, "室内機アドレス"],
+ [ 102, "室内運転モード"],
+ [ 103, "サーモON/OFF"],
+ [ 104, "凍結防止"],
+ [ 105, "静音モード"],
+ [ 106, "水配管凍結防止"],
+ [ 107, "エラーコード"],
+ [ 108, "室内機コード"],
+ [ 109, "室内機容量"],
+ [ 110, "リモコン設定温度"],
+ [ 111, "H/P出口設定温度"],
+ [ 112, "フロースイッチ"],
+ [ 113, "Clixon BUH"],
+ [ 114, "Clixon BSH"],
+ [ 115, "HP tariff input"],
+ [ 116, "ソーラー入力"],
+ [ 117, "Not in use"],
+ [ 118, "Not in use"],
+ [ 119, "Bivalent Operation"],
+ [ 120, "3方弁(冷暖)"],
+ [ 121, "四路弁(Space/DHW)"],
+ [ 122, "BSH"],
+ [ 123, "BUH1"],
+ [ 124, "BUH2"],
+ [ 125, "ボトムプレートヒータ"],
+ [ 126, "ポンプ出力"],
+ [ 127, "ソーラー出力信号"],
+ [ 128, "室内オプションコード"],
+ [ 129, "室内ソフトウェアバージョン"],
+ [ 130, "室内EEPROMバージョン"],
+ [ 131, "データ有効無効"],
+ [ 132, "室内機アドレス"],
+ [ 133, "PHE出口(R1T)"],
+ [ 134, "BUH出口(R2T)"],
+ [ 135, "液管温度(R3T)"],
+ [ 136, "入口温度(R4T)"],
+ [ 137, "DHW温度(R5T)"],
+ [ 138, "リモコンサーモ"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/PROTOCOL_S.json b/definitions/X10A/PROTOCOL_S.json
new file mode 100644
index 00000000..f575a20d
--- /dev/null
+++ b/definitions/X10A/PROTOCOL_S.json
@@ -0,0 +1,34 @@
+{
+ "Model": "PROTOCOL_S",
+ "Language": "English",
+ "Presets": {
+ "Normal": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]
+ },
+ "Parameters": [
+ [ 1, 80, 0, 103, 2, -1, "HP Sensor(kgcm2)"],
+ [ 2, 80, 2, 103, 2, -1, "LP Sensor(kgcm2)"],
+ [ 3, 83, 0, 152, 2, -1, "EV (pls)"],
+ [ 4, 83, 2, 164, 1, -1, "Outdoor Fan (Upper)(rps)"],
+ [ 5, 83, 3, 164, 1, -1, "Outdoor Fan (Lower)(rps)"],
+ [ 6, 83, 4, 200, 1, -1, "INV Comp. Frequency(Hz)"],
+ [ 7, 83, 5, 200, 1, -1, "Comp. Preheat"],
+ [ 8, 83, 6, 200, 1, -1, "52C Output"],
+ [ 9, 83, 8, 200, 1, -1, "20R (SV) Output"],
+ [ 10, 83, 7, 200, 1, -1, "20S (4-way) Output"],
+ [ 11, 83, 10, 200, 1, -1, "Crankcase Heater"],
+ [ 12, 83, 11, 200, 1, -1, "Ener-Cut Output"],
+ [ 13, 84, 0, 103, 2, -1, "Indoor Suction Air Temp.(C)"],
+ [ 14, 84, 2, 103, 2, -1, "Indoor Heat Exchanger Temp.(C)"],
+ [ 15, 84, 4, 103, 2, -1, "Outdoor air temp.(C)"],
+ [ 16, 84, 6, 103, 2, -1, "Outdoor heat exchanger temp.(C)"],
+ [ 17, 84, 8, 109, 2, -1, "Discharge pipe temp.(C)"],
+ [ 18, 84, 10, 103, 2, -1, "Fin Temp.(C)"],
+ [ 19, 84, 12, 312, 1, -1, "Delta-Tr(deg)"],
+ [ 20, 84, 13, 151, 1, -1, "R/C Setpoint(C)"],
+ [ 21, 85, 0, 201, 1, -1, "Operation Mode"],
+ [ 22, 85, 1, 204, 1, -1, "Error Code"],
+ [ 23, 85, 2, 204, 1, -1, "Thermo Off Error"],
+ [ 24, 85, 3, 204, 1, -1, "Warning Code"],
+ [ 25, 85, 4, 204, 1, -1, "Caution Code"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/PROTOCOL_S_ROTEX.json b/definitions/X10A/PROTOCOL_S_ROTEX.json
new file mode 100644
index 00000000..e77d7e12
--- /dev/null
+++ b/definitions/X10A/PROTOCOL_S_ROTEX.json
@@ -0,0 +1,27 @@
+{
+ "Model": "PROTOCOL_S_ROTEX",
+ "Language": "English",
+ "Presets": {
+ "Normal": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
+ },
+ "Parameters": [
+ [ 1, 83, 0, 200, 1, -1, "Circulation pump"],
+ [ 2, 83, 3, 200, 1, -1, "External heater?"],
+ [ 3, 83, 5, 200, 1, -1, "Priority to domestic water"],
+ [ 4, 83, 6, 200, 1, -1, "Burner inhibit from solaris"],
+ [ 5, 84, 0, 153, 2, -1, "Refrig. Temp. liquid side(C)"],
+ [ 6, 84, 2, 153, 2, -1, "Inlet water temp.(C)"],
+ [ 7, 84, 4, 153, 2, -1, "Outlet Water Temp.(C)"],
+ [ 8, 84, 6, 153, 2, -1, "D(C)"],
+ [ 9, 84, 8, 153, 2, -1, "DHW tank temp.(C)"],
+ [ 10, 84, 10, 103, 2, -1, "F(C)"],
+ [ 11, 84, 12, 101, 1, -1, "Delta-Tr(deg)"],
+ [ 12, 84, 13, 151, 1, -1, "R/C Setpoint(C)"],
+ [ 13, 85, 0, 201, 1, -1, "Operation Mode"],
+ [ 14, 85, 1, 204, 1, -1, "Error Code"],
+ [ 15, 85, 2, 204, 1, -1, "Thermo Off Error"],
+ [ 16, 85, 3, 204, 1, -1, "Warning Code"],
+ [ 17, 85, 4, 204, 1, -1, "Caution Code"],
+ [ 18, 86, 0, 103, 2, -1, "????"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/ALTHERMA(HYBRID).json b/definitions/X10A/Spanish/ALTHERMA(HYBRID).json
new file mode 100644
index 00000000..2c97193f
--- /dev/null
+++ b/definitions/X10A/Spanish/ALTHERMA(HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(HYBRID)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido"],
+ [ 60, "Temperatura de la aleta del INV"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "Corriente primaria del INV (A)"],
+ [ 66, "Corriente secundaria del INV (A)"],
+ [ 67, "Tensión (V)"],
+ [ 68, "Conmutador del flujo de sales"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "Temperatura de entrada de sales"],
+ [ 77, "Temperatura de salida de sales"],
+ [ 78, "Refrig. temp. evap. IN"],
+ [ 79, "Refrig. temp. evap. OUT"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "No se utiliza"],
+ [ 83, "No se utiliza"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Frecuencia del INV (rps)"],
+ [ 86, "Frecuencia 2 del INV (rps)"],
+ [ 87, "Compresor STD 1"],
+ [ 88, "Compresor STD 2"],
+ [ 89, "Ventilador 1 (10 rpm)"],
+ [ 90, "Ventilador 2 (nivel)"],
+ [ 91, "Válvula de expansión1 (pls)"],
+ [ 92, "Válvula de expansión2 (pls)"],
+ [ 93, "Válvula de expansión3 (pls)"],
+ [ 94, "Válvula de expansión4 (pls)"],
+ [ 95, "Válvula de expansión5 (pls)"],
+ [ 96, "Válvula de 4 vías 1"],
+ [ 97, "Válvula de 4 vías 2"],
+ [ 98, "Válvula de 4 vías 3"],
+ [ 99, "Válvula de 4 vías 4"],
+ [ 100, "Válvula de 4 vías 5"],
+ [ 101, "Calentador del cárter 1"],
+ [ 102, "Calentador del cárter 2"],
+ [ 103, "Calentador del cárter 3"],
+ [ 104, "Calentador del cárter 4"],
+ [ 105, "Calentador del cárter 5"],
+ [ 106, "Válvula solenoide 1"],
+ [ 107, "SV (BPH)"],
+ [ 108, "Válvula solenoide 3"],
+ [ 109, "Válvula solenoide 4"],
+ [ 110, "Válvula solenoide 5"],
+ [ 111, "In-Out separator"],
+ [ 112, "Activación/desactivación datos"],
+ [ 113, "Dirección U/Int."],
+ [ 114, "Modo func. U/Int"],
+ [ 115, "Termostato ON/OFF"],
+ [ 116, "Protección de congelación"],
+ [ 117, "Modo silencioso"],
+ [ 118, "Protección de congelación tuberías"],
+ [ 119, "Código de error"],
+ [ 120, "Código de la unidad interior"],
+ [ 121, "Código de capacidad U/Int"],
+ [ 122, "Consigna ACS"],
+ [ 123, "Consigna TAI (principal)"],
+ [ 124, "Conmutador de flujo del agua"],
+ [ 125, "Protector térmico (Q1L) BUH"],
+ [ 126, "Protector térmico BSH"],
+ [ 127, "Modo tarifa reducida"],
+ [ 128, "Entrada solar"],
+ [ 129, "No se utiliza"],
+ [ 130, "No se utiliza"],
+ [ 131, "Modo bivalente"],
+ [ 132, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 133, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 134, "Resistencia BSH"],
+ [ 135, "Resistencia BUH etapa 1"],
+ [ 136, "Resistencia BUH etapa 2"],
+ [ 137, "Resistencia BPH(Bandeja U/E)"],
+ [ 138, "Funcionamiento bomba"],
+ [ 139, "Salida bomba solar"],
+ [ 140, "Código de opción interior"],
+ [ 141, "U/Int software ID (xx)"],
+ [ 142, "U/Int software ID (yy)"],
+ [ 143, "U/Int EEPROM Ver."],
+ [ 144, "Activación/desactivación datos"],
+ [ 145, "Dirección U/Int."],
+ [ 146, "Temperatura del intercambiador de calor del agua de salida (R1T)"],
+ [ 147, "Temperatura del agua de salida (R2T)"],
+ [ 148, "Temp. Refrigerante líquido (R3T)"],
+ [ 149, "Temp. Retorno (R4T)"],
+ [ 150, "Temp. Deposito ACS (R5T)"],
+ [ 151, "Temperatura RT"],
+ [ 152, "Ambiente exterior o sensor exterior"],
+ [ 153, "Activación/desactivación datos"],
+ [ 154, "Dirección U/Int."],
+ [ 155, "Recalentamiento ON/OFF"],
+ [ 156, "Almacenamiento ECO ON/OFF"],
+ [ 157, "Almacenamiento Confort ON/OFF"],
+ [ 158, "Modo Powerful ACS (ON/OFF)"],
+ [ 159, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 160, "Sistema OFF (ON=Sistema apagado)"],
+ [ 161, "No se utiliza"],
+ [ 162, "Modo emergencia (interior) activado / no activado"],
+ [ 163, "Consigna TAI (adicional)"],
+ [ 164, "Consigna TH ambiente"],
+ [ 165, "TH Ext. Refrigeración(adicional)"],
+ [ 166, "TH Ext. calefacción(adicional)"],
+ [ 167, "TH Ext. Refrigeración(principal)"],
+ [ 168, "TH Ext. Calefacción(principal)"],
+ [ 169, "Límite consumo de energía 4"],
+ [ 170, "Límite consumo de energía 3"],
+ [ 171, "Límite consumo de energía 2"],
+ [ 172, "Límite consumo de energía 1"],
+ [ 173, "Ninguno"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "Precalentamiento del depósito ON/OFF"],
+ [ 178, "Salida bomba ACS"],
+ [ 179, "Salida de alarma"],
+ [ 180, "Espacio Op. C/H o BPH"],
+ [ 181, "Caudalímetro (l/min)"],
+ [ 182, "Presión de agua"],
+ [ 183, "Señal bomba (0:máx-100stop)"],
+ [ 184, "V3V mezcladora 1"],
+ [ 185, "V3V mezcladora 2"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "No se utiliza"],
+ [ 193, "No se utiliza"],
+ [ 194, "No se utiliza"],
+ [ 195, "Activación/desactivación datos"],
+ [ 196, "Dirección U/Int."],
+ [ 197, "U/Int. EEPROM (3er dígito)"],
+ [ 198, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 199, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 200, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 201, "U/Int. EEPROM (11º dígito)"],
+ [ 202, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 203, "Activación/desactivación datos"],
+ [ 204, "Dirección U/Int."],
+ [ 205, "Modo Op. Híbrido"],
+ [ 206, "Demanda de operación de la caldera"],
+ [ 207, "Demanda DWH de caldera"],
+ [ 208, "Salida de la válvula de desviación"],
+ [ 209, "Modo de operación ACS híbrido"],
+ [ 210, "BE_COP"],
+ [ 211, "Temperatura objetivo de calentamiento híbrido"],
+ [ 212, "Temperatura objetivo para calentar la caldera"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_04-08KW).json b/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_04-08KW).json
new file mode 100644
index 00000000..138e0df6
--- /dev/null
+++ b/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_04-08KW).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_04-08KW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (nivel)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de error detallado"],
+ [ 118, "Tipo de avería"],
+ [ 119, "Código de capacidad U/Int"],
+ [ 120, "Consigna ACS"],
+ [ 121, "Consigna TAI (principal)"],
+ [ 122, "Conmutador de flujo del agua"],
+ [ 123, "Protector térmico (Q1L) BUH"],
+ [ 124, "Protector térmico BSH"],
+ [ 125, "Modo tarifa reducida"],
+ [ 126, "Entrada solar"],
+ [ 127, "No se utiliza"],
+ [ 128, "No se utiliza"],
+ [ 129, "Modo bivalente"],
+ [ 130, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 131, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 132, "Resistencia BSH"],
+ [ 133, "Resistencia BUH etapa 1"],
+ [ 134, "Resistencia BUH etapa 2"],
+ [ 135, "Resistencia BPH(Bandeja U/E)"],
+ [ 136, "Funcionamiento bomba"],
+ [ 137, "Salida bomba solar"],
+ [ 138, "Código de opción interior"],
+ [ 139, "U/Int software ID (xx)"],
+ [ 140, "U/Int software ID (yy)"],
+ [ 141, "U/Int EEPROM Ver."],
+ [ 142, "Activación/desactivación datos"],
+ [ 143, "Dirección U/Int."],
+ [ 144, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 145, "Temp. Impulsión después de BUH (R2T)"],
+ [ 146, "Temp. Refrigerante líquido (R3T)"],
+ [ 147, "Temp. Retorno (R4T)"],
+ [ 148, "Temp. Deposito ACS (R5T)"],
+ [ 149, "Temperatura ambiente interior (R1T)"],
+ [ 150, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 151, "Activación/desactivación datos"],
+ [ 152, "Dirección U/Int."],
+ [ 153, "Recalentamiento ON/OFF"],
+ [ 154, "Almacenamiento ECO ON/OFF"],
+ [ 155, "Almacenamiento Confort ON/OFF"],
+ [ 156, "Modo Powerful ACS (ON/OFF)"],
+ [ 157, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 158, "Sistema OFF (ON=Sistema apagado)"],
+ [ 159, "No se utiliza"],
+ [ 160, "Modo emergencia (interior) activado / no activado"],
+ [ 161, "Consigna TAI (adicional)"],
+ [ 162, "Consigna TH ambiente"],
+ [ 163, "TH Ext. Refrigeración(adicional)"],
+ [ 164, "TH Ext. calefacción(adicional)"],
+ [ 165, "TH Ext. Refrigeración(principal)"],
+ [ 166, "TH Ext. Calefacción(principal)"],
+ [ 167, "Límite consumo de energía 4"],
+ [ 168, "Límite consumo de energía 3"],
+ [ 169, "Límite consumo de energía 2"],
+ [ 170, "Límite consumo de energía 1"],
+ [ 171, "Ninguno"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Precalentamiento del depósito ON/OFF"],
+ [ 176, "Salida bomba ACS"],
+ [ 177, "Salida de alarma"],
+ [ 178, "Salida calefacción/refrigeración"],
+ [ 179, "Caudalímetro (l/min)"],
+ [ 180, "Presión de agua"],
+ [ 181, "Señal bomba (0:máx-100stop)"],
+ [ 182, "V3V mezcladora 1"],
+ [ 183, "V3V mezcladora 2"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "No se utiliza"],
+ [ 193, "Activación/desactivación datos"],
+ [ 194, "Dirección U/Int."],
+ [ 195, "U/Int. EEPROM (3er dígito)"],
+ [ 196, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 197, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 198, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 199, "U/Int. EEPROM (11º dígito)"],
+ [ 200, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 201, "Activación/desactivación datos"],
+ [ 202, "Dirección U/Int."],
+ [ 203, "Modo Op. Híbrido"],
+ [ 204, "Demanda de operación de la caldera"],
+ [ 205, "Demanda DWH de caldera"],
+ [ 206, "Salida de la válvula de desviación"],
+ [ 207, "BE_COP"],
+ [ 208, "Temperatura objetivo de calentamiento híbrido"],
+ [ 209, "Temperatura objetivo para calentar la caldera"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_11-16KW).json b/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_11-16KW).json
new file mode 100644
index 00000000..597a8c60
--- /dev/null
+++ b/definitions/X10A/Spanish/ALTHERMA(LT_CA_CB_11-16KW).json
@@ -0,0 +1,209 @@
+{
+ "Model": "ALTHERMA(LT_CA_CB_11-16KW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Temp. disipador de calor"],
+ [ 54, "Presión"],
+ [ 55, "Presión(T)"],
+ [ 56, "No se utiliza"],
+ [ 57, "No se utiliza"],
+ [ 58, "Corriente primaria del INV (A)"],
+ [ 59, "Corriente secundaria del INV (A)"],
+ [ 60, "Tensión (N-Fase) (V)"],
+ [ 61, "Conmutador del flujo de sales"],
+ [ 62, "No se utiliza"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "No se utiliza"],
+ [ 66, "No se utiliza"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "Temperatura de entrada de sales"],
+ [ 70, "Temperatura de salida de sales"],
+ [ 71, "Refrig. temp. evap. IN"],
+ [ 72, "Refrig. temp. evap. OUT"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "No se utiliza"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frecuencia del INV (rps)"],
+ [ 79, "Ventilador 1 (nivel)"],
+ [ 80, "Ventilador 2 (nivel)"],
+ [ 81, "Válvula de expansión1 (pls)"],
+ [ 82, "Válvula de expansión2 (pls)"],
+ [ 83, "Válvula de 4 vías 1"],
+ [ 84, "Válvula de 4 vías 2"],
+ [ 85, "Válvula de 4 vías 3"],
+ [ 86, "Válvula de 4 vías 4"],
+ [ 87, "Válvula de 4 vías 5"],
+ [ 88, "Calentador del cárter 1"],
+ [ 89, "Calentador del cárter 2"],
+ [ 90, "Calentador del cárter 3"],
+ [ 91, "Calentador del cárter 4"],
+ [ 92, "SV1 (gas caliente)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Válvula solenoide 3"],
+ [ 95, "Válvula solenoide 4"],
+ [ 96, "Válvula solenoide 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Activación/desactivación datos"],
+ [ 99, "Dirección U/Int."],
+ [ 100, "Modo func. U/Int"],
+ [ 101, "Termostato ON/OFF"],
+ [ 102, "Protección de congelación"],
+ [ 103, "Modo silencioso"],
+ [ 104, "Protección de congelación tuberías"],
+ [ 105, "Código de error"],
+ [ 106, "Código de la unidad interior"],
+ [ 107, "Código de capacidad U/Int"],
+ [ 108, "Consigna ACS"],
+ [ 109, "Consigna TAI (principal)"],
+ [ 110, "Conmutador de flujo del agua"],
+ [ 111, "Protector térmico BUH"],
+ [ 112, "Protector térmico BSH"],
+ [ 113, "Modo tarifa reducida"],
+ [ 114, "Entrada solar"],
+ [ 115, "No se utiliza"],
+ [ 116, "No se utiliza"],
+ [ 117, "Modo bivalente"],
+ [ 118, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 119, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 120, "Resistencia BSH"],
+ [ 121, "Resistencia BUH etapa 1"],
+ [ 122, "Resistencia BUH etapa 2"],
+ [ 123, "Resistencia BPH(Bandeja U/E)"],
+ [ 124, "Funcionamiento bomba"],
+ [ 125, "Salida bomba solar"],
+ [ 126, "Código de opción interior"],
+ [ 127, "U/Int software ID (xx)"],
+ [ 128, "U/Int software ID (yy)"],
+ [ 129, "U/Int EEPROM Ver."],
+ [ 130, "Activación/desactivación datos"],
+ [ 131, "Dirección U/Int."],
+ [ 132, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 133, "Temp. Impulsión después de BUH (R2T)"],
+ [ 134, "Temp. Refrigerante líquido (R3T)"],
+ [ 135, "Temp. Retorno (R4T)"],
+ [ 136, "Temp. Deposito ACS (R5T)"],
+ [ 137, "Temperatura ambiente interior (R1T)"],
+ [ 138, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 139, "Activación/desactivación datos"],
+ [ 140, "Dirección U/Int."],
+ [ 141, "Recalentamiento ON/OFF"],
+ [ 142, "Almacenamiento ECO ON/OFF"],
+ [ 143, "Almacenamiento Confort ON/OFF"],
+ [ 144, "Modo Powerful ACS (ON/OFF)"],
+ [ 145, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 146, "Sistema OFF (ON=Sistema apagado)"],
+ [ 147, "No se utiliza"],
+ [ 148, "Modo emergencia (interior) activado / no activado"],
+ [ 149, "Consigna TAI (adicional)"],
+ [ 150, "Consigna TH ambiente"],
+ [ 151, "TH Ext. Refrigeración(adicional)"],
+ [ 152, "TH Ext. calefacción(adicional)"],
+ [ 153, "TH Ext. Refrigeración(principal)"],
+ [ 154, "TH Ext. Calefacción(principal)"],
+ [ 155, "Límite consumo de energía 4"],
+ [ 156, "Límite consumo de energía 3"],
+ [ 157, "Límite consumo de energía 2"],
+ [ 158, "Límite consumo de energía 1"],
+ [ 159, "Ninguno"],
+ [ 160, "No se utiliza"],
+ [ 161, "No se utiliza"],
+ [ 162, "No se utiliza"],
+ [ 163, "Precalentamiento del depósito ON/OFF"],
+ [ 164, "Salida bomba ACS"],
+ [ 165, "Salida de alarma"],
+ [ 166, "Salida calefacción/refrigeración"],
+ [ 167, "Caudalímetro (l/min)"],
+ [ 168, "Presión de agua"],
+ [ 169, "Señal bomba (0:máx-100stop)"],
+ [ 170, "V3V mezcladora 1"],
+ [ 171, "V3V mezcladora 2"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "No se utiliza"],
+ [ 178, "No se utiliza"],
+ [ 179, "No se utiliza"],
+ [ 180, "No se utiliza"],
+ [ 181, "Activación/desactivación datos"],
+ [ 182, "Dirección U/Int."],
+ [ 183, "U/Int. EEPROM (3er dígito)"],
+ [ 184, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 185, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 186, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 187, "U/Int. EEPROM (11º dígito)"],
+ [ 188, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 189, "Activación/desactivación datos"],
+ [ 190, "Dirección U/Int."],
+ [ 191, "Modo Op. Híbrido"],
+ [ 192, "Demanda de operación de la caldera"],
+ [ 193, "Demanda DWH de caldera"],
+ [ 194, "Salida de la válvula de desviación"],
+ [ 195, "BE_COP"],
+ [ 196, "Temperatura objetivo de calentamiento híbrido"],
+ [ 197, "Temperatura objetivo para calentar la caldera"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_DHWHP).json b/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_DHWHP).json
new file mode 100644
index 00000000..9c11e61f
--- /dev/null
+++ b/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_DHWHP).json
@@ -0,0 +1,221 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_DHWHP)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (nivel)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de la unidad interior"],
+ [ 118, "Código de capacidad U/Int"],
+ [ 119, "Consigna ACS"],
+ [ 120, "Consigna TAI (principal)"],
+ [ 121, "Conmutador de flujo del agua"],
+ [ 122, "Protector térmico (Q1L) BUH"],
+ [ 123, "Protector térmico BSH"],
+ [ 124, "Modo tarifa reducida"],
+ [ 125, "Entrada solar"],
+ [ 126, "No se utiliza"],
+ [ 127, "No se utiliza"],
+ [ 128, "Modo bivalente"],
+ [ 129, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 130, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 131, "Resistencia BSH"],
+ [ 132, "Resistencia BUH etapa 1"],
+ [ 133, "Resistencia BUH etapa 2"],
+ [ 134, "Válvula de cierre de suelo radiante"],
+ [ 135, "Funcionamiento bomba"],
+ [ 136, "Salida bomba solar"],
+ [ 137, "Código de opción interior"],
+ [ 138, "U/Int software ID (xx)"],
+ [ 139, "U/Int software ID (yy)"],
+ [ 140, "U/Int EEPROM Ver."],
+ [ 141, "Activación/desactivación datos"],
+ [ 142, "Dirección U/Int."],
+ [ 143, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 144, "Temp. Impulsión después de BUH (R2T)"],
+ [ 145, "Temp. Refrigerante líquido (R3T)"],
+ [ 146, "Temp. Retorno (R4T)"],
+ [ 147, "Temp. Deposito ACS (R5T)"],
+ [ 148, "Temperatura ambiente interior (R1T)"],
+ [ 149, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 150, "Activación/desactivación datos"],
+ [ 151, "Dirección U/Int."],
+ [ 152, "Recalentamiento ON/OFF"],
+ [ 153, "Almacenamiento ECO ON/OFF"],
+ [ 154, "Almacenamiento Confort ON/OFF"],
+ [ 155, "Modo Powerful ACS (ON/OFF)"],
+ [ 156, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 157, "Sistema OFF (ON=Sistema apagado)"],
+ [ 158, "No se utiliza"],
+ [ 159, "Modo emergencia (interior) activado / no activado"],
+ [ 160, "Consigna TAI (adicional)"],
+ [ 161, "Consigna TH ambiente"],
+ [ 162, "TH Ext. Refrigeración(adicional)"],
+ [ 163, "TH Ext. calefacción(adicional)"],
+ [ 164, "TH Ext. Refrigeración(principal)"],
+ [ 165, "TH Ext. Calefacción(principal)"],
+ [ 166, "Límite consumo de energía 4"],
+ [ 167, "Límite consumo de energía 3"],
+ [ 168, "Límite consumo de energía 2"],
+ [ 169, "Límite consumo de energía 1"],
+ [ 170, "Ninguno"],
+ [ 171, "Prohibición de desescarche ON/OFF"],
+ [ 172, "Modo Powerfull activado"],
+ [ 173, "Prioridad ACS requerida"],
+ [ 174, "Conflicto de modo"],
+ [ 175, "Salida bomba ACS"],
+ [ 176, "Salida de alarma"],
+ [ 177, "Salida calefacción/refrigeración"],
+ [ 178, "Caudalímetro (l/min)"],
+ [ 179, "Presión de agua"],
+ [ 180, "Señal bomba (0:máx-100stop)"],
+ [ 181, "Válvula de 3 vías mezcla 1"],
+ [ 182, "Válvula de 3 vías mezcla 2"],
+ [ 183, "No se utiliza"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "Activación/desactivación datos"],
+ [ 193, "Dirección U/Int."],
+ [ 194, "U/Int. EEPROM (3er dígito)"],
+ [ 195, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 196, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 197, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 198, "U/Int. EEPROM (11º dígito)"],
+ [ 199, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 200, "Activación/desactivación datos"],
+ [ 201, "Dirección U/Int."],
+ [ 202, "Modo Op. Híbrido"],
+ [ 203, "Demanda de operación de la caldera"],
+ [ 204, "Demanda DWH de caldera"],
+ [ 205, "Salida de la válvula de desviación"],
+ [ 206, "BE_COP"],
+ [ 207, "Temperatura objetivo de calentamiento híbrido"],
+ [ 208, "Temperatura objetivo para calentar la caldera"],
+ [ 209, "Add pump"],
+ [ 210, "Main pump"],
+ [ 211, "Mixed water temp.(R7T)"],
+ [ 212, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_HYBRID).json b/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_HYBRID).json
new file mode 100644
index 00000000..8b610b65
--- /dev/null
+++ b/definitions/X10A/Spanish/ALTHERMA(LT_MULTI_HYBRID).json
@@ -0,0 +1,222 @@
+{
+ "Model": "ALTHERMA(LT_MULTI_HYBRID)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=1"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (nivel)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de la unidad interior"],
+ [ 118, "Código de capacidad U/Int"],
+ [ 119, "Consigna ACS"],
+ [ 120, "Consigna TAI (principal)"],
+ [ 121, "Conmutador de flujo del agua"],
+ [ 122, "Protector térmico (Q1L) BUH"],
+ [ 123, "Protector térmico BSH"],
+ [ 124, "Modo tarifa reducida"],
+ [ 125, "Entrada solar"],
+ [ 126, "No se utiliza"],
+ [ 127, "No se utiliza"],
+ [ 128, "Modo bivalente"],
+ [ 129, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 130, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 131, "Resistencia BSH"],
+ [ 132, "Resistencia BUH etapa 1"],
+ [ 133, "Resistencia BUH etapa 2"],
+ [ 134, "Válvula de cierre de suelo radiante"],
+ [ 135, "Funcionamiento bomba"],
+ [ 136, "Salida bomba solar"],
+ [ 137, "Código de opción interior"],
+ [ 138, "U/Int software ID (xx)"],
+ [ 139, "U/Int software ID (yy)"],
+ [ 140, "U/Int EEPROM Ver."],
+ [ 141, "Activación/desactivación datos"],
+ [ 142, "Dirección U/Int."],
+ [ 143, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 144, "Temp. Impulsión después de BUH (R2T)"],
+ [ 145, "Temp. Refrigerante líquido (R3T)"],
+ [ 146, "Temp. Retorno (R4T)"],
+ [ 147, "Temp. Deposito ACS (R5T)"],
+ [ 148, "Temperatura ambiente interior (R1T)"],
+ [ 149, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 150, "Activación/desactivación datos"],
+ [ 151, "Dirección U/Int."],
+ [ 152, "Recalentamiento ON/OFF"],
+ [ 153, "Almacenamiento ECO ON/OFF"],
+ [ 154, "Almacenamiento Confort ON/OFF"],
+ [ 155, "Modo Powerful ACS (ON/OFF)"],
+ [ 156, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 157, "Sistema OFF (ON=Sistema apagado)"],
+ [ 158, "No se utiliza"],
+ [ 159, "Modo emergencia (interior) activado / no activado"],
+ [ 160, "Consigna TAI (adicional)"],
+ [ 161, "Consigna TH ambiente"],
+ [ 162, "TH Ext. Refrigeración(adicional)"],
+ [ 163, "TH Ext. calefacción(adicional)"],
+ [ 164, "TH Ext. Refrigeración(principal)"],
+ [ 165, "TH Ext. Calefacción(principal)"],
+ [ 166, "Límite consumo de energía 4"],
+ [ 167, "Límite consumo de energía 3"],
+ [ 168, "Límite consumo de energía 2"],
+ [ 169, "Límite consumo de energía 1"],
+ [ 170, "Ninguno"],
+ [ 171, "Prohibición de desescarche ON/OFF"],
+ [ 172, "Modo Powerfull activado"],
+ [ 173, "Prioridad ACS requerida"],
+ [ 174, "Conflicto de modo"],
+ [ 175, "Salida bomba ACS"],
+ [ 176, "Salida de alarma"],
+ [ 177, "Salida calefacción/refrigeración"],
+ [ 178, "Caudalímetro (l/min)"],
+ [ 179, "Presión de agua"],
+ [ 180, "Señal bomba (0:máx-100stop)"],
+ [ 181, "Válvula de 3 vías mezcla 1"],
+ [ 182, "Válvula de 3 vías mezcla 2"],
+ [ 183, "No se utiliza"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "Activación/desactivación datos"],
+ [ 193, "Dirección U/Int."],
+ [ 194, "U/Int. EEPROM (3er dígito)"],
+ [ 195, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 196, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 197, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 198, "U/Int. EEPROM (11º dígito)"],
+ [ 199, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 200, "Activación/desactivación datos"],
+ [ 201, "Dirección U/Int."],
+ [ 202, "Modo Op. Híbrido"],
+ [ 203, "Demanda de operación de la caldera"],
+ [ 204, "Demanda DWH de caldera"],
+ [ 205, "Salida de la válvula de desviación"],
+ [ 206, "Modo de operación ACS híbrido"],
+ [ 207, "BE_COP"],
+ [ 208, "Temperatura objetivo de calentamiento híbrido"],
+ [ 209, "Temperatura objetivo para calentar la caldera"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json b/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
new file mode 100644
index 00000000..973f426d
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 4-8kW Monobloc)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temperatura del líquido (R3T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Sensor de presión(T)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Capacidad de salida BUH"],
+ [ 201, "Medición del sensor CT (L1)"],
+ [ 202, "Medición del sensor CT (L2)"],
+ [ 203, "HP forzado FG"],
+ [ 204, "Medición del sensor CT (L3)"],
+ [ 205, "Activación/desactivación datos"],
+ [ 206, "Dirección U/Int."],
+ [ 207, "Modo Op. Híbrido"],
+ [ 208, "Demanda de operación de la caldera"],
+ [ 209, "Demanda DWH de caldera"],
+ [ 210, "Salida de la válvula de desviación"],
+ [ 211, "BE_COP"],
+ [ 212, "Temperatura objetivo de calentamiento híbrido"],
+ [ 213, "Temperatura objetivo para calentar la caldera"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura del agua mezclada"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json b/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
new file mode 100644
index 00000000..7a217d68
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).json
@@ -0,0 +1,232 @@
+{
+ "Model": "Altherma(EBLA-EDLA D series 9-16kW Monobloc)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "No se utiliza"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "No se utiliza"],
+ [ 199, "Capacidad de salida BUH"],
+ [ 200, "Medición del sensor CT (L1)"],
+ [ 201, "Medición del sensor CT (L2)"],
+ [ 202, "HP forzado FG"],
+ [ 203, "Medición del sensor CT (L3)"],
+ [ 204, "Activación/desactivación datos"],
+ [ 205, "Dirección U/Int."],
+ [ 206, "Modo Op. Híbrido"],
+ [ 207, "Demanda de operación de la caldera"],
+ [ 208, "Demanda DWH de caldera"],
+ [ 209, "Salida de la válvula de desviación"],
+ [ 210, "BE_COP"],
+ [ 211, "Temperatura objetivo de calentamiento híbrido"],
+ [ 212, "Temperatura objetivo para calentar la caldera"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura del agua mezclada"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"],
+ [ 219, "Activación/desactivación datos"],
+ [ 220, "Dirección U/Int."],
+ [ 221, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 222, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 223, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json b/definitions/X10A/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
new file mode 100644
index 00000000..91e25163
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).json
@@ -0,0 +1,179 @@
+{
+ "Model": "Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Termistor de 2 fases (R4T)"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temperatura de las sales de entrada (R5T)"],
+ [ 52, "Temperatura de las sales de salida (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Comentarios de la bomba de salmuera"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de 4 vías (Y1S)"],
+ [ 74, "Y2S"],
+ [ 75, "Y3S"],
+ [ 76, "Válvula solenoide 4"],
+ [ 77, "Válvula solenoide 5"],
+ [ 78, "In-Out separator"],
+ [ 79, "Activación/desactivación datos"],
+ [ 80, "Dirección U/Int."],
+ [ 81, "Modo func. U/Int"],
+ [ 82, "Termostato ON/OFF"],
+ [ 83, "Protección de congelación"],
+ [ 84, "Modo silencioso"],
+ [ 85, "Protección de congelación tuberías"],
+ [ 86, "Código de error"],
+ [ 87, "Código de error detallado"],
+ [ 88, "Tipo de avería"],
+ [ 89, "Capacidad de la unidad interior"],
+ [ 90, "Consigna ACS"],
+ [ 91, "Consigna TAI (principal)"],
+ [ 92, "Conmutador de flujo del agua"],
+ [ 93, "Protector térmico (Q1L) BUH"],
+ [ 94, "Protector térmico BSH"],
+ [ 95, "Modo tarifa reducida"],
+ [ 96, "Entrada solar"],
+ [ 97, "No se utiliza"],
+ [ 98, "No se utiliza"],
+ [ 99, "Modo bivalente"],
+ [ 100, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 101, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 102, "Resistencia BSH"],
+ [ 103, "Resistencia BUH etapa 1"],
+ [ 104, "Resistencia BUH etapa 2"],
+ [ 105, "Válvula de cierre de suelo radiante"],
+ [ 106, "Funcionamiento bomba"],
+ [ 107, "Salida bomba solar"],
+ [ 108, "Código de opción interior"],
+ [ 109, "U/Int software ID (xx)"],
+ [ 110, "U/Int software ID (yy)"],
+ [ 111, "U/Int EEPROM Ver."],
+ [ 112, "Activación/desactivación datos"],
+ [ 113, "Dirección U/Int."],
+ [ 114, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 115, "Temp. Impulsión después de BUH (R2T)"],
+ [ 116, "Temp. Refrigerante líquido (R3T)"],
+ [ 117, "Temp. Retorno (R4T)"],
+ [ 118, "Temp. Deposito ACS (R5T)"],
+ [ 119, "Temperatura ambiente interior (R1T)"],
+ [ 120, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 121, "Activación/desactivación datos"],
+ [ 122, "Dirección U/Int."],
+ [ 123, "Recalentamiento ON/OFF"],
+ [ 124, "Almacenamiento ECO ON/OFF"],
+ [ 125, "Almacenamiento Confort ON/OFF"],
+ [ 126, "Modo Powerful ACS (ON/OFF)"],
+ [ 127, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 128, "Sistema OFF (ON=Sistema apagado)"],
+ [ 129, "No se utiliza"],
+ [ 130, "Modo emergencia (interior) activado / no activado"],
+ [ 131, "Consigna TAI (adicional)"],
+ [ 132, "Consigna TH ambiente"],
+ [ 133, "TH Ext. Refrigeración(adicional)"],
+ [ 134, "TH Ext. calefacción(adicional)"],
+ [ 135, "TH Ext. Refrigeración(principal)"],
+ [ 136, "TH Ext. Calefacción(principal)"],
+ [ 137, "Límite consumo de energía 4"],
+ [ 138, "Límite consumo de energía 3"],
+ [ 139, "Límite consumo de energía 2"],
+ [ 140, "Límite consumo de energía 1"],
+ [ 141, "Ninguno"],
+ [ 142, "No se utiliza"],
+ [ 143, "No se utiliza"],
+ [ 144, "Calentador de PHE"],
+ [ 145, "Precalentamiento del depósito ON/OFF"],
+ [ 146, "Salida bomba ACS"],
+ [ 147, "Salida de alarma"],
+ [ 148, "Salida calefacción/refrigeración"],
+ [ 149, "Caudalímetro (l/min)"],
+ [ 150, "Presión de agua"],
+ [ 151, "Señal bomba (0:máx-100stop)"],
+ [ 152, "V3V mezcladora 1"],
+ [ 153, "V3V mezcladora 2"],
+ [ 154, "Sensor de presión de refrigerante"],
+ [ 155, "Activación/desactivación datos"],
+ [ 156, "Dirección U/Int."],
+ [ 157, "U/Int. EEPROM (3er dígito)"],
+ [ 158, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 159, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 160, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 161, "U/Int. EEPROM (11º dígito)"],
+ [ 162, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 163, "Capacidad de salida BUH"],
+ [ 164, "Medición del sensor CT (L1)"],
+ [ 165, "Medición del sensor CT (L2)"],
+ [ 166, "Medición del sensor CT (L3)"],
+ [ 167, "Operación de HP forzada por el instalador"],
+ [ 168, "2nd Domestic hot water temperature"],
+ [ 169, "Target delta T heating"],
+ [ 170, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EGSQH-A series 10kW GEO2).json b/definitions/X10A/Spanish/Altherma(EGSQH-A series 10kW GEO2).json
new file mode 100644
index 00000000..6fbe2d01
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EGSQH-A series 10kW GEO2).json
@@ -0,0 +1,220 @@
+{
+ "Model": "Altherma(EGSQH-A series 10kW GEO2)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Termistor de 2 fases (R4T)"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración (R3T)"],
+ [ 58, "Temperatura de las sales de entrada (R5T)"],
+ [ 59, "Temperatura de las sales de salida (R6T)"],
+ [ 60, "Temp. disipador de calor (R10T)"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "Corriente primaria del INV (A)"],
+ [ 66, "Corriente secundaria del INV (A)"],
+ [ 67, "Tensión (N-Fase) (V)"],
+ [ 68, "Conmutador del flujo de sales"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "Temperatura de entrada de sales"],
+ [ 77, "Temperatura de salida de sales"],
+ [ 78, "Refrig. temp. evap. IN"],
+ [ 79, "Refrig. temp. evap. OUT"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "No se utiliza"],
+ [ 83, "No se utiliza"],
+ [ 84, "NextDataGrid"],
+ [ 85, "Frecuencia del INV (rps)"],
+ [ 86, "Frecuencia 2 del INV (rps)"],
+ [ 87, "Compresor STD 1"],
+ [ 88, "Compresor STD 2"],
+ [ 89, "Ventilador 1 (nivel)"],
+ [ 90, "Ventilador 2 (nivel)"],
+ [ 91, "Válvula de expansión (pls)"],
+ [ 92, "Válvula de expansión2 (pls)"],
+ [ 93, "Válvula de expansión3 (pls)"],
+ [ 94, "Válvula de expansión4 (pls)"],
+ [ 95, "Válvula de expansión5 (pls)"],
+ [ 96, "Válvula de 4 vías"],
+ [ 97, "Válvula de 4 vías 2"],
+ [ 98, "Válvula de 4 vías 3"],
+ [ 99, "Válvula de 4 vías 4"],
+ [ 100, "Válvula de 4 vías 5"],
+ [ 101, "Calentador del cárter"],
+ [ 102, "Calentador del cárter 2"],
+ [ 103, "Calentador del cárter 3"],
+ [ 104, "Calentador del cárter 4"],
+ [ 105, "SV (gas caliente)"],
+ [ 106, "SV (BPH)"],
+ [ 107, "Válvula solenoide 3"],
+ [ 108, "Válvula solenoide 4"],
+ [ 109, "Válvula solenoide 5"],
+ [ 110, "In-Out separator"],
+ [ 111, "Activación/desactivación datos"],
+ [ 112, "Dirección U/Int."],
+ [ 113, "Modo func. U/Int"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Protección de congelación"],
+ [ 116, "Modo silencioso"],
+ [ 117, "Protección de congelación tuberías"],
+ [ 118, "Código de error"],
+ [ 119, "Código de la unidad interior"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "No se utiliza"],
+ [ 129, "No se utiliza"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Resistencia BPH(Bandeja U/E)"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "No se utiliza"],
+ [ 193, "No se utiliza"],
+ [ 194, "Activación/desactivación datos"],
+ [ 195, "Dirección U/Int."],
+ [ 196, "U/Int. EEPROM (3er dígito)"],
+ [ 197, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 198, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 199, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 200, "U/Int. EEPROM (11º dígito)"],
+ [ 201, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 202, "Activación/desactivación datos"],
+ [ 203, "Dirección U/Int."],
+ [ 204, "Modo Op. Híbrido"],
+ [ 205, "Demanda de operación de la caldera"],
+ [ 206, "Demanda DWH de caldera"],
+ [ 207, "Salida de la válvula de desviación"],
+ [ 208, "BE_COP"],
+ [ 209, "Temperatura objetivo de calentamiento híbrido"],
+ [ 210, "Temperatura objetivo para calentar la caldera"],
+ [ 211, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json b/definitions/X10A/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
new file mode 100644
index 00000000..35925472
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).json
@@ -0,0 +1,201 @@
+{
+ "Model": "Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Temperatura de entrada de sales"],
+ [ 61, "Temperatura de salida de sales"],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "Refrig. temp. evap. OUT"],
+ [ 64, "No se utiliza"],
+ [ 65, "No se utiliza"],
+ [ 66, "No se utiliza"],
+ [ 67, "No se utiliza"],
+ [ 68, "NextDataGrid"],
+ [ 69, "Frecuencia del INV (rps)"],
+ [ 70, "Ventilador 1 (nivel)"],
+ [ 71, "Ventilador 2 (nivel)"],
+ [ 72, "Válvula de expansión1 (pls)"],
+ [ 73, "Válvula de expansión2 (pls)"],
+ [ 74, "Válvula de 4 vías 1"],
+ [ 75, "Válvula de 4 vías 2"],
+ [ 76, "Válvula de 4 vías 3"],
+ [ 77, "Válvula de 4 vías 4"],
+ [ 78, "Válvula de 4 vías 5"],
+ [ 79, "Válvula de 4 vías 6"],
+ [ 80, "Válvula de 4 vías 7"],
+ [ 81, "Válvula de 4 vías 8"],
+ [ 82, "Calentador del cárter"],
+ [ 83, "Válvula de derivación de gas caliente (Y2S)"],
+ [ 84, "Válvula de derivación de baja presión (Y3S)"],
+ [ 85, "Temperatura del agua de entrada. (DMW)"],
+ [ 86, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 87, "In-Out separator"],
+ [ 88, "Válvula de 4 vías (Y1S)"],
+ [ 89, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 90, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 91, "Calentador de la placa inferior"],
+ [ 92, "Calentador de PHE"],
+ [ 93, "Activación/desactivación datos"],
+ [ 94, "Dirección U/Int."],
+ [ 95, "Modo func. U/Int"],
+ [ 96, "Termostato ON/OFF"],
+ [ 97, "Protección de congelación"],
+ [ 98, "Modo silencioso"],
+ [ 99, "Protección de congelación tuberías"],
+ [ 100, "Código de error"],
+ [ 101, "Código de error detallado"],
+ [ 102, "Tipo de avería"],
+ [ 103, "Código de capacidad U/Int"],
+ [ 104, "Consigna ACS"],
+ [ 105, "Consigna TAI (principal)"],
+ [ 106, "Conmutador de flujo del agua"],
+ [ 107, "Protector térmico (Q1L) BUH"],
+ [ 108, "Protector térmico BSH"],
+ [ 109, "Modo tarifa reducida"],
+ [ 110, "Entrada solar"],
+ [ 111, "No se utiliza"],
+ [ 112, "No se utiliza"],
+ [ 113, "Modo bivalente"],
+ [ 114, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 115, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 116, "Resistencia BSH"],
+ [ 117, "Resistencia BUH etapa 1"],
+ [ 118, "Resistencia BUH etapa 2"],
+ [ 119, "Válvula de cierre de suelo radiante"],
+ [ 120, "Funcionamiento bomba"],
+ [ 121, "Salida bomba solar"],
+ [ 122, "Código de opción interior"],
+ [ 123, "U/Int software ID (xx)"],
+ [ 124, "U/Int software ID (yy)"],
+ [ 125, "U/Int EEPROM Ver."],
+ [ 126, "Activación/desactivación datos"],
+ [ 127, "Dirección U/Int."],
+ [ 128, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 129, "Temp. Impulsión después de BUH (R2T)"],
+ [ 130, "Temp. Refrigerante líquido (R3T)"],
+ [ 131, "Temp. Retorno (R4T)"],
+ [ 132, "Temp. Deposito ACS (R5T)"],
+ [ 133, "Temperatura ambiente interior (R1T)"],
+ [ 134, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 135, "Activación/desactivación datos"],
+ [ 136, "Dirección U/Int."],
+ [ 137, "Recalentamiento ON/OFF"],
+ [ 138, "Almacenamiento ECO ON/OFF"],
+ [ 139, "Almacenamiento Confort ON/OFF"],
+ [ 140, "Modo Powerful ACS (ON/OFF)"],
+ [ 141, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 142, "Sistema OFF (ON=Sistema apagado)"],
+ [ 143, "No se utiliza"],
+ [ 144, "Modo emergencia (interior) activado / no activado"],
+ [ 145, "Consigna TAI (adicional)"],
+ [ 146, "Consigna TH ambiente"],
+ [ 147, "TH Ext. Refrigeración(adicional)"],
+ [ 148, "TH Ext. calefacción(adicional)"],
+ [ 149, "TH Ext. Refrigeración(principal)"],
+ [ 150, "TH Ext. Calefacción(principal)"],
+ [ 151, "Límite consumo de energía 4"],
+ [ 152, "Límite consumo de energía 3"],
+ [ 153, "Límite consumo de energía 2"],
+ [ 154, "Límite consumo de energía 1"],
+ [ 155, "Ninguno"],
+ [ 156, "No se utiliza"],
+ [ 157, "No se utiliza"],
+ [ 158, "Calentador de PHE"],
+ [ 159, "Precalentamiento del depósito ON/OFF"],
+ [ 160, "Salida bomba ACS"],
+ [ 161, "Salida de alarma"],
+ [ 162, "Salida calefacción/refrigeración"],
+ [ 163, "Caudalímetro (l/min)"],
+ [ 164, "Presión de agua"],
+ [ 165, "Señal bomba (0:máx-100stop)"],
+ [ 166, "V3V mezcladora 1"],
+ [ 167, "V3V mezcladora 2"],
+ [ 168, "Sensor de presión de refrigerante"],
+ [ 169, "Activación/desactivación datos"],
+ [ 170, "Dirección U/Int."],
+ [ 171, "U/Int. EEPROM (3er dígito)"],
+ [ 172, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 173, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 174, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 175, "U/Int. EEPROM (11º dígito)"],
+ [ 176, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 177, "HP forzado FG"],
+ [ 178, "Activación/desactivación datos"],
+ [ 179, "Dirección U/Int."],
+ [ 180, "Modo Op. Híbrido"],
+ [ 181, "Demanda de operación de la caldera"],
+ [ 182, "Demanda DWH de caldera"],
+ [ 183, "Salida de la válvula de desviación"],
+ [ 184, "BE_COP"],
+ [ 185, "Temperatura objetivo de calentamiento híbrido"],
+ [ 186, "Temperatura objetivo para calentar la caldera"],
+ [ 187, "Add pump"],
+ [ 188, "Main pump"],
+ [ 189, "Temperatura del agua mezclada"],
+ [ 190, "2nd Domestic hot water temperature"],
+ [ 191, "Target delta T heating"],
+ [ 192, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
new file mode 100644
index 00000000..2df33b52
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "[HPSU] Tv Temp impulsion (R1T)"],
+ [ 146, "[HPSU] Tvbh Temp impulsion tras el Barril/BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "No se utiliza"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "Not translated yet"],
+ [ 199, "Capacidad de salida BUH"],
+ [ 200, "Medición del sensor CT (L1)"],
+ [ 201, "Medición del sensor CT (L2)"],
+ [ 202, "HP forzado FG"],
+ [ 203, "Medición del sensor CT (L3)"],
+ [ 204, "Activación/desactivación datos"],
+ [ 205, "Dirección U/Int."],
+ [ 206, "Modo Op. Híbrido"],
+ [ 207, "Demanda de operación de la caldera"],
+ [ 208, "Demanda DWH de caldera"],
+ [ 209, "Salida de la válvula de desviación"],
+ [ 210, "BE_COP"],
+ [ 211, "Temperatura objetivo de calentamiento híbrido"],
+ [ 212, "Temperatura objetivo para calentar la caldera"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura del agua mezclada"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json b/definitions/X10A/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
new file mode 100644
index 00000000..383c9fc9
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).json
@@ -0,0 +1,227 @@
+{
+ "Model": "Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "No se utiliza"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "No se utiliza"],
+ [ 199, "Capacidad de salida BUH"],
+ [ 200, "Medición del sensor CT (L1)"],
+ [ 201, "Medición del sensor CT (L2)"],
+ [ 202, "HP forzado FG"],
+ [ 203, "Medición del sensor CT (L3)"],
+ [ 204, "Activación/desactivación datos"],
+ [ 205, "Dirección U/Int."],
+ [ 206, "Modo Op. Híbrido"],
+ [ 207, "Demanda de operación de la caldera"],
+ [ 208, "Demanda DWH de caldera"],
+ [ 209, "Salida de la válvula de desviación"],
+ [ 210, "BE_COP"],
+ [ 211, "Temperatura objetivo de calentamiento híbrido"],
+ [ 212, "Temperatura objetivo para calentar la caldera"],
+ [ 213, "Add pump"],
+ [ 214, "Main pump"],
+ [ 215, "Temperatura del agua mezclada"],
+ [ 216, "2nd Domestic hot water temperature"],
+ [ 217, "Target delta T heating"],
+ [ 218, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
new file mode 100644
index 00000000..212b1c9f
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Calentador de PHE"],
+ [ 177, "Precalentamiento del depósito ON/OFF"],
+ [ 178, "Salida bomba ACS"],
+ [ 179, "Salida de alarma"],
+ [ 180, "Salida calefacción/refrigeración"],
+ [ 181, "Caudalímetro (l/min)"],
+ [ 182, "Presión de agua"],
+ [ 183, "Señal bomba (0:máx-100stop)"],
+ [ 184, "V3V mezcladora 1"],
+ [ 185, "V3V mezcladora 2"],
+ [ 186, "Sensor de presión de refrigerante"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Capacidad de salida BUH"],
+ [ 205, "Medición del sensor CT (L1)"],
+ [ 206, "Medición del sensor CT (L2)"],
+ [ 207, "HP forzado FG"],
+ [ 208, "Medición del sensor CT (L3)"],
+ [ 209, "Activación/desactivación datos"],
+ [ 210, "Dirección U/Int."],
+ [ 211, "Modo Op. Híbrido"],
+ [ 212, "Demanda de operación de la caldera"],
+ [ 213, "Demanda DWH de caldera"],
+ [ 214, "Salida de la válvula de desviación"],
+ [ 215, "BE_COP"],
+ [ 216, "Temperatura objetivo de calentamiento híbrido"],
+ [ 217, "Temperatura objetivo para calentar la caldera"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura del agua mezclada"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activación/desactivación datos"],
+ [ 225, "Dirección U/Int."],
+ [ 226, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 228, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json b/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
new file mode 100644
index 00000000..9da369ff
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Calentador de PHE"],
+ [ 177, "Precalentamiento del depósito ON/OFF"],
+ [ 178, "Salida bomba ACS"],
+ [ 179, "Salida de alarma"],
+ [ 180, "Salida calefacción/refrigeración"],
+ [ 181, "Caudalímetro (l/min)"],
+ [ 182, "Presión de agua"],
+ [ 183, "Señal bomba (0:máx-100stop)"],
+ [ 184, "V3V mezcladora 1"],
+ [ 185, "V3V mezcladora 2"],
+ [ 186, "Sensor de presión de refrigerante"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Capacidad de salida BUH"],
+ [ 205, "Medición del sensor CT (L1)"],
+ [ 206, "Medición del sensor CT (L2)"],
+ [ 207, "HP forzado FG"],
+ [ 208, "Medición del sensor CT (L3)"],
+ [ 209, "Activación/desactivación datos"],
+ [ 210, "Dirección U/Int."],
+ [ 211, "Modo Op. Híbrido"],
+ [ 212, "Demanda de operación de la caldera"],
+ [ 213, "Demanda DWH de caldera"],
+ [ 214, "Salida de la válvula de desviación"],
+ [ 215, "BE_COP"],
+ [ 216, "Temperatura objetivo de calentamiento híbrido"],
+ [ 217, "Temperatura objetivo para calentar la caldera"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura del agua mezclada"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activación/desactivación datos"],
+ [ 225, "Dirección U/Int."],
+ [ 226, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 228, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
new file mode 100644
index 00000000..9d06d90c
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Frecuencia del INV (rps)"],
+ [ 66, "Ventilador 1 (nivel)"],
+ [ 67, "Ventilador 2 (nivel)"],
+ [ 68, "Válvula de expansión1 (pls)"],
+ [ 69, "Válvula de expansión2 (pls)"],
+ [ 70, "Válvula de expansión3 (pls)"],
+ [ 71, "Válvula de expansión4 (pls)"],
+ [ 72, "Válvula de 4 vías"],
+ [ 73, "Calentador del cárter"],
+ [ 74, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 75, "Válvula de derivación de baja presión (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Temp. Tubo de aspiración"],
+ [ 79, "Temperatura del intercambiador de calor exterior"],
+ [ 80, "Temp. tubo de líquido"],
+ [ 81, "Presión"],
+ [ 82, "Válvula de expansión3 (pls)"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "U/ext. MPU ID"],
+ [ 85, "HPS activado"],
+ [ 86, "Operación de salvaguardia"],
+ [ 87, "Calentador del cárter"],
+ [ 88, "Válvula solenoide 3"],
+ [ 89, "Válvula solenoide 2"],
+ [ 90, "Válvula solenoide 1"],
+ [ 91, "Válvula de 4 vías (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Caída de la temperatura de descarga"],
+ [ 94, "Durante la operación de emergencia"],
+ [ 95, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 96, "Bit potente (bit de ajuste MT)"],
+ [ 97, "Temperatura del puerto del compresor"],
+ [ 98, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 99, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 100, "Electroválvula de líquido INJ (Y4S)"],
+ [ 101, "Calentador de la placa inferior"],
+ [ 102, "Calentador de PHE"],
+ [ 103, "Temperatura de descarga objetivo"],
+ [ 104, "Temperatura objetivo del puerto"],
+ [ 105, "Ajuste Monobloc"],
+ [ 106, "Ajuste Minichiller"],
+ [ 107, "Ajuste MT"],
+ [ 108, "Ajuste GSHP"],
+ [ 109, "Ajuste Hydro split"],
+ [ 110, "Ajuste Altherma LT"],
+ [ 111, "Activación/desactivación datos"],
+ [ 112, "Dirección U/Int."],
+ [ 113, "Modo func. U/Int"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Protección de congelación"],
+ [ 116, "Modo silencioso"],
+ [ 117, "Protección de congelación tuberías"],
+ [ 118, "Código de error"],
+ [ 119, "Código de error detallado"],
+ [ 120, "Tipo de avería"],
+ [ 121, "Código de capacidad U/Int"],
+ [ 122, "Consigna ACS"],
+ [ 123, "Consigna TAI (principal)"],
+ [ 124, "Conmutador de flujo del agua"],
+ [ 125, "Protector térmico (Q1L) BUH"],
+ [ 126, "Protector térmico BSH"],
+ [ 127, "Modo tarifa reducida"],
+ [ 128, "Entrada solar"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Modo bivalente"],
+ [ 132, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 133, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 134, "Resistencia BSH"],
+ [ 135, "Resistencia BUH etapa 1"],
+ [ 136, "Resistencia BUH etapa 2"],
+ [ 137, "Válvula de cierre de suelo radiante"],
+ [ 138, "Funcionamiento bomba"],
+ [ 139, "Salida bomba solar"],
+ [ 140, "Código de opción interior"],
+ [ 141, "U/Int software ID (xx)"],
+ [ 142, "U/Int software ID (yy)"],
+ [ 143, "U/Int EEPROM Ver."],
+ [ 144, "Activación/desactivación datos"],
+ [ 145, "Dirección U/Int."],
+ [ 146, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 147, "Temp. Impulsión después de BUH (R2T)"],
+ [ 148, "Temp. Refrigerante líquido (R3T)"],
+ [ 149, "Temp. Retorno (R4T)"],
+ [ 150, "Temp. Deposito ACS (R5T)"],
+ [ 151, "Temperatura ambiente interior (R1T)"],
+ [ 152, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 153, "Activación/desactivación datos"],
+ [ 154, "Dirección U/Int."],
+ [ 155, "Recalentamiento ON/OFF"],
+ [ 156, "Almacenamiento ECO ON/OFF"],
+ [ 157, "Almacenamiento Confort ON/OFF"],
+ [ 158, "Modo Powerful ACS (ON/OFF)"],
+ [ 159, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 160, "Sistema OFF (ON=Sistema apagado)"],
+ [ 161, "No se utiliza"],
+ [ 162, "Modo emergencia (interior) activado / no activado"],
+ [ 163, "Consigna TAI (adicional)"],
+ [ 164, "Consigna TH ambiente"],
+ [ 165, "TH Ext. Refrigeración(adicional)"],
+ [ 166, "TH Ext. calefacción(adicional)"],
+ [ 167, "TH Ext. Refrigeración(principal)"],
+ [ 168, "TH Ext. Calefacción(principal)"],
+ [ 169, "Límite consumo de energía 4"],
+ [ 170, "Límite consumo de energía 3"],
+ [ 171, "Límite consumo de energía 2"],
+ [ 172, "Límite consumo de energía 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Calentador de PHE"],
+ [ 178, "Precalentamiento del depósito ON/OFF"],
+ [ 179, "Salida bomba ACS"],
+ [ 180, "Salida de alarma"],
+ [ 181, "Salida calefacción/refrigeración"],
+ [ 182, "Caudalímetro (l/min)"],
+ [ 183, "Presión de agua"],
+ [ 184, "Señal bomba (0:máx-100stop)"],
+ [ 185, "V3V mezcladora 1"],
+ [ 186, "V3V mezcladora 2"],
+ [ 187, "Sensor de presión de refrigerante"],
+ [ 188, "Activación/desactivación datos"],
+ [ 189, "Dirección U/Int."],
+ [ 190, "U/Int. EEPROM (3er dígito)"],
+ [ 191, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 192, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 193, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 194, "U/Int. EEPROM (11º dígito)"],
+ [ 195, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "Capacidad de salida BUH"],
+ [ 206, "Medición del sensor CT (L1)"],
+ [ 207, "Medición del sensor CT (L2)"],
+ [ 208, "HP forzado FG"],
+ [ 209, "Medición del sensor CT (L3)"],
+ [ 210, "Activación/desactivación datos"],
+ [ 211, "Dirección U/Int."],
+ [ 212, "Modo Op. Híbrido"],
+ [ 213, "Demanda de operación de la caldera"],
+ [ 214, "Demanda DWH de caldera"],
+ [ 215, "Salida de la válvula de desviación"],
+ [ 216, "BE_COP"],
+ [ 217, "Temperatura objetivo de calentamiento híbrido"],
+ [ 218, "Temperatura objetivo para calentar la caldera"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Temperatura del agua mezclada"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Activación/desactivación datos"],
+ [ 226, "Dirección U/Int."],
+ [ 227, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 229, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json b/definitions/X10A/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
new file mode 100644
index 00000000..1a84693b
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).json
@@ -0,0 +1,238 @@
+{
+ "Model": "Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "Not translated yet"],
+ [ 64, "NextDataGrid"],
+ [ 65, "Frecuencia del INV (rps)"],
+ [ 66, "Ventilador 1 (nivel)"],
+ [ 67, "Ventilador 2 (nivel)"],
+ [ 68, "Válvula de expansión1 (pls)"],
+ [ 69, "Válvula de expansión2 (pls)"],
+ [ 70, "Válvula de expansión3 (pls)"],
+ [ 71, "Válvula de expansión4 (pls)"],
+ [ 72, "Válvula de 4 vías"],
+ [ 73, "Calentador del cárter"],
+ [ 74, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 75, "Válvula de derivación de baja presión (Y2S)"],
+ [ 76, "Y3S"],
+ [ 77, "In-Out separator"],
+ [ 78, "Temp. Tubo de aspiración"],
+ [ 79, "Temperatura del intercambiador de calor exterior"],
+ [ 80, "Temp. tubo de líquido"],
+ [ 81, "Presión"],
+ [ 82, "Válvula de expansión3 (pls)"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "U/ext. MPU ID"],
+ [ 85, "HPS activado"],
+ [ 86, "Operación de salvaguardia"],
+ [ 87, "Calentador del cárter"],
+ [ 88, "Válvula solenoide 3"],
+ [ 89, "Válvula solenoide 2"],
+ [ 90, "Válvula solenoide 1"],
+ [ 91, "Válvula de 4 vías (Y1S)"],
+ [ 92, "52C Output"],
+ [ 93, "Caída de la temperatura de descarga"],
+ [ 94, "Durante la operación de emergencia"],
+ [ 95, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 96, "Bit potente (bit de ajuste MT)"],
+ [ 97, "Temperatura del puerto del compresor"],
+ [ 98, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 99, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 100, "Electroválvula de líquido INJ (Y4S)"],
+ [ 101, "Calentador de la placa inferior"],
+ [ 102, "Calentador de PHE"],
+ [ 103, "Temperatura de descarga objetivo"],
+ [ 104, "Temperatura objetivo del puerto"],
+ [ 105, "Ajuste Monobloc"],
+ [ 106, "Ajuste Minichiller"],
+ [ 107, "Ajuste MT"],
+ [ 108, "Ajuste GSHP"],
+ [ 109, "Ajuste Hydro split"],
+ [ 110, "Ajuste Altherma LT"],
+ [ 111, "Activación/desactivación datos"],
+ [ 112, "Dirección U/Int."],
+ [ 113, "Modo func. U/Int"],
+ [ 114, "Termostato ON/OFF"],
+ [ 115, "Protección de congelación"],
+ [ 116, "Modo silencioso"],
+ [ 117, "Protección de congelación tuberías"],
+ [ 118, "Código de error"],
+ [ 119, "Código de error detallado"],
+ [ 120, "Tipo de avería"],
+ [ 121, "Código de capacidad U/Int"],
+ [ 122, "Consigna ACS"],
+ [ 123, "Consigna TAI (principal)"],
+ [ 124, "Conmutador de flujo del agua"],
+ [ 125, "Protector térmico (Q1L) BUH"],
+ [ 126, "Protector térmico BSH"],
+ [ 127, "Modo tarifa reducida"],
+ [ 128, "Entrada solar"],
+ [ 129, "Not translated yet"],
+ [ 130, "Not translated yet"],
+ [ 131, "Modo bivalente"],
+ [ 132, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 133, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 134, "Resistencia BSH"],
+ [ 135, "Resistencia BUH etapa 1"],
+ [ 136, "Resistencia BUH etapa 2"],
+ [ 137, "Válvula de cierre de suelo radiante"],
+ [ 138, "Funcionamiento bomba"],
+ [ 139, "Salida bomba solar"],
+ [ 140, "Código de opción interior"],
+ [ 141, "U/Int software ID (xx)"],
+ [ 142, "U/Int software ID (yy)"],
+ [ 143, "U/Int EEPROM Ver."],
+ [ 144, "Activación/desactivación datos"],
+ [ 145, "Dirección U/Int."],
+ [ 146, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 147, "Temp. Impulsión después de BUH (R2T)"],
+ [ 148, "Temp. Refrigerante líquido (R3T)"],
+ [ 149, "Temp. Retorno (R4T)"],
+ [ 150, "Temp. Deposito ACS (R5T)"],
+ [ 151, "Temperatura ambiente interior (R1T)"],
+ [ 152, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 153, "Activación/desactivación datos"],
+ [ 154, "Dirección U/Int."],
+ [ 155, "Recalentamiento ON/OFF"],
+ [ 156, "Almacenamiento ECO ON/OFF"],
+ [ 157, "Almacenamiento Confort ON/OFF"],
+ [ 158, "Modo Powerful ACS (ON/OFF)"],
+ [ 159, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 160, "Sistema OFF (ON=Sistema apagado)"],
+ [ 161, "No se utiliza"],
+ [ 162, "Modo emergencia (interior) activado / no activado"],
+ [ 163, "Consigna TAI (adicional)"],
+ [ 164, "Consigna TH ambiente"],
+ [ 165, "TH Ext. Refrigeración(adicional)"],
+ [ 166, "TH Ext. calefacción(adicional)"],
+ [ 167, "TH Ext. Refrigeración(principal)"],
+ [ 168, "TH Ext. Calefacción(principal)"],
+ [ 169, "Límite consumo de energía 4"],
+ [ 170, "Límite consumo de energía 3"],
+ [ 171, "Límite consumo de energía 2"],
+ [ 172, "Límite consumo de energía 1"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Not translated yet"],
+ [ 177, "Calentador de PHE"],
+ [ 178, "Precalentamiento del depósito ON/OFF"],
+ [ 179, "Salida bomba ACS"],
+ [ 180, "Salida de alarma"],
+ [ 181, "Salida calefacción/refrigeración"],
+ [ 182, "Caudalímetro (l/min)"],
+ [ 183, "Presión de agua"],
+ [ 184, "Señal bomba (0:máx-100stop)"],
+ [ 185, "V3V mezcladora 1"],
+ [ 186, "V3V mezcladora 2"],
+ [ 187, "Sensor de presión de refrigerante"],
+ [ 188, "Activación/desactivación datos"],
+ [ 189, "Dirección U/Int."],
+ [ 190, "U/Int. EEPROM (3er dígito)"],
+ [ 191, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 192, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 193, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 194, "U/Int. EEPROM (11º dígito)"],
+ [ 195, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "Capacidad de salida BUH"],
+ [ 206, "Medición del sensor CT (L1)"],
+ [ 207, "Medición del sensor CT (L2)"],
+ [ 208, "HP forzado FG"],
+ [ 209, "Medición del sensor CT (L3)"],
+ [ 210, "Activación/desactivación datos"],
+ [ 211, "Dirección U/Int."],
+ [ 212, "Modo Op. Híbrido"],
+ [ 213, "Demanda de operación de la caldera"],
+ [ 214, "Demanda DWH de caldera"],
+ [ 215, "Salida de la válvula de desviación"],
+ [ 216, "BE_COP"],
+ [ 217, "Temperatura objetivo de calentamiento híbrido"],
+ [ 218, "Temperatura objetivo para calentar la caldera"],
+ [ 219, "Add pump"],
+ [ 220, "Main pump"],
+ [ 221, "Temperatura del agua mezclada"],
+ [ 222, "2nd Domestic hot water temperature"],
+ [ 223, "Target delta T heating"],
+ [ 224, "Target delta T cooling"],
+ [ 225, "Activación/desactivación datos"],
+ [ 226, "Dirección U/Int."],
+ [ 227, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 228, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 229, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..3f5b244e
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Sensor de presión"],
+ [ 62, "Sensor de presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (10 rpm)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de error detallado"],
+ [ 118, "Tipo de avería"],
+ [ 119, "Código de capacidad U/Int"],
+ [ 120, "Consigna ACS"],
+ [ 121, "Consigna TAI (principal)"],
+ [ 122, "Conmutador de flujo del agua"],
+ [ 123, "Protector térmico (Q1L) BUH"],
+ [ 124, "Protector térmico BSH"],
+ [ 125, "Modo tarifa reducida"],
+ [ 126, "Entrada solar"],
+ [ 127, "No se utiliza"],
+ [ 128, "No se utiliza"],
+ [ 129, "Modo bivalente"],
+ [ 130, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 131, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 132, "Resistencia BSH"],
+ [ 133, "Resistencia BUH etapa 1"],
+ [ 134, "Resistencia BUH etapa 2"],
+ [ 135, "Resistencia BPH(Bandeja U/E)"],
+ [ 136, "Funcionamiento bomba"],
+ [ 137, "Salida bomba solar"],
+ [ 138, "Código de opción interior"],
+ [ 139, "U/Int software ID (xx)"],
+ [ 140, "U/Int software ID (yy)"],
+ [ 141, "U/Int EEPROM Ver."],
+ [ 142, "Activación/desactivación datos"],
+ [ 143, "Dirección U/Int."],
+ [ 144, "[HPSU] Tv Temp impulsion (R1T)"],
+ [ 145, "[HPSU] Tvbh Temp impulsion tras el Barril/BUH (R2T)"],
+ [ 146, "Temp. Refrigerante líquido (R3T)"],
+ [ 147, "[HPSU] Tr Temp retornar (R4T)"],
+ [ 148, "Temp. Deposito ACS (R5T)"],
+ [ 149, "Temperatura ambiente interior (R1T)"],
+ [ 150, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 151, "Activación/desactivación datos"],
+ [ 152, "Dirección U/Int."],
+ [ 153, "Recalentamiento ON/OFF"],
+ [ 154, "Almacenamiento ECO ON/OFF"],
+ [ 155, "Almacenamiento Confort ON/OFF"],
+ [ 156, "Modo Powerful ACS (ON/OFF)"],
+ [ 157, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 158, "Sistema OFF (ON=Sistema apagado)"],
+ [ 159, "No se utiliza"],
+ [ 160, "Modo emergencia (interior) activado / no activado"],
+ [ 161, "Consigna TAI (adicional)"],
+ [ 162, "Consigna TH ambiente"],
+ [ 163, "TH Ext. Refrigeración(adicional)"],
+ [ 164, "TH Ext. calefacción(adicional)"],
+ [ 165, "TH Ext. Refrigeración(principal)"],
+ [ 166, "TH Ext. Calefacción(principal)"],
+ [ 167, "Límite consumo de energía 4"],
+ [ 168, "Límite consumo de energía 3"],
+ [ 169, "Límite consumo de energía 2"],
+ [ 170, "Límite consumo de energía 1"],
+ [ 171, "Ninguno"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Precalentamiento del depósito ON/OFF"],
+ [ 176, "Salida bomba ACS"],
+ [ 177, "Salida de alarma"],
+ [ 178, "Salida calefacción/refrigeración"],
+ [ 179, "Caudalímetro (l/min)"],
+ [ 180, "Presión de agua"],
+ [ 181, "Señal bomba (0:máx-100stop)"],
+ [ 182, "V3V mezcladora 1"],
+ [ 183, "V3V mezcladora 2"],
+ [ 184, "Sensor de presión de refrigerante"],
+ [ 185, "Sensor de presión(T)"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "Activación/desactivación datos"],
+ [ 195, "Dirección U/Int."],
+ [ 196, "Modo Op. Híbrido"],
+ [ 197, "Demanda de operación de la caldera"],
+ [ 198, "Demanda DWH de caldera"],
+ [ 199, "Salida de la válvula de desviación"],
+ [ 200, "BE_COP"],
+ [ 201, "Temperatura objetivo de calentamiento híbrido"],
+ [ 202, "Temperatura objetivo para calentar la caldera"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura del agua mezclada"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json b/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
new file mode 100644
index 00000000..5b91ce66
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Sensor de presión"],
+ [ 62, "Sensor de presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (10 rpm)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de error detallado"],
+ [ 118, "Tipo de avería"],
+ [ 119, "Código de capacidad U/Int"],
+ [ 120, "Consigna ACS"],
+ [ 121, "Consigna TAI (principal)"],
+ [ 122, "Conmutador de flujo del agua"],
+ [ 123, "Protector térmico (Q1L) BUH"],
+ [ 124, "Protector térmico BSH"],
+ [ 125, "Modo tarifa reducida"],
+ [ 126, "Entrada solar"],
+ [ 127, "No se utiliza"],
+ [ 128, "No se utiliza"],
+ [ 129, "Modo bivalente"],
+ [ 130, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 131, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 132, "Resistencia BSH"],
+ [ 133, "Resistencia BUH etapa 1"],
+ [ 134, "Resistencia BUH etapa 2"],
+ [ 135, "Resistencia BPH(Bandeja U/E)"],
+ [ 136, "Funcionamiento bomba"],
+ [ 137, "Salida bomba solar"],
+ [ 138, "Código de opción interior"],
+ [ 139, "U/Int software ID (xx)"],
+ [ 140, "U/Int software ID (yy)"],
+ [ 141, "U/Int EEPROM Ver."],
+ [ 142, "Activación/desactivación datos"],
+ [ 143, "Dirección U/Int."],
+ [ 144, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 145, "Temp. Impulsión después de BUH (R2T)"],
+ [ 146, "Temp. Refrigerante líquido (R3T)"],
+ [ 147, "Temp. Retorno (R4T)"],
+ [ 148, "Temp. Deposito ACS (R5T)"],
+ [ 149, "Temperatura ambiente interior (R1T)"],
+ [ 150, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 151, "Activación/desactivación datos"],
+ [ 152, "Dirección U/Int."],
+ [ 153, "Recalentamiento ON/OFF"],
+ [ 154, "Almacenamiento ECO ON/OFF"],
+ [ 155, "Almacenamiento Confort ON/OFF"],
+ [ 156, "Modo Powerful ACS (ON/OFF)"],
+ [ 157, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 158, "Sistema OFF (ON=Sistema apagado)"],
+ [ 159, "No se utiliza"],
+ [ 160, "Modo emergencia (interior) activado / no activado"],
+ [ 161, "Consigna TAI (adicional)"],
+ [ 162, "Consigna TH ambiente"],
+ [ 163, "TH Ext. Refrigeración(adicional)"],
+ [ 164, "TH Ext. calefacción(adicional)"],
+ [ 165, "TH Ext. Refrigeración(principal)"],
+ [ 166, "TH Ext. Calefacción(principal)"],
+ [ 167, "Límite consumo de energía 4"],
+ [ 168, "Límite consumo de energía 3"],
+ [ 169, "Límite consumo de energía 2"],
+ [ 170, "Límite consumo de energía 1"],
+ [ 171, "Ninguno"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Precalentamiento del depósito ON/OFF"],
+ [ 176, "Salida bomba ACS"],
+ [ 177, "Salida de alarma"],
+ [ 178, "Salida calefacción/refrigeración"],
+ [ 179, "Caudalímetro (l/min)"],
+ [ 180, "Presión de agua"],
+ [ 181, "Señal bomba (0:máx-100stop)"],
+ [ 182, "V3V mezcladora 1"],
+ [ 183, "V3V mezcladora 2"],
+ [ 184, "Sensor de presión de refrigerante"],
+ [ 185, "Sensor de presión(T)"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "Activación/desactivación datos"],
+ [ 195, "Dirección U/Int."],
+ [ 196, "Modo Op. Híbrido"],
+ [ 197, "Demanda de operación de la caldera"],
+ [ 198, "Demanda DWH de caldera"],
+ [ 199, "Salida de la válvula de desviación"],
+ [ 200, "BE_COP"],
+ [ 201, "Temperatura objetivo de calentamiento híbrido"],
+ [ 202, "Temperatura objetivo para calentar la caldera"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura del agua mezclada"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json b/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
new file mode 100644
index 00000000..27adcc29
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temperatura del líquido (R3T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (10 rpm)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías 1"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Sensor de presión(T)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Capacidad de salida BUH"],
+ [ 201, "Medición del sensor CT (L1)"],
+ [ 202, "Medición del sensor CT (L2)"],
+ [ 203, "HP forzado FG"],
+ [ 204, "Medición del sensor CT (L3)"],
+ [ 205, "Activación/desactivación datos"],
+ [ 206, "Dirección U/Int."],
+ [ 207, "Modo Op. Híbrido"],
+ [ 208, "Demanda de operación de la caldera"],
+ [ 209, "Demanda DWH de caldera"],
+ [ 210, "Salida de la válvula de desviación"],
+ [ 211, "BE_COP"],
+ [ 212, "Temperatura objetivo de calentamiento híbrido"],
+ [ 213, "Temperatura objetivo para calentar la caldera"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura del agua mezclada"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
new file mode 100644
index 00000000..a3231e00
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temperatura del líquido (R3T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Calentador de PHE"],
+ [ 177, "Precalentamiento del depósito ON/OFF"],
+ [ 178, "Salida bomba ACS"],
+ [ 179, "Salida de alarma"],
+ [ 180, "Salida calefacción/refrigeración"],
+ [ 181, "Caudalímetro (l/min)"],
+ [ 182, "Presión de agua"],
+ [ 183, "Señal bomba (0:máx-100stop)"],
+ [ 184, "V3V mezcladora 1"],
+ [ 185, "V3V mezcladora 2"],
+ [ 186, "Sensor de presión de refrigerante"],
+ [ 187, "Sensor de presión(T)"],
+ [ 188, "Activación/desactivación datos"],
+ [ 189, "Dirección U/Int."],
+ [ 190, "U/Int. EEPROM (3er dígito)"],
+ [ 191, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 192, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 193, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 194, "U/Int. EEPROM (11º dígito)"],
+ [ 195, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Not translated yet"],
+ [ 205, "Medición del sensor CT (L1)"],
+ [ 206, "Medición del sensor CT (L2)"],
+ [ 207, "HP forzado FG"],
+ [ 208, "Medición del sensor CT (L3)"],
+ [ 209, "Activación/desactivación datos"],
+ [ 210, "Dirección U/Int."],
+ [ 211, "Modo Op. Híbrido"],
+ [ 212, "Demanda de operación de la caldera"],
+ [ 213, "Demanda DWH de caldera"],
+ [ 214, "Salida de la válvula de desviación"],
+ [ 215, "BE_COP"],
+ [ 216, "Temperatura objetivo de calentamiento híbrido"],
+ [ 217, "Temperatura objetivo para calentar la caldera"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura del agua mezclada"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activación/desactivación datos"],
+ [ 225, "Dirección U/Int."],
+ [ 226, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 228, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json b/definitions/X10A/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
new file mode 100644
index 00000000..7c2011eb
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temperatura del líquido (R3T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Sensor de presión(T)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Capacidad de salida BUH"],
+ [ 201, "Medición del sensor CT (L1)"],
+ [ 202, "Medición del sensor CT (L2)"],
+ [ 203, "HP forzado FG"],
+ [ 204, "Medición del sensor CT (L3)"],
+ [ 205, "Activación/desactivación datos"],
+ [ 206, "Dirección U/Int."],
+ [ 207, "Modo Op. Híbrido"],
+ [ 208, "Demanda de operación de la caldera"],
+ [ 209, "Demanda DWH de caldera"],
+ [ 210, "Salida de la válvula de desviación"],
+ [ 211, "BE_COP"],
+ [ 212, "Temperatura objetivo de calentamiento híbrido"],
+ [ 213, "Temperatura objetivo para calentar la caldera"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura del agua mezclada"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json b/definitions/X10A/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
new file mode 100644
index 00000000..2182cab8
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).json
@@ -0,0 +1,236 @@
+{
+ "Model": "Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "Not translated yet"],
+ [ 195, "Not translated yet"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Capacidad de salida BUH"],
+ [ 204, "Medición del sensor CT (L1)"],
+ [ 205, "Medición del sensor CT (L2)"],
+ [ 206, "HP forzado FG"],
+ [ 207, "Medición del sensor CT (L3)"],
+ [ 208, "Activación/desactivación datos"],
+ [ 209, "Dirección U/Int."],
+ [ 210, "Modo Op. Híbrido"],
+ [ 211, "Demanda de operación de la caldera"],
+ [ 212, "Demanda DWH de caldera"],
+ [ 213, "Salida de la válvula de desviación"],
+ [ 214, "BE_COP"],
+ [ 215, "Temperatura objetivo de calentamiento híbrido"],
+ [ 216, "Temperatura objetivo para calentar la caldera"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Temperatura del agua mezclada"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"],
+ [ 223, "Activación/desactivación datos"],
+ [ 224, "Dirección U/Int."],
+ [ 225, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 226, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 227, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json b/definitions/X10A/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
new file mode 100644
index 00000000..18a896d9
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).json
@@ -0,0 +1,237 @@
+{
+ "Model": "Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext(R4T)"],
+ [ 49, "Temp. del tubo de descarga(R2T)"],
+ [ 50, "Temp. Tubo de aspiración (R3T)"],
+ [ 51, "Temp. Media Intercambiador U/Ext(R5T)"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Válvula de derivación de gas caliente (Y3S)"],
+ [ 74, "Válvula de derivación de baja presión (Y2S)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "Válvula solenoide 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Not translated yet"],
+ [ 173, "Not translated yet"],
+ [ 174, "Not translated yet"],
+ [ 175, "Not translated yet"],
+ [ 176, "Calentador de PHE"],
+ [ 177, "Precalentamiento del depósito ON/OFF"],
+ [ 178, "Salida bomba ACS"],
+ [ 179, "Salida de alarma"],
+ [ 180, "Salida calefacción/refrigeración"],
+ [ 181, "Caudalímetro (l/min)"],
+ [ 182, "Presión de agua"],
+ [ 183, "Señal bomba (0:máx-100stop)"],
+ [ 184, "V3V mezcladora 1"],
+ [ 185, "V3V mezcladora 2"],
+ [ 186, "Sensor de presión de refrigerante"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "Mixed water temp.(R7T)"],
+ [ 196, "Not translated yet"],
+ [ 197, "Not translated yet"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Not translated yet"],
+ [ 201, "Not translated yet"],
+ [ 202, "Not translated yet"],
+ [ 203, "Not translated yet"],
+ [ 204, "Capacidad de salida BUH"],
+ [ 205, "Medición del sensor CT (L1)"],
+ [ 206, "Medición del sensor CT (L2)"],
+ [ 207, "HP forzado FG"],
+ [ 208, "Medición del sensor CT (L3)"],
+ [ 209, "Activación/desactivación datos"],
+ [ 210, "Dirección U/Int."],
+ [ 211, "Modo Op. Híbrido"],
+ [ 212, "Demanda de operación de la caldera"],
+ [ 213, "Demanda DWH de caldera"],
+ [ 214, "Salida de la válvula de desviación"],
+ [ 215, "BE_COP"],
+ [ 216, "Temperatura objetivo de calentamiento híbrido"],
+ [ 217, "Temperatura objetivo para calentar la caldera"],
+ [ 218, "Add pump"],
+ [ 219, "Main pump"],
+ [ 220, "Temperatura del agua mezclada"],
+ [ 221, "2nd Domestic hot water temperature"],
+ [ 222, "Target delta T heating"],
+ [ 223, "Target delta T cooling"],
+ [ 224, "Activación/desactivación datos"],
+ [ 225, "Dirección U/Int."],
+ [ 226, "Salida de agua hex. Temp. (modelo hidro split) DLWB2"],
+ [ 227, "[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"],
+ [ 228, "[EKMIK] Bizone kit posición de la válvula de mezcla M1S"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json b/definitions/X10A/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
new file mode 100644
index 00000000..34b6d19b
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).json
@@ -0,0 +1,218 @@
+{
+ "Model": "Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Sensor de presión"],
+ [ 62, "Sensor de presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (10 rpm)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de error detallado"],
+ [ 118, "Tipo de avería"],
+ [ 119, "Código de capacidad U/Int"],
+ [ 120, "Consigna ACS"],
+ [ 121, "Consigna TAI (principal)"],
+ [ 122, "Conmutador de flujo del agua"],
+ [ 123, "Protector térmico (Q1L) BUH"],
+ [ 124, "Protector térmico BSH"],
+ [ 125, "Modo tarifa reducida"],
+ [ 126, "Entrada solar"],
+ [ 127, "No se utiliza"],
+ [ 128, "No se utiliza"],
+ [ 129, "Modo bivalente"],
+ [ 130, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 131, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 132, "Resistencia BSH"],
+ [ 133, "Resistencia BUH etapa 1"],
+ [ 134, "Resistencia BUH etapa 2"],
+ [ 135, "Resistencia BPH(Bandeja U/E)"],
+ [ 136, "Funcionamiento bomba"],
+ [ 137, "Salida bomba solar"],
+ [ 138, "Código de opción interior"],
+ [ 139, "U/Int software ID (xx)"],
+ [ 140, "U/Int software ID (yy)"],
+ [ 141, "U/Int EEPROM Ver."],
+ [ 142, "Activación/desactivación datos"],
+ [ 143, "Dirección U/Int."],
+ [ 144, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 145, "Temp. Impulsión después de BUH (R2T)"],
+ [ 146, "Temp. Refrigerante líquido (R3T)"],
+ [ 147, "Temp. Retorno (R4T)"],
+ [ 148, "Temp. Deposito ACS (R5T)"],
+ [ 149, "Temperatura ambiente interior (R1T)"],
+ [ 150, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 151, "Activación/desactivación datos"],
+ [ 152, "Dirección U/Int."],
+ [ 153, "Recalentamiento ON/OFF"],
+ [ 154, "Almacenamiento ECO ON/OFF"],
+ [ 155, "Almacenamiento Confort ON/OFF"],
+ [ 156, "Modo Powerful ACS (ON/OFF)"],
+ [ 157, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 158, "Sistema OFF (ON=Sistema apagado)"],
+ [ 159, "No se utiliza"],
+ [ 160, "Modo emergencia (interior) activado / no activado"],
+ [ 161, "Consigna TAI (adicional)"],
+ [ 162, "Consigna TH ambiente"],
+ [ 163, "TH Ext. Refrigeración(adicional)"],
+ [ 164, "TH Ext. calefacción(adicional)"],
+ [ 165, "TH Ext. Refrigeración(principal)"],
+ [ 166, "TH Ext. Calefacción(principal)"],
+ [ 167, "Límite consumo de energía 4"],
+ [ 168, "Límite consumo de energía 3"],
+ [ 169, "Límite consumo de energía 2"],
+ [ 170, "Límite consumo de energía 1"],
+ [ 171, "Ninguno"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Precalentamiento del depósito ON/OFF"],
+ [ 176, "Salida bomba ACS"],
+ [ 177, "Salida de alarma"],
+ [ 178, "Salida calefacción/refrigeración"],
+ [ 179, "Caudalímetro (l/min)"],
+ [ 180, "Presión de agua"],
+ [ 181, "Señal bomba (0:máx-100stop)"],
+ [ 182, "V3V mezcladora 1"],
+ [ 183, "V3V mezcladora 2"],
+ [ 184, "Sensor de presión de refrigerante"],
+ [ 185, "Sensor de presión(T)"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "Activación/desactivación datos"],
+ [ 195, "Dirección U/Int."],
+ [ 196, "Modo Op. Híbrido"],
+ [ 197, "Demanda de operación de la caldera"],
+ [ 198, "Demanda DWH de caldera"],
+ [ 199, "Salida de la válvula de desviación"],
+ [ 200, "BE_COP"],
+ [ 201, "Temperatura objetivo de calentamiento híbrido"],
+ [ 202, "Temperatura objetivo para calentar la caldera"],
+ [ 203, "Add pump"],
+ [ 204, "Main pump"],
+ [ 205, "Temperatura del agua mezclada"],
+ [ 206, "2nd Domestic hot water temperature"],
+ [ 207, "Target delta T heating"],
+ [ 208, "Target delta T cooling"],
+ [ 209, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(LT_CB_04-08kW Bizone).json b/definitions/X10A/Spanish/Altherma(LT_CB_04-08kW Bizone).json
new file mode 100644
index 00000000..cbb8c8db
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(LT_CB_04-08kW Bizone).json
@@ -0,0 +1,222 @@
+{
+ "Model": "Altherma(LT_CB_04-08kW Bizone)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temp. Intercambiador U/Ext"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temp. Media Intercambiador U/Ext"],
+ [ 59, "Temp. tubo de líquido (R6T)"],
+ [ 60, "Temp. disipador de calor"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Conmutador del flujo de sales"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "No se utiliza"],
+ [ 70, "No se utiliza"],
+ [ 71, "No se utiliza"],
+ [ 72, "No se utiliza"],
+ [ 73, "No se utiliza"],
+ [ 74, "Temperatura de entrada de sales"],
+ [ 75, "Temperatura de salida de sales"],
+ [ 76, "Refrig. temp. evap. IN"],
+ [ 77, "Refrig. temp. evap. OUT"],
+ [ 78, "No se utiliza"],
+ [ 79, "No se utiliza"],
+ [ 80, "No se utiliza"],
+ [ 81, "No se utiliza"],
+ [ 82, "NextDataGrid"],
+ [ 83, "Frecuencia del INV (rps)"],
+ [ 84, "Frecuencia 2 del INV (rps)"],
+ [ 85, "Compresor STD 1"],
+ [ 86, "Compresor STD 2"],
+ [ 87, "Ventilador 1 (nivel)"],
+ [ 88, "Ventilador 2 (nivel)"],
+ [ 89, "Válvula de expansión (pls)"],
+ [ 90, "Válvula de expansión2 (pls)"],
+ [ 91, "Válvula de expansión3 (pls)"],
+ [ 92, "Válvula de expansión4 (pls)"],
+ [ 93, "Válvula de expansión5 (pls)"],
+ [ 94, "Válvula de 4 vías 1"],
+ [ 95, "Válvula de 4 vías 2"],
+ [ 96, "Válvula de 4 vías 3"],
+ [ 97, "Válvula de 4 vías 4"],
+ [ 98, "Válvula de 4 vías 5"],
+ [ 99, "Calentador del cárter 1"],
+ [ 100, "Calentador del cárter 2"],
+ [ 101, "Calentador del cárter 3"],
+ [ 102, "Calentador del cárter 4"],
+ [ 103, "Válvula solenoide 1"],
+ [ 104, "Válvula solenoide 2"],
+ [ 105, "Válvula solenoide 3"],
+ [ 106, "Válvula solenoide 4"],
+ [ 107, "Válvula solenoide 5"],
+ [ 108, "In-Out separator"],
+ [ 109, "Activación/desactivación datos"],
+ [ 110, "Dirección U/Int."],
+ [ 111, "Modo func. U/Int"],
+ [ 112, "Termostato ON/OFF"],
+ [ 113, "Protección de congelación"],
+ [ 114, "Modo silencioso"],
+ [ 115, "Protección de congelación tuberías"],
+ [ 116, "Código de error"],
+ [ 117, "Código de error detallado"],
+ [ 118, "Tipo de avería"],
+ [ 119, "Código de capacidad U/Int"],
+ [ 120, "Consigna ACS"],
+ [ 121, "Consigna TAI (principal)"],
+ [ 122, "Conmutador de flujo del agua"],
+ [ 123, "Protector térmico (Q1L) BUH"],
+ [ 124, "Protector térmico BSH"],
+ [ 125, "Modo tarifa reducida"],
+ [ 126, "Entrada solar"],
+ [ 127, "No se utiliza"],
+ [ 128, "No se utiliza"],
+ [ 129, "Modo bivalente"],
+ [ 130, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 131, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 132, "Resistencia BSH"],
+ [ 133, "Resistencia BUH etapa 1"],
+ [ 134, "Resistencia BUH etapa 2"],
+ [ 135, "Resistencia BPH(Bandeja U/E)"],
+ [ 136, "Funcionamiento bomba"],
+ [ 137, "Salida bomba solar"],
+ [ 138, "Código de opción interior"],
+ [ 139, "U/Int software ID (xx)"],
+ [ 140, "U/Int software ID (yy)"],
+ [ 141, "U/Int EEPROM Ver."],
+ [ 142, "Activación/desactivación datos"],
+ [ 143, "Dirección U/Int."],
+ [ 144, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 145, "Temp. Impulsión después de BUH (R2T)"],
+ [ 146, "Temp. Refrigerante líquido (R3T)"],
+ [ 147, "Temp. Retorno (R4T)"],
+ [ 148, "Temp. Deposito ACS (R5T)"],
+ [ 149, "Temperatura ambiente interior (R1T)"],
+ [ 150, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 151, "Activación/desactivación datos"],
+ [ 152, "Dirección U/Int."],
+ [ 153, "Recalentamiento ON/OFF"],
+ [ 154, "Almacenamiento ECO ON/OFF"],
+ [ 155, "Almacenamiento Confort ON/OFF"],
+ [ 156, "Modo Powerful ACS (ON/OFF)"],
+ [ 157, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 158, "Sistema OFF (ON=Sistema apagado)"],
+ [ 159, "No se utiliza"],
+ [ 160, "Modo emergencia (interior) activado / no activado"],
+ [ 161, "Consigna TAI (adicional)"],
+ [ 162, "Consigna TH ambiente"],
+ [ 163, "TH Ext. Refrigeración(adicional)"],
+ [ 164, "TH Ext. calefacción(adicional)"],
+ [ 165, "TH Ext. Refrigeración(principal)"],
+ [ 166, "TH Ext. Calefacción(principal)"],
+ [ 167, "Límite consumo de energía 4"],
+ [ 168, "Límite consumo de energía 3"],
+ [ 169, "Límite consumo de energía 2"],
+ [ 170, "Límite consumo de energía 1"],
+ [ 171, "Ninguno"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Precalentamiento del depósito ON/OFF"],
+ [ 176, "Salida bomba ACS"],
+ [ 177, "Salida de alarma"],
+ [ 178, "Salida calefacción/refrigeración"],
+ [ 179, "Caudalímetro (l/min)"],
+ [ 180, "Presión de agua"],
+ [ 181, "Señal bomba (0:máx-100stop)"],
+ [ 182, "V3V mezcladora 1"],
+ [ 183, "V3V mezcladora 2"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "No se utiliza"],
+ [ 188, "No se utiliza"],
+ [ 189, "No se utiliza"],
+ [ 190, "No se utiliza"],
+ [ 191, "No se utiliza"],
+ [ 192, "No se utiliza"],
+ [ 193, "Activación/desactivación datos"],
+ [ 194, "Dirección U/Int."],
+ [ 195, "U/Int. EEPROM (3er dígito)"],
+ [ 196, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 197, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 198, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 199, "U/Int. EEPROM (11º dígito)"],
+ [ 200, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 201, "Activación/desactivación datos"],
+ [ 202, "Dirección U/Int."],
+ [ 203, "Modo Op. Híbrido"],
+ [ 204, "Demanda de operación de la caldera"],
+ [ 205, "Demanda DWH de caldera"],
+ [ 206, "Salida de la válvula de desviación"],
+ [ 207, "BE_COP"],
+ [ 208, "Temperatura objetivo de calentamiento híbrido"],
+ [ 209, "Temperatura objetivo para calentar la caldera"],
+ [ 210, "Add pump"],
+ [ 211, "Main pump"],
+ [ 212, "Mixed water temp.(R7T)"],
+ [ 213, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(LT_CB_11-16kW Bizone).json b/definitions/X10A/Spanish/Altherma(LT_CB_11-16kW Bizone).json
new file mode 100644
index 00000000..52122edd
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(LT_CB_11-16kW Bizone).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Altherma(LT_CB_11-16kW Bizone)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Temp. disipador de calor"],
+ [ 54, "Presión"],
+ [ 55, "Presión(T)"],
+ [ 56, "No se utiliza"],
+ [ 57, "No se utiliza"],
+ [ 58, "Corriente primaria del INV (A)"],
+ [ 59, "Corriente secundaria del INV (A)"],
+ [ 60, "Tensión (N-Fase) (V)"],
+ [ 61, "Conmutador del flujo de sales"],
+ [ 62, "No se utiliza"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "No se utiliza"],
+ [ 66, "No se utiliza"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "Temperatura de entrada de sales"],
+ [ 70, "Temperatura de salida de sales"],
+ [ 71, "Refrig. temp. evap. IN"],
+ [ 72, "Refrig. temp. evap. OUT"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "No se utiliza"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frecuencia del INV (rps)"],
+ [ 79, "Frecuencia 2 del INV (rps)"],
+ [ 80, "Compresor STD 1"],
+ [ 81, "Compresor STD 2"],
+ [ 82, "Ventilador 1 (nivel)"],
+ [ 83, "Ventilador 2 (nivel)"],
+ [ 84, "Válvula de expansión1 (pls)"],
+ [ 85, "Válvula de expansión2 (pls)"],
+ [ 86, "Válvula de expansión3 (pls)"],
+ [ 87, "Válvula de expansión4 (pls)"],
+ [ 88, "Válvula de expansión5 (pls)"],
+ [ 89, "Válvula de 4 vías 1"],
+ [ 90, "Válvula de 4 vías 2"],
+ [ 91, "Válvula de 4 vías 3"],
+ [ 92, "Válvula de 4 vías 4"],
+ [ 93, "Válvula de 4 vías 5"],
+ [ 94, "Calentador del cárter 1"],
+ [ 95, "Calentador del cárter 2"],
+ [ 96, "Calentador del cárter 3"],
+ [ 97, "Calentador del cárter 4"],
+ [ 98, "SV1 (gas caliente)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Válvula solenoide 3"],
+ [ 101, "Válvula solenoide 4"],
+ [ 102, "Válvula solenoide 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Activación/desactivación datos"],
+ [ 105, "Dirección U/Int."],
+ [ 106, "Modo func. U/Int"],
+ [ 107, "Termostato ON/OFF"],
+ [ 108, "Protección de congelación"],
+ [ 109, "Modo silencioso"],
+ [ 110, "Protección de congelación tuberías"],
+ [ 111, "Código de error"],
+ [ 112, "Código de la unidad interior"],
+ [ 113, "Código de capacidad U/Int"],
+ [ 114, "Consigna ACS"],
+ [ 115, "Consigna TAI (principal)"],
+ [ 116, "Conmutador de flujo del agua"],
+ [ 117, "Protector térmico BUH"],
+ [ 118, "Protector térmico BSH"],
+ [ 119, "Modo tarifa reducida"],
+ [ 120, "Entrada solar"],
+ [ 121, "No se utiliza"],
+ [ 122, "No se utiliza"],
+ [ 123, "Modo bivalente"],
+ [ 124, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 125, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 126, "Resistencia BSH"],
+ [ 127, "Resistencia BUH etapa 1"],
+ [ 128, "Resistencia BUH etapa 2"],
+ [ 129, "Resistencia BPH(Bandeja U/E)"],
+ [ 130, "Funcionamiento bomba"],
+ [ 131, "Salida bomba solar"],
+ [ 132, "Código de opción interior"],
+ [ 133, "U/Int software ID (xx)"],
+ [ 134, "U/Int software ID (yy)"],
+ [ 135, "U/Int EEPROM Ver."],
+ [ 136, "Activación/desactivación datos"],
+ [ 137, "Dirección U/Int."],
+ [ 138, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 139, "Temp. Impulsión después de BUH (R2T)"],
+ [ 140, "Temp. Refrigerante líquido (R3T)"],
+ [ 141, "Temp. Retorno (R4T)"],
+ [ 142, "Temp. Deposito ACS (R5T)"],
+ [ 143, "Temperatura ambiente interior (R1T)"],
+ [ 144, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 145, "Activación/desactivación datos"],
+ [ 146, "Dirección U/Int."],
+ [ 147, "Recalentamiento ON/OFF"],
+ [ 148, "Almacenamiento ECO ON/OFF"],
+ [ 149, "Almacenamiento Confort ON/OFF"],
+ [ 150, "Modo Powerful ACS (ON/OFF)"],
+ [ 151, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 152, "Sistema OFF (ON=Sistema apagado)"],
+ [ 153, "No se utiliza"],
+ [ 154, "Modo emergencia (interior) activado / no activado"],
+ [ 155, "Consigna TAI (adicional)"],
+ [ 156, "Consigna TH ambiente"],
+ [ 157, "TH Ext. Refrigeración(adicional)"],
+ [ 158, "TH Ext. calefacción(adicional)"],
+ [ 159, "TH Ext. Refrigeración(principal)"],
+ [ 160, "TH Ext. Calefacción(principal)"],
+ [ 161, "Límite consumo de energía 4"],
+ [ 162, "Límite consumo de energía 3"],
+ [ 163, "Límite consumo de energía 2"],
+ [ 164, "Límite consumo de energía 1"],
+ [ 165, "Ninguno"],
+ [ 166, "No se utiliza"],
+ [ 167, "No se utiliza"],
+ [ 168, "No se utiliza"],
+ [ 169, "Precalentamiento del depósito ON/OFF"],
+ [ 170, "Salida bomba ACS"],
+ [ 171, "Salida de alarma"],
+ [ 172, "Salida calefacción/refrigeración"],
+ [ 173, "Caudalímetro (l/min)"],
+ [ 174, "Presión de agua"],
+ [ 175, "Señal bomba (0:máx-100stop)"],
+ [ 176, "V3V mezcladora 1"],
+ [ 177, "V3V mezcladora 2"],
+ [ 178, "No se utiliza"],
+ [ 179, "No se utiliza"],
+ [ 180, "No se utiliza"],
+ [ 181, "No se utiliza"],
+ [ 182, "No se utiliza"],
+ [ 183, "No se utiliza"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "Activación/desactivación datos"],
+ [ 196, "Dirección U/Int."],
+ [ 197, "Modo Op. Híbrido"],
+ [ 198, "Demanda de operación de la caldera"],
+ [ 199, "Demanda DWH de caldera"],
+ [ 200, "Salida de la válvula de desviación"],
+ [ 201, "BE_COP"],
+ [ 202, "Temperatura objetivo de calentamiento híbrido"],
+ [ 203, "Temperatura objetivo para calentar la caldera"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json b/definitions/X10A/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
new file mode 100644
index 00000000..2481d1d2
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temperatura del intercambiador de calor exterior"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temperatura media del intercambiador de calor exterior"],
+ [ 59, "Temp. tubo de líquido"],
+ [ 60, "Temperatura de la aleta"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Temperatura de entrada de sales"],
+ [ 67, "Temperatura de salida de sales"],
+ [ 68, "Refrig. temp. evap. IN"],
+ [ 69, "Refrig. temp. evap. OUT"],
+ [ 70, "NextDataGrid"],
+ [ 71, "Frecuencia del INV (rps)"],
+ [ 72, "Frecuencia 2 del INV (rps)"],
+ [ 73, "Compresor STD 1"],
+ [ 74, "Compresor STD 2"],
+ [ 75, "Ventilador 1 (nivel)"],
+ [ 76, "Ventilador 2 (nivel)"],
+ [ 77, "Válvula de expansión (pls)"],
+ [ 78, "Válvula de expansión2 (pls)"],
+ [ 79, "Válvula de expansión3 (pls)"],
+ [ 80, "Válvula de expansión4 (pls)"],
+ [ 81, "Válvula de expansión5 (pls)"],
+ [ 82, "Válvula de 4 vías"],
+ [ 83, "Válvula de 4 vías 2"],
+ [ 84, "Válvula de 4 vías 3"],
+ [ 85, "Válvula de 4 vías 4"],
+ [ 86, "Válvula de 4 vías 5"],
+ [ 87, "Calentador del cárter"],
+ [ 88, "Calentador del cárter 2"],
+ [ 89, "Calentador del cárter 3"],
+ [ 90, "Calentador del cárter 4"],
+ [ 91, "Válvula solenoide 1"],
+ [ 92, "Válvula solenoide 2"],
+ [ 93, "Válvula solenoide 3"],
+ [ 94, "Válvula solenoide 4"],
+ [ 95, "Válvula solenoide 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Activación/desactivación datos"],
+ [ 98, "Dirección U/Int."],
+ [ 99, "Modo func. U/Int"],
+ [ 100, "Termostato ON/OFF"],
+ [ 101, "Protección de congelación"],
+ [ 102, "Modo silencioso"],
+ [ 103, "Protección de congelación tuberías"],
+ [ 104, "Código de error"],
+ [ 105, "Código de la unidad interior"],
+ [ 106, "Código de capacidad U/Int"],
+ [ 107, "Consigna ACS"],
+ [ 108, "Consigna TAI (principal)"],
+ [ 109, "Conmutador de flujo del agua"],
+ [ 110, "Protector térmico (Q1L) BUH"],
+ [ 111, "Protector térmico BSH"],
+ [ 112, "Modo tarifa reducida"],
+ [ 113, "Entrada solar"],
+ [ 114, "No se utiliza"],
+ [ 115, "No se utiliza"],
+ [ 116, "Modo bivalente"],
+ [ 117, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 118, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 119, "Resistencia BSH"],
+ [ 120, "Resistencia BUH etapa 1"],
+ [ 121, "Resistencia BUH etapa 2"],
+ [ 122, "Válvula de cierre de suelo radiante"],
+ [ 123, "Funcionamiento bomba"],
+ [ 124, "Salida bomba solar"],
+ [ 125, "Código de opción interior"],
+ [ 126, "U/Int software ID (xx)"],
+ [ 127, "U/Int software ID (yy)"],
+ [ 128, "U/Int EEPROM Ver."],
+ [ 129, "Activación/desactivación datos"],
+ [ 130, "Dirección U/Int."],
+ [ 131, "Temperatura del intercambiador de calor del agua de salida (R1T)"],
+ [ 132, "Temperatura del agua de salida (R2T)"],
+ [ 133, "Temp. Refrigerante líquido (R3T)"],
+ [ 134, "Temp. Retorno (R4T)"],
+ [ 135, "Temp. Deposito ACS (R5T)"],
+ [ 136, "Temperatura ambiente interior (R1T)"],
+ [ 137, "Activación/desactivación datos"],
+ [ 138, "Dirección U/Int."],
+ [ 139, "Recalentamiento ON/OFF"],
+ [ 140, "Almacenamiento ECO ON/OFF"],
+ [ 141, "Almacenamiento Confort ON/OFF"],
+ [ 142, "Modo Powerful ACS (ON/OFF)"],
+ [ 143, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 144, "Sistema OFF (ON=Sistema apagado)"],
+ [ 145, "No se utiliza"],
+ [ 146, "Modo emergencia (interior) activado / no activado"],
+ [ 147, "Consigna TAI (adicional)"],
+ [ 148, "Consigna TH ambiente"],
+ [ 149, "TH Ext. Refrigeración(adicional)"],
+ [ 150, "TH Ext. calefacción(adicional)"],
+ [ 151, "TH Ext. Refrigeración(principal)"],
+ [ 152, "TH Ext. Calefacción(principal)"],
+ [ 153, "Límite consumo de energía 4"],
+ [ 154, "Límite consumo de energía 3"],
+ [ 155, "Límite consumo de energía 2"],
+ [ 156, "Límite consumo de energía 1"],
+ [ 157, "Ninguno"],
+ [ 158, "No se utiliza"],
+ [ 159, "No se utiliza"],
+ [ 160, "No se utiliza"],
+ [ 161, "Precalentamiento del depósito ON/OFF"],
+ [ 162, "Salida bomba ACS"],
+ [ 163, "Salida de alarma"],
+ [ 164, "Salida calefacción/refrigeración"],
+ [ 165, "Caudalímetro (l/min)"],
+ [ 166, "Presión de agua"],
+ [ 167, "Señal bomba (0:máx-100stop)"],
+ [ 168, "V3V mezcladora 1"],
+ [ 169, "V3V mezcladora 2"],
+ [ 170, "No se utiliza"],
+ [ 171, "No se utiliza"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "No se utiliza"],
+ [ 178, "No se utiliza"],
+ [ 179, "Activación/desactivación datos"],
+ [ 180, "Dirección U/Int."],
+ [ 181, "U/Int. EEPROM (3er dígito)"],
+ [ 182, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 183, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 184, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 185, "U/Int. EEPROM (11º dígito)"],
+ [ 186, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "Modo Op. Híbrido"],
+ [ 190, "Demanda de operación de la caldera"],
+ [ 191, "Demanda DWH de caldera"],
+ [ 192, "Salida de la válvula de desviación"],
+ [ 193, "BE_COP"],
+ [ 194, "Temperatura objetivo de calentamiento híbrido"],
+ [ 195, "Temperatura objetivo para calentar la caldera"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json b/definitions/X10A/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
new file mode 100644
index 00000000..2585bfca
--- /dev/null
+++ b/definitions/X10A/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).json
@@ -0,0 +1,209 @@
+{
+ "Model": "Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Temp. disipador de calor"],
+ [ 54, "Presión"],
+ [ 55, "Presión(T)"],
+ [ 56, "No se utiliza"],
+ [ 57, "No se utiliza"],
+ [ 58, "Corriente primaria del INV (A)"],
+ [ 59, "Corriente secundaria del INV (A)"],
+ [ 60, "Tensión (N-Fase) (V)"],
+ [ 61, "Conmutador del flujo de sales"],
+ [ 62, "No se utiliza"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "No se utiliza"],
+ [ 66, "No se utiliza"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "Temperatura de entrada de sales"],
+ [ 70, "Temperatura de salida de sales"],
+ [ 71, "Refrig. temp. evap. IN"],
+ [ 72, "Refrig. temp. evap. OUT"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "No se utiliza"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frecuencia del INV (rps)"],
+ [ 79, "Ventilador 1 (nivel)"],
+ [ 80, "Ventilador 2 (nivel)"],
+ [ 81, "Válvula de expansión1 (pls)"],
+ [ 82, "Válvula de expansión2 (pls)"],
+ [ 83, "Válvula de 4 vías 1"],
+ [ 84, "Válvula de 4 vías 2"],
+ [ 85, "Válvula de 4 vías 3"],
+ [ 86, "Válvula de 4 vías 4"],
+ [ 87, "Válvula de 4 vías 5"],
+ [ 88, "Calentador del cárter 1"],
+ [ 89, "Calentador del cárter 2"],
+ [ 90, "Calentador del cárter 3"],
+ [ 91, "Calentador del cárter 4"],
+ [ 92, "SV1 (gas caliente)"],
+ [ 93, "SV2 (BPH)"],
+ [ 94, "Válvula solenoide 3"],
+ [ 95, "Válvula solenoide 4"],
+ [ 96, "Válvula solenoide 5"],
+ [ 97, "In-Out separator"],
+ [ 98, "Activación/desactivación datos"],
+ [ 99, "Dirección U/Int."],
+ [ 100, "Modo func. U/Int"],
+ [ 101, "Termostato ON/OFF"],
+ [ 102, "Protección de congelación"],
+ [ 103, "Modo silencioso"],
+ [ 104, "Protección de congelación tuberías"],
+ [ 105, "Código de error"],
+ [ 106, "Código de la unidad interior"],
+ [ 107, "Código de capacidad U/Int"],
+ [ 108, "Consigna ACS"],
+ [ 109, "Consigna TAI (principal)"],
+ [ 110, "Conmutador de flujo del agua"],
+ [ 111, "Protector térmico BUH"],
+ [ 112, "Protector térmico BSH"],
+ [ 113, "Modo tarifa reducida"],
+ [ 114, "Entrada solar"],
+ [ 115, "No se utiliza"],
+ [ 116, "No se utiliza"],
+ [ 117, "Modo bivalente"],
+ [ 118, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 119, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 120, "Resistencia BSH"],
+ [ 121, "Resistencia BUH etapa 1"],
+ [ 122, "Resistencia BUH etapa 2"],
+ [ 123, "Resistencia BPH(Bandeja U/E)"],
+ [ 124, "Funcionamiento bomba"],
+ [ 125, "Salida bomba solar"],
+ [ 126, "Código de opción interior"],
+ [ 127, "U/Int software ID (xx)"],
+ [ 128, "U/Int software ID (yy)"],
+ [ 129, "U/Int EEPROM Ver."],
+ [ 130, "Activación/desactivación datos"],
+ [ 131, "Dirección U/Int."],
+ [ 132, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 133, "Temp. Impulsión después de BUH (R2T)"],
+ [ 134, "Temp. Refrigerante líquido (R3T)"],
+ [ 135, "Temp. Retorno (R4T)"],
+ [ 136, "Temp. Deposito ACS (R5T)"],
+ [ 137, "Temperatura ambiente interior (R1T)"],
+ [ 138, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 139, "Activación/desactivación datos"],
+ [ 140, "Dirección U/Int."],
+ [ 141, "Recalentamiento ON/OFF"],
+ [ 142, "Almacenamiento ECO ON/OFF"],
+ [ 143, "Almacenamiento Confort ON/OFF"],
+ [ 144, "Modo Powerful ACS (ON/OFF)"],
+ [ 145, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 146, "Sistema OFF (ON=Sistema apagado)"],
+ [ 147, "No se utiliza"],
+ [ 148, "Modo emergencia (interior) activado / no activado"],
+ [ 149, "Consigna TAI (adicional)"],
+ [ 150, "Consigna TH ambiente"],
+ [ 151, "TH Ext. Refrigeración(adicional)"],
+ [ 152, "TH Ext. calefacción(adicional)"],
+ [ 153, "TH Ext. Refrigeración(principal)"],
+ [ 154, "TH Ext. Calefacción(principal)"],
+ [ 155, "Límite consumo de energía 4"],
+ [ 156, "Límite consumo de energía 3"],
+ [ 157, "Límite consumo de energía 2"],
+ [ 158, "Límite consumo de energía 1"],
+ [ 159, "Ninguno"],
+ [ 160, "No se utiliza"],
+ [ 161, "No se utiliza"],
+ [ 162, "No se utiliza"],
+ [ 163, "Precalentamiento del depósito ON/OFF"],
+ [ 164, "Salida bomba ACS"],
+ [ 165, "Salida de alarma"],
+ [ 166, "Salida calefacción/refrigeración"],
+ [ 167, "Caudalímetro (l/min)"],
+ [ 168, "Presión de agua"],
+ [ 169, "Señal bomba (0:máx-100stop)"],
+ [ 170, "V3V mezcladora 1"],
+ [ 171, "V3V mezcladora 2"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "No se utiliza"],
+ [ 178, "No se utiliza"],
+ [ 179, "No se utiliza"],
+ [ 180, "No se utiliza"],
+ [ 181, "Activación/desactivación datos"],
+ [ 182, "Dirección U/Int."],
+ [ 183, "U/Int. EEPROM (3er dígito)"],
+ [ 184, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 185, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 186, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 187, "U/Int. EEPROM (11º dígito)"],
+ [ 188, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 189, "Activación/desactivación datos"],
+ [ 190, "Dirección U/Int."],
+ [ 191, "Modo Op. Híbrido"],
+ [ 192, "Demanda de operación de la caldera"],
+ [ 193, "Demanda DWH de caldera"],
+ [ 194, "Salida de la válvula de desviación"],
+ [ 195, "BE_COP"],
+ [ 196, "Temperatura objetivo de calentamiento híbrido"],
+ [ 197, "Temperatura objetivo para calentar la caldera"],
+ [ 198, "Add pump"],
+ [ 199, "Main pump"],
+ [ 200, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/DEFAULT.json b/definitions/X10A/Spanish/DEFAULT.json
new file mode 100644
index 00000000..81ab9baf
--- /dev/null
+++ b/definitions/X10A/Spanish/DEFAULT.json
@@ -0,0 +1,147 @@
+{
+ "Model": "DEFAULT",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Compresor STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID"],
+ [ 13, "U/ext. MPU ID"],
+ [ 14, "Modo de funcionamiento"],
+ [ 15, "Termostato ON/OFF"],
+ [ 16, "Anticiclo reinicio"],
+ [ 17, "Control de arranque"],
+ [ 18, "Desescarche"],
+ [ 19, "Retorno de aceite"],
+ [ 20, "Compensación de presiones"],
+ [ 21, "Señal de demanda"],
+ [ 22, "Control reducción de ruido"],
+ [ 23, "Otro de control 1"],
+ [ 24, "Otro de control 2"],
+ [ 25, "Otro de control 3"],
+ [ 26, "Otro de control 4"],
+ [ 27, "Otro de control 5"],
+ [ 28, "Otro de control 6"],
+ [ 29, "Otro de control 7"],
+ [ 30, "Otro de control 8"],
+ [ 31, "Otro de control 9"],
+ [ 32, "Otro de control 10"],
+ [ 33, "Otro de control 11"],
+ [ 34, "Otro de control 12"],
+ [ 35, "Otro de control 13"],
+ [ 36, "Otro de control 14"],
+ [ 37, "Otro de control 15"],
+ [ 38, "Otro de control 16"],
+ [ 39, "Tipo de avería"],
+ [ 40, "Código de error"],
+ [ 41, "Temp. de evaporación objetivo"],
+ [ 42, "Temp. de condensación objetivo"],
+ [ 43, "Caída de la temperatura de descarga"],
+ [ 44, "Reintentos protección temp. descarga"],
+ [ 45, "Caida de corriente compresor INV"],
+ [ 46, "Reintentos protección corriente INV"],
+ [ 47, "HP drop control"],
+ [ 48, "Reintentos protección HP"],
+ [ 49, "Control caida Baja Presión"],
+ [ 50, "Reintentos proteccion Baja Presión"],
+ [ 51, "Otro control"],
+ [ 52, "NextDataGrid"],
+ [ 53, "Temp. Ambiente exterior"],
+ [ 54, "Temperatura del intercambiador de calor exterior"],
+ [ 55, "Temp. del tubo de descarga"],
+ [ 56, "Temp. Tubo de aspiración"],
+ [ 57, "Temperatura media del intercambiador de calor exterior"],
+ [ 58, "Temp. tubo de líquido"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Presión baja"],
+ [ 61, "Presión baja(T)"],
+ [ 62, "Datos del sensor 9"],
+ [ 63, "Datos del sensor 10"],
+ [ 64, "Datos del sensor 11"],
+ [ 65, "Corriente primaria del INV (A)"],
+ [ 66, "Corriente secundaria del INV (A)"],
+ [ 67, "Temperatura de la aleta del INV"],
+ [ 68, "Datos del sensor 4"],
+ [ 69, "Datos del sensor 5"],
+ [ 70, "Datos del sensor 6"],
+ [ 71, "Datos del sensor 7"],
+ [ 72, "Datos del sensor 8"],
+ [ 73, "Datos del sensor 9"],
+ [ 74, "Datos del sensor 10"],
+ [ 75, "Datos del sensor 11"],
+ [ 76, "NextDataGrid"],
+ [ 77, "Frecuencia 1 del INV (rps)"],
+ [ 78, "Frecuencia 2 del INV (rps)"],
+ [ 79, "Compresor STD 1"],
+ [ 80, "Compresor STD 2"],
+ [ 81, "Ventilador 1 (nivel)"],
+ [ 82, "Ventilador 2 (nivel)"],
+ [ 83, "Válvula de expansión1 (pls)"],
+ [ 84, "Válvula de expansión2 (pls)"],
+ [ 85, "Válvula de 4 vías 1"],
+ [ 86, "Válvula de 4 vías 2"],
+ [ 87, "Calentador del cárter 1"],
+ [ 88, "Calentador del cárter 2"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula solenoide 2"],
+ [ 91, "Válvula solenoide 3"],
+ [ 92, "Válvula solenoide 4"],
+ [ 93, "Válvula solenoide 5"],
+ [ 94, "Válvula solenoide 6"],
+ [ 95, "Válvula solenoide 7"],
+ [ 96, "Válvula solenoide 8"],
+ [ 97, "Válvula solenoide 9"],
+ [ 98, "Válvula solenoide 10"],
+ [ 99, "In-Out separator"],
+ [ 100, "Activación/desactivación datos"],
+ [ 101, "Dirección U/Int."],
+ [ 102, "Modo de operación interior"],
+ [ 103, "Termostato ON/OFF"],
+ [ 104, "Protección de congelación"],
+ [ 105, "Modo silencioso"],
+ [ 106, "Protección de congelación tuberías"],
+ [ 107, "Código de error"],
+ [ 108, "Código de la unidad interior"],
+ [ 109, "Capacidad de la unidad interior"],
+ [ 110, "Punto de ajuste R/C"],
+ [ 111, "Punto de ajuste de salida H/P"],
+ [ 112, "Conmutador de flujo"],
+ [ 113, "Clixon BUH"],
+ [ 114, "Clixon BSH"],
+ [ 115, "Entrada de tarifa HP"],
+ [ 116, "Entrada solar"],
+ [ 117, "No se utiliza"],
+ [ 118, "No se utiliza"],
+ [ 119, "Modo bivalente"],
+ [ 120, "Válvula de 3 vías (Enfriar/calentar)"],
+ [ 121, "Válvula de 4 vías (Espacio/DWH)"],
+ [ 122, "Resistencia BSH"],
+ [ 123, "BUH1"],
+ [ 124, "BUH2"],
+ [ 125, "Calentador de la placa inferior"],
+ [ 126, "Salida de bombeo"],
+ [ 127, "Señal de salida solar"],
+ [ 128, "Código de opción interior"],
+ [ 129, "Versión de software interior"],
+ [ 130, "Versión EEPROM interior"],
+ [ 131, "Activación/desactivación datos"],
+ [ 132, "Dirección U/Int."],
+ [ 133, "PHE de salida (R1T)"],
+ [ 134, "BUH de salida (R2T)"],
+ [ 135, "Temperatura del líquido (R3T)"],
+ [ 136, "Temperatura de entrada interior (R4T)"],
+ [ 137, "Temperatura DWH (R5T)"],
+ [ 138, "Termistor a control remoto"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json b/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
new file mode 100644
index 00000000..6be83243
--- /dev/null
+++ b/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).json
@@ -0,0 +1,228 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 4-8kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temperatura del líquido (R3T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión baja"],
+ [ 56, "Presión baja(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Y1S"],
+ [ 74, "SV (drain pan heater)"],
+ [ 75, "Y3S"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Válvula solenoide 3"],
+ [ 88, "SV (drain pan heater)"],
+ [ 89, "Válvula solenoide 1"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "Not translated yet"],
+ [ 129, "Not translated yet"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Sensor de presión(T)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "Not translated yet"],
+ [ 199, "Not translated yet"],
+ [ 200, "Capacidad de salida BUH"],
+ [ 201, "Medición del sensor CT (L1)"],
+ [ 202, "Medición del sensor CT (L2)"],
+ [ 203, "HP forzado FG"],
+ [ 204, "Medición del sensor CT (L3)"],
+ [ 205, "Activación/desactivación datos"],
+ [ 206, "Dirección U/Int."],
+ [ 207, "Modo Op. Híbrido"],
+ [ 208, "Demanda de operación de la caldera"],
+ [ 209, "Demanda DWH de caldera"],
+ [ 210, "Salida de la válvula de desviación"],
+ [ 211, "BE_COP"],
+ [ 212, "Temperatura objetivo de calentamiento híbrido"],
+ [ 213, "Temperatura objetivo para calentar la caldera"],
+ [ 214, "Add pump"],
+ [ 215, "Main pump"],
+ [ 216, "Temperatura del agua mezclada"],
+ [ 217, "2nd Domestic hot water temperature"],
+ [ 218, "Target delta T heating"],
+ [ 219, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json b/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
new file mode 100644
index 00000000..d872747d
--- /dev/null
+++ b/definitions/X10A/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).json
@@ -0,0 +1,215 @@
+{
+ "Model": "Daikin Mini chiller(EWAA-EWYA D series 9-16kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Temp. de evaporación objetivo"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Temp. disipador de calor"],
+ [ 54, "Presión"],
+ [ 55, "Presión(T)"],
+ [ 56, "No se utiliza"],
+ [ 57, "No se utiliza"],
+ [ 58, "Corriente primaria del INV (A)"],
+ [ 59, "Corriente secundaria del INV (A)"],
+ [ 60, "Tensión (N-Fase) (V)"],
+ [ 61, "Conmutador del flujo de sales"],
+ [ 62, "No se utiliza"],
+ [ 63, "No se utiliza"],
+ [ 64, "No se utiliza"],
+ [ 65, "No se utiliza"],
+ [ 66, "No se utiliza"],
+ [ 67, "No se utiliza"],
+ [ 68, "No se utiliza"],
+ [ 69, "Temperatura de entrada de sales"],
+ [ 70, "Temperatura de salida de sales"],
+ [ 71, "Refrig. temp. evap. IN"],
+ [ 72, "Refrig. temp. evap. OUT"],
+ [ 73, "No se utiliza"],
+ [ 74, "No se utiliza"],
+ [ 75, "No se utiliza"],
+ [ 76, "No se utiliza"],
+ [ 77, "NextDataGrid"],
+ [ 78, "Frecuencia del INV (rps)"],
+ [ 79, "Frecuencia 2 del INV (rps)"],
+ [ 80, "Compresor STD 1"],
+ [ 81, "Compresor STD 2"],
+ [ 82, "Ventilador 1 (nivel)"],
+ [ 83, "Ventilador 2 (nivel)"],
+ [ 84, "Válvula de expansión1 (pls)"],
+ [ 85, "Válvula de expansión2 (pls)"],
+ [ 86, "Válvula de expansión3 (pls)"],
+ [ 87, "Válvula de expansión4 (pls)"],
+ [ 88, "Válvula de expansión5 (pls)"],
+ [ 89, "Válvula de 4 vías 1"],
+ [ 90, "Válvula de 4 vías 2"],
+ [ 91, "Válvula de 4 vías 3"],
+ [ 92, "Válvula de 4 vías 4"],
+ [ 93, "Válvula de 4 vías 5"],
+ [ 94, "Calentador del cárter 1"],
+ [ 95, "Calentador del cárter 2"],
+ [ 96, "Calentador del cárter 3"],
+ [ 97, "Calentador del cárter 4"],
+ [ 98, "SV1 (gas caliente)"],
+ [ 99, "SV2 (BPH)"],
+ [ 100, "Válvula solenoide 3"],
+ [ 101, "Válvula solenoide 4"],
+ [ 102, "Válvula solenoide 5"],
+ [ 103, "In-Out separator"],
+ [ 104, "Activación/desactivación datos"],
+ [ 105, "Dirección U/Int."],
+ [ 106, "Modo func. U/Int"],
+ [ 107, "Termostato ON/OFF"],
+ [ 108, "Protección de congelación"],
+ [ 109, "Modo silencioso"],
+ [ 110, "Protección de congelación tuberías"],
+ [ 111, "Código de error"],
+ [ 112, "Código de la unidad interior"],
+ [ 113, "Código de capacidad U/Int"],
+ [ 114, "Consigna ACS"],
+ [ 115, "Consigna TAI (principal)"],
+ [ 116, "Conmutador de flujo del agua"],
+ [ 117, "Protector térmico BUH"],
+ [ 118, "Protector térmico BSH"],
+ [ 119, "Modo tarifa reducida"],
+ [ 120, "Entrada solar"],
+ [ 121, "No se utiliza"],
+ [ 122, "No se utiliza"],
+ [ 123, "Modo bivalente"],
+ [ 124, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 125, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 126, "Resistencia BSH"],
+ [ 127, "Resistencia BUH etapa 1"],
+ [ 128, "Resistencia BUH etapa 2"],
+ [ 129, "Resistencia BPH(Bandeja U/E)"],
+ [ 130, "Funcionamiento bomba"],
+ [ 131, "Salida bomba solar"],
+ [ 132, "Código de opción interior"],
+ [ 133, "U/Int software ID (xx)"],
+ [ 134, "U/Int software ID (yy)"],
+ [ 135, "U/Int EEPROM Ver."],
+ [ 136, "Activación/desactivación datos"],
+ [ 137, "Dirección U/Int."],
+ [ 138, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 139, "Temp. Impulsión después de BUH (R2T)"],
+ [ 140, "Temp. Refrigerante líquido (R3T)"],
+ [ 141, "Temp. Retorno (R4T)"],
+ [ 142, "Temp. Deposito ACS (R5T)"],
+ [ 143, "Temperatura ambiente interior (R1T)"],
+ [ 144, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 145, "Activación/desactivación datos"],
+ [ 146, "Dirección U/Int."],
+ [ 147, "Recalentamiento ON/OFF"],
+ [ 148, "Almacenamiento ECO ON/OFF"],
+ [ 149, "Almacenamiento Confort ON/OFF"],
+ [ 150, "Modo Powerful ACS (ON/OFF)"],
+ [ 151, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 152, "Sistema OFF (ON=Sistema apagado)"],
+ [ 153, "No se utiliza"],
+ [ 154, "Modo emergencia (interior) activado / no activado"],
+ [ 155, "Consigna TAI (adicional)"],
+ [ 156, "Consigna TH ambiente"],
+ [ 157, "TH Ext. Refrigeración(adicional)"],
+ [ 158, "TH Ext. calefacción(adicional)"],
+ [ 159, "TH Ext. Refrigeración(principal)"],
+ [ 160, "TH Ext. Calefacción(principal)"],
+ [ 161, "Límite consumo de energía 4"],
+ [ 162, "Límite consumo de energía 3"],
+ [ 163, "Límite consumo de energía 2"],
+ [ 164, "Límite consumo de energía 1"],
+ [ 165, "Ninguno"],
+ [ 166, "No se utiliza"],
+ [ 167, "No se utiliza"],
+ [ 168, "No se utiliza"],
+ [ 169, "Precalentamiento del depósito ON/OFF"],
+ [ 170, "Salida bomba ACS"],
+ [ 171, "Salida de alarma"],
+ [ 172, "Salida calefacción/refrigeración"],
+ [ 173, "Caudalímetro (l/min)"],
+ [ 174, "Presión de agua"],
+ [ 175, "Señal bomba (0:máx-100stop)"],
+ [ 176, "V3V mezcladora 1"],
+ [ 177, "V3V mezcladora 2"],
+ [ 178, "No se utiliza"],
+ [ 179, "No se utiliza"],
+ [ 180, "No se utiliza"],
+ [ 181, "No se utiliza"],
+ [ 182, "No se utiliza"],
+ [ 183, "No se utiliza"],
+ [ 184, "No se utiliza"],
+ [ 185, "No se utiliza"],
+ [ 186, "No se utiliza"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "U/Int. EEPROM (3er dígito)"],
+ [ 190, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 191, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 192, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 193, "U/Int. EEPROM (11º dígito)"],
+ [ 194, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 195, "Activación/desactivación datos"],
+ [ 196, "Dirección U/Int."],
+ [ 197, "Modo Op. Híbrido"],
+ [ 198, "Demanda de operación de la caldera"],
+ [ 199, "Demanda DWH de caldera"],
+ [ 200, "Salida de la válvula de desviación"],
+ [ 201, "BE_COP"],
+ [ 202, "Temperatura objetivo de calentamiento híbrido"],
+ [ 203, "Temperatura objetivo para calentar la caldera"],
+ [ 204, "Add pump"],
+ [ 205, "Main pump"],
+ [ 206, "Mixed water temp.(R7T)"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json b/definitions/X10A/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
new file mode 100644
index 00000000..a45e4196
--- /dev/null
+++ b/definitions/X10A/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).json
@@ -0,0 +1,205 @@
+{
+ "Model": "Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Override CMD:0x00 N_INV=1"],
+ [ 3, "Override CMD:0x00 N_STD=0"],
+ [ 4, "Override CMD:0x00 N_FAN=2"],
+ [ 5, "Override CMD:0x00 N_EV=2"],
+ [ 6, "Override CMD:0x00 N_20S=1"],
+ [ 7, "Override CMD:0x00 N_CH=1"],
+ [ 8, "Override CMD:0x00 N_SV=3"],
+ [ 9, "Cant. de datos del sensor"],
+ [ 10, "Cant. de compresor INV"],
+ [ 11, "Cant. de compresores STD"],
+ [ 12, "Cant. de datos de ventilador"],
+ [ 13, "Cant. de datos de la válvula de expansión"],
+ [ 14, "Cant. de datos de la válvula de 4 vías"],
+ [ 15, "Cant. de calentadores del cárter"],
+ [ 16, "Cant. de válvulas de solenoide"],
+ [ 17, "Unidades interiores conectable máx."],
+ [ 18, "Cant. de unidades interiores conectadas"],
+ [ 19, "U/ext. MPU ID (xx)"],
+ [ 20, "U/ext. MPU ID (yy)"],
+ [ 21, "Capacidad U/Ext (kW)"],
+ [ 22, "Modo de funcionamiento"],
+ [ 23, "Termostato ON/OFF"],
+ [ 24, "Anticiclo reinicio"],
+ [ 25, "Control de arranque"],
+ [ 26, "Desescarche"],
+ [ 27, "Retorno de aceite"],
+ [ 28, "Compensación de presiones"],
+ [ 29, "Señal de demanda"],
+ [ 30, "Control reducción de ruido"],
+ [ 31, "Tipo de avería"],
+ [ 32, "Código de error"],
+ [ 33, "Temp. de evaporación objetivo"],
+ [ 34, "Temp. de condensación objetivo"],
+ [ 35, "Caída de la temperatura de descarga"],
+ [ 36, "Reintentos protección temp. descarga"],
+ [ 37, "Caida de corriente compresor INV"],
+ [ 38, "Reintentos protección corriente INV"],
+ [ 39, "HP drop control"],
+ [ 40, "Reintentos protección HP"],
+ [ 41, "Control caida Baja Presión"],
+ [ 42, "Reintentos proteccion Baja Presión"],
+ [ 43, "Control caida temp. Frec INV"],
+ [ 44, "Reintentos protección temp. Frec INV"],
+ [ 45, "Otro de control de caída"],
+ [ 46, "No se utiliza"],
+ [ 47, "U/Ext. EEPROM (1er dígito)"],
+ [ 48, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 49, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 50, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 51, "U/Ext. EEPROM (10º dígito)"],
+ [ 52, "U/Ext. EEPROM (11º dígito)"],
+ [ 53, "NextDataGrid"],
+ [ 54, "Temp. Ambiente exterior (R1T)"],
+ [ 55, "Temperatura del intercambiador de calor exterior"],
+ [ 56, "Temp. del tubo de descarga"],
+ [ 57, "Temp. Tubo de aspiración"],
+ [ 58, "Temperatura media del intercambiador de calor exterior"],
+ [ 59, "Temp. tubo de líquido"],
+ [ 60, "Temperatura de la aleta"],
+ [ 61, "Presión"],
+ [ 62, "Presión(T)"],
+ [ 63, "Corriente primaria del INV (A)"],
+ [ 64, "Corriente secundaria del INV (A)"],
+ [ 65, "Tensión (N-Fase) (V)"],
+ [ 66, "Temperatura de entrada de sales"],
+ [ 67, "Temperatura de salida de sales"],
+ [ 68, "Refrig. temp. evap. IN"],
+ [ 69, "Refrig. temp. evap. OUT"],
+ [ 70, "NextDataGrid"],
+ [ 71, "Frecuencia del INV (rps)"],
+ [ 72, "Frecuencia 2 del INV (rps)"],
+ [ 73, "Compresor STD 1"],
+ [ 74, "Compresor STD 2"],
+ [ 75, "Ventilador 1 (nivel)"],
+ [ 76, "Ventilador 2 (nivel)"],
+ [ 77, "Válvula de expansión (pls)"],
+ [ 78, "Válvula de expansión2 (pls)"],
+ [ 79, "Válvula de expansión3 (pls)"],
+ [ 80, "Válvula de expansión4 (pls)"],
+ [ 81, "Válvula de expansión5 (pls)"],
+ [ 82, "Válvula de 4 vías"],
+ [ 83, "Válvula de 4 vías 2"],
+ [ 84, "Válvula de 4 vías 3"],
+ [ 85, "Válvula de 4 vías 4"],
+ [ 86, "Válvula de 4 vías 5"],
+ [ 87, "Calentador del cárter"],
+ [ 88, "Calentador del cárter 2"],
+ [ 89, "Calentador del cárter 3"],
+ [ 90, "Calentador del cárter 4"],
+ [ 91, "Válvula solenoide 1"],
+ [ 92, "Válvula solenoide 2"],
+ [ 93, "Válvula solenoide 3"],
+ [ 94, "Válvula solenoide 4"],
+ [ 95, "Válvula solenoide 5"],
+ [ 96, "In-Out separator"],
+ [ 97, "Activación/desactivación datos"],
+ [ 98, "Dirección U/Int."],
+ [ 99, "Modo func. U/Int"],
+ [ 100, "Termostato ON/OFF"],
+ [ 101, "Protección de congelación"],
+ [ 102, "Modo silencioso"],
+ [ 103, "Protección de congelación tuberías"],
+ [ 104, "Código de error"],
+ [ 105, "Código de la unidad interior"],
+ [ 106, "Código de capacidad U/Int"],
+ [ 107, "Consigna ACS"],
+ [ 108, "Consigna TAI (principal)"],
+ [ 109, "Conmutador de flujo del agua"],
+ [ 110, "Protector térmico (Q1L) BUH"],
+ [ 111, "Protector térmico BSH"],
+ [ 112, "Modo tarifa reducida"],
+ [ 113, "Entrada solar"],
+ [ 114, "No se utiliza"],
+ [ 115, "No se utiliza"],
+ [ 116, "Modo bivalente"],
+ [ 117, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 118, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 119, "Resistencia BSH"],
+ [ 120, "Resistencia BUH etapa 1"],
+ [ 121, "Resistencia BUH etapa 2"],
+ [ 122, "Válvula de cierre de suelo radiante"],
+ [ 123, "Funcionamiento bomba"],
+ [ 124, "Salida bomba solar"],
+ [ 125, "Código de opción interior"],
+ [ 126, "U/Int software ID (xx)"],
+ [ 127, "U/Int software ID (yy)"],
+ [ 128, "U/Int EEPROM Ver."],
+ [ 129, "Activación/desactivación datos"],
+ [ 130, "Dirección U/Int."],
+ [ 131, "Temperatura del intercambiador de calor del agua de salida (R1T)"],
+ [ 132, "Temperatura del agua de salida (R2T)"],
+ [ 133, "Temp. Refrigerante líquido (R3T)"],
+ [ 134, "Temp. Retorno (R4T)"],
+ [ 135, "Temp. Deposito ACS (R5T)"],
+ [ 136, "Temperatura ambiente interior (R1T)"],
+ [ 137, "Activación/desactivación datos"],
+ [ 138, "Dirección U/Int."],
+ [ 139, "Recalentamiento ON/OFF"],
+ [ 140, "Almacenamiento ECO ON/OFF"],
+ [ 141, "Almacenamiento Confort ON/OFF"],
+ [ 142, "Modo Powerful ACS (ON/OFF)"],
+ [ 143, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 144, "Sistema OFF (ON=Sistema apagado)"],
+ [ 145, "No se utiliza"],
+ [ 146, "Modo emergencia (interior) activado / no activado"],
+ [ 147, "Consigna TAI (adicional)"],
+ [ 148, "Consigna TH ambiente"],
+ [ 149, "TH Ext. Refrigeración(adicional)"],
+ [ 150, "TH Ext. calefacción(adicional)"],
+ [ 151, "TH Ext. Refrigeración(principal)"],
+ [ 152, "TH Ext. Calefacción(principal)"],
+ [ 153, "Límite consumo de energía 4"],
+ [ 154, "Límite consumo de energía 3"],
+ [ 155, "Límite consumo de energía 2"],
+ [ 156, "Límite consumo de energía 1"],
+ [ 157, "Ninguno"],
+ [ 158, "No se utiliza"],
+ [ 159, "No se utiliza"],
+ [ 160, "No se utiliza"],
+ [ 161, "Precalentamiento del depósito ON/OFF"],
+ [ 162, "Salida bomba ACS"],
+ [ 163, "Salida de alarma"],
+ [ 164, "Salida calefacción/refrigeración"],
+ [ 165, "Caudalímetro (l/min)"],
+ [ 166, "Presión de agua"],
+ [ 167, "Señal bomba (0:máx-100stop)"],
+ [ 168, "V3V mezcladora 1"],
+ [ 169, "V3V mezcladora 2"],
+ [ 170, "No se utiliza"],
+ [ 171, "No se utiliza"],
+ [ 172, "No se utiliza"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "No se utiliza"],
+ [ 176, "No se utiliza"],
+ [ 177, "No se utiliza"],
+ [ 178, "No se utiliza"],
+ [ 179, "Activación/desactivación datos"],
+ [ 180, "Dirección U/Int."],
+ [ 181, "U/Int. EEPROM (3er dígito)"],
+ [ 182, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 183, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 184, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 185, "U/Int. EEPROM (11º dígito)"],
+ [ 186, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 187, "Activación/desactivación datos"],
+ [ 188, "Dirección U/Int."],
+ [ 189, "Modo Op. Híbrido"],
+ [ 190, "Demanda de operación de la caldera"],
+ [ 191, "Demanda DWH de caldera"],
+ [ 192, "Salida de la válvula de desviación"],
+ [ 193, "BE_COP"],
+ [ 194, "Temperatura objetivo de calentamiento híbrido"],
+ [ 195, "Temperatura objetivo para calentar la caldera"],
+ [ 196, "Override All Clear"]
+ ]
+}
\ No newline at end of file
diff --git a/definitions/X10A/Spanish/EKHWET-BAV3(MULTI DHW TANK).json b/definitions/X10A/Spanish/EKHWET-BAV3(MULTI DHW TANK).json
new file mode 100644
index 00000000..72a778fe
--- /dev/null
+++ b/definitions/X10A/Spanish/EKHWET-BAV3(MULTI DHW TANK).json
@@ -0,0 +1,231 @@
+{
+ "Model": "EKHWET-BAV3(MULTI DHW TANK)",
+ "Language": "Spanish",
+ "Presets": {
+
+ },
+ "Parameters": [
+ [ 1, "*Tipo de refrigerante"],
+ [ 2, "Cant. de datos del sensor"],
+ [ 3, "Cant. de compresor INV"],
+ [ 4, "Cant. de compresores STD"],
+ [ 5, "Cant. de datos de ventilador"],
+ [ 6, "Cant. de datos de la válvula de expansión"],
+ [ 7, "Cant. de datos de la válvula de 4 vías"],
+ [ 8, "Cant. de calentadores del cárter"],
+ [ 9, "Cant. de válvulas de solenoide"],
+ [ 10, "Unidades interiores conectable máx."],
+ [ 11, "Cant. de unidades interiores conectadas"],
+ [ 12, "U/ext. MPU ID (xx)"],
+ [ 13, "U/ext. MPU ID (yy)"],
+ [ 14, "Capacidad U/Ext (kW)"],
+ [ 15, "Modo de funcionamiento"],
+ [ 16, "Termostato ON/OFF"],
+ [ 17, "Anticiclo reinicio"],
+ [ 18, "Control de arranque"],
+ [ 19, "Desescarche"],
+ [ 20, "Retorno de aceite"],
+ [ 21, "Compensación de presiones"],
+ [ 22, "Señal de demanda"],
+ [ 23, "Control reducción de ruido"],
+ [ 24, "Tipo de avería"],
+ [ 25, "Código de error"],
+ [ 26, "Not translated yet"],
+ [ 27, "Temp. de condensación objetivo"],
+ [ 28, "Caída de la temperatura de descarga"],
+ [ 29, "Reintentos protección temp. descarga"],
+ [ 30, "Caida de corriente compresor INV"],
+ [ 31, "Reintentos protección corriente INV"],
+ [ 32, "HP drop control"],
+ [ 33, "Reintentos protección HP"],
+ [ 34, "Control caida Baja Presión"],
+ [ 35, "Reintentos proteccion Baja Presión"],
+ [ 36, "Control caida temp. Frec INV"],
+ [ 37, "Reintentos protección temp. Frec INV"],
+ [ 38, "Otro de control de caída"],
+ [ 39, "No se utiliza"],
+ [ 40, "U/Ext. EEPROM (1er dígito)"],
+ [ 41, "U/Ext. EEPROM (3er 4º dígito)"],
+ [ 42, "U/Ext. EEPROM (5º 6º dígito)"],
+ [ 43, "U/Ext. EEPROM (7º 8º dígito)"],
+ [ 44, "U/Ext. EEPROM (10º dígito)"],
+ [ 45, "U/Ext. EEPROM (11º dígito)"],
+ [ 46, "NextDataGrid"],
+ [ 47, "Temp. Ambiente exterior (R1T)"],
+ [ 48, "Temp. Intercambiador U/Ext"],
+ [ 49, "Temp. del tubo de descarga"],
+ [ 50, "Temp. Tubo de aspiración"],
+ [ 51, "Temp. Media Intercambiador U/Ext"],
+ [ 52, "Temp. tubo de líquido (R6T)"],
+ [ 53, "Presión alta"],
+ [ 54, "Presión alta(T)"],
+ [ 55, "Presión"],
+ [ 56, "Presión(T)"],
+ [ 57, "Corriente primaria del INV (A)"],
+ [ 58, "Corriente secundaria del INV (A)"],
+ [ 59, "Temperatura de la aleta del INV"],
+ [ 60, "Fan1 Fin temp."],
+ [ 61, "Fan2 Fin temp."],
+ [ 62, "Temperatura de salida del compresor"],
+ [ 63, "NextDataGrid"],
+ [ 64, "Frecuencia del INV (rps)"],
+ [ 65, "Ventilador 1 (nivel)"],
+ [ 66, "Ventilador 2 (nivel)"],
+ [ 67, "Válvula de expansión1 (pls)"],
+ [ 68, "Válvula de expansión2 (pls)"],
+ [ 69, "Válvula de expansión3 (pls)"],
+ [ 70, "Válvula de expansión4 (pls)"],
+ [ 71, "Válvula de 4 vías"],
+ [ 72, "Calentador del cárter"],
+ [ 73, "Not translated yet"],
+ [ 74, "Not translated yet"],
+ [ 75, "Not translated yet"],
+ [ 76, "In-Out separator"],
+ [ 77, "Temp. Tubo de aspiración"],
+ [ 78, "Temperatura del intercambiador de calor exterior"],
+ [ 79, "Temp. tubo de líquido"],
+ [ 80, "Presión"],
+ [ 81, "Válvula de expansión3 (pls)"],
+ [ 82, "U/ext. MPU ID"],
+ [ 83, "U/ext. MPU ID"],
+ [ 84, "HPS activado"],
+ [ 85, "Operación de salvaguardia"],
+ [ 86, "Calentador del cárter"],
+ [ 87, "Not translated yet"],
+ [ 88, "Not translated yet"],
+ [ 89, "Not translated yet"],
+ [ 90, "Válvula de 4 vías (Y1S)"],
+ [ 91, "52C Output"],
+ [ 92, "Caída de la temperatura de descarga"],
+ [ 93, "Durante la operación de emergencia"],
+ [ 94, "Indicador de explosión de la unidad interior a 50 ° C"],
+ [ 95, "Bit potente (bit de ajuste MT)"],
+ [ 96, "Temperatura del puerto del compresor"],
+ [ 97, "(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"],
+ [ 98, "(Datos brutos)Temperatura de salida del intercambiador de calor de agua."],
+ [ 99, "Electroválvula de líquido INJ (Y4S)"],
+ [ 100, "Calentador de la placa inferior"],
+ [ 101, "Calentador de PHE"],
+ [ 102, "Temperatura de descarga objetivo"],
+ [ 103, "Temperatura objetivo del puerto"],
+ [ 104, "Ajuste Monobloc"],
+ [ 105, "Ajuste Minichiller"],
+ [ 106, "Ajuste MT"],
+ [ 107, "Ajuste GSHP"],
+ [ 108, "Ajuste Hydro split"],
+ [ 109, "Ajuste Altherma LT"],
+ [ 110, "Activación/desactivación datos"],
+ [ 111, "Dirección U/Int."],
+ [ 112, "Modo func. U/Int"],
+ [ 113, "Termostato ON/OFF"],
+ [ 114, "Protección de congelación"],
+ [ 115, "Modo silencioso"],
+ [ 116, "Protección de congelación tuberías"],
+ [ 117, "Código de error"],
+ [ 118, "Código de error detallado"],
+ [ 119, "Tipo de avería"],
+ [ 120, "Código de capacidad U/Int"],
+ [ 121, "Consigna ACS"],
+ [ 122, "Consigna TAI (principal)"],
+ [ 123, "Conmutador de flujo del agua"],
+ [ 124, "Protector térmico (Q1L) BUH"],
+ [ 125, "Protector térmico BSH"],
+ [ 126, "Modo tarifa reducida"],
+ [ 127, "Entrada solar"],
+ [ 128, "No se utiliza"],
+ [ 129, "No se utiliza"],
+ [ 130, "Modo bivalente"],
+ [ 131, "Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"],
+ [ 132, "Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"],
+ [ 133, "Resistencia BSH"],
+ [ 134, "Resistencia BUH etapa 1"],
+ [ 135, "Resistencia BUH etapa 2"],
+ [ 136, "Válvula de cierre de suelo radiante"],
+ [ 137, "Funcionamiento bomba"],
+ [ 138, "Salida bomba solar"],
+ [ 139, "Código de opción interior"],
+ [ 140, "U/Int software ID (xx)"],
+ [ 141, "U/Int software ID (yy)"],
+ [ 142, "U/Int EEPROM Ver."],
+ [ 143, "Activación/desactivación datos"],
+ [ 144, "Dirección U/Int."],
+ [ 145, "Temp. Impulsión antes de BUH (R1T)"],
+ [ 146, "Temp. Impulsión después de BUH (R2T)"],
+ [ 147, "Temp. Refrigerante líquido (R3T)"],
+ [ 148, "Temp. Retorno (R4T)"],
+ [ 149, "Temp. Deposito ACS (R5T)"],
+ [ 150, "Temperatura ambiente interior (R1T)"],
+ [ 151, "Temp. Ambiente Ext/Int opcional (R6T)"],
+ [ 152, "Activación/desactivación datos"],
+ [ 153, "Dirección U/Int."],
+ [ 154, "Recalentamiento ON/OFF"],
+ [ 155, "Almacenamiento ECO ON/OFF"],
+ [ 156, "Almacenamiento Confort ON/OFF"],
+ [ 157, "Modo Powerful ACS (ON/OFF)"],
+ [ 158, "Calefacción/Regrigeración (ON/OFF)"],
+ [ 159, "Sistema OFF (ON=Sistema apagado)"],
+ [ 160, "No se utiliza"],
+ [ 161, "Modo emergencia (interior) activado / no activado"],
+ [ 162, "Consigna TAI (adicional)"],
+ [ 163, "Consigna TH ambiente"],
+ [ 164, "TH Ext. Refrigeración(adicional)"],
+ [ 165, "TH Ext. calefacción(adicional)"],
+ [ 166, "TH Ext. Refrigeración(principal)"],
+ [ 167, "TH Ext. Calefacción(principal)"],
+ [ 168, "Límite consumo de energía 4"],
+ [ 169, "Límite consumo de energía 3"],
+ [ 170, "Límite consumo de energía 2"],
+ [ 171, "Límite consumo de energía 1"],
+ [ 172, "Ninguno"],
+ [ 173, "No se utiliza"],
+ [ 174, "No se utiliza"],
+ [ 175, "Calentador de PHE"],
+ [ 176, "Precalentamiento del depósito ON/OFF"],
+ [ 177, "Salida bomba ACS"],
+ [ 178, "Salida de alarma"],
+ [ 179, "Salida calefacción/refrigeración"],
+ [ 180, "Caudalímetro (l/min)"],
+ [ 181, "Presión de agua"],
+ [ 182, "Señal bomba (0:máx-100stop)"],
+ [ 183, "V3V mezcladora 1"],
+ [ 184, "V3V mezcladora 2"],
+ [ 185, "Sensor de presión de refrigerante"],
+ [ 186, "Activación/desactivación datos"],
+ [ 187, "Dirección U/Int."],
+ [ 188, "U/Int. EEPROM (3er dígito)"],
+ [ 189, "U/Int. EEPROM (4º 5º dígito)"],
+ [ 190, "U/Int. EEPROM (6º 7º dígito)"],
+ [ 191, "U/Int. EEPROM (8º 9º dígito)"],
+ [ 192, "U/Int. EEPROM (11º dígito)"],
+ [ 193, "U/Int. EEPROM (12º dígito)(rev.)"],
+ [ 194, "No se utiliza"],
+ [ 195, "No se utiliza"],
+ [ 196, "No se utiliza"],
+ [ 197, "No se utiliza"],
+ [ 198, "No se utiliza"],
+ [ 199, "Capacidad de salida BUH"],
+ [ 200, "Medición del sensor CT (L1)"],
+ [ 201, "Medición del sensor CT (L2)"],
+ [ 202, "HP forzado FG"],
+ [ 203, "Medición del sensor CT (L3)"],
+ [ 204, "Activación/desactivación datos"],
+ [ 205, "Dirección U/Int."],
+ [ 206, "Not translated yet"],
+ [ 207, "Desescarche"],
+ [ 208, "Modo Powerfull activado"],
+ [ 209, "Prioridad ACS requerida"],
+ [ 210, "Not translated yet"],
+ [ 211, "Add pump"],
+ [ 212, "Main pump"],
+ [ 213, "Not translated yet"],
+ [ 214, "BE_COP"],
+ [ 215, "Temperatura objetivo de calentamiento híbrido"],
+ [ 216, "Temperatura objetivo para calentar la caldera"],
+ [ 217, "Add pump"],
+ [ 218, "Main pump"],
+ [ 219, "Temperatura del agua mezclada"],
+ [ 220, "2nd Domestic hot water temperature"],
+ [ 221, "Target delta T heating"],
+ [ 222, "Target delta T cooling"]
+ ]
+}
\ No newline at end of file
diff --git a/doc/Daikin I protocol.md b/doc/Daikin I protocol.md
index 36a76fbd..f82d2d87 100644
--- a/doc/Daikin I protocol.md
+++ b/doc/Daikin I protocol.md
@@ -1,3 +1,7 @@
+![](doc/images/logo.png)
+
+# Daikin I protocol
+
### Serial protocol
BaudRate = 9600
DataBits = 8
@@ -8,7 +12,7 @@
Eg: 03-40-60-5C
0 1 2 3
-
+
Pos 0: Length of the command (-1 for the checksum)
Pos 1: 40, always.
@@ -50,7 +54,7 @@ From the /include/ALTHERMAxxx.h the registry 0x61 contains the following labels:
{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-Label format: {int registryIDp, int offsetp, int convidp, int dataSizep, int dataTypep, const char *labelp}
+Label format: {int registryIDp, int offsetp, int convidp, int dataSizep, int dataTypep, const char *labelp}
Offset: position of the value in the registry (starting at byte 4)
Datatype: 1: temperature in (C), 2: pressure in (kgcm2), -1: everything else
@@ -72,7 +76,7 @@ eg:
F9-00 - The registrys description tells us that for registry 0x21 we have uint16 at offset 0 an **A**nalog value
`105,,0,0x21,A,-1,437,INV primary current (A)`
-So F9-00 codes for the *INV primary current (A)*. F9-00 little endian is 249.
+So F9-00 codes for the *INV primary current (A)*. F9-00 little endian is 249.
ConvID 105 tells us to divide by 10, we get 24.9 Amp.
### CRC
@@ -101,7 +105,7 @@ char buf[] = {8,33,73,0,1,1,5,5,0x81};
write
LEN 33 70 0 OPCODE=1 OPERAND=1 PAGEN SETTINGN DATADATA CRC
-receive 8
+receive 8
```c#
private long r_Comm_Fcom_Opcode()
diff --git a/doc/Daikin S protocol.md b/doc/Daikin S protocol.md
index 0453e1f6..2bbdbf96 100644
--- a/doc/Daikin S protocol.md
+++ b/doc/Daikin S protocol.md
@@ -1,3 +1,7 @@
+![](doc/images/logo.png)
+
+# Daikin S protocol
+
Some HP (older Daikin and Rotex?) use a slightly simpler protocol: Daikin S protocol.
It seems to be the case for [DAIKIN EKHBH016BA6WN year 2009](https://github.com/raomin/ESPAltherma/issues/46) and is confirmed on my 2009 Rotex RDLQ014AA6V3.
diff --git a/doc/FAQ.md b/doc/FAQ.md
new file mode 100644
index 00000000..754567f9
--- /dev/null
+++ b/doc/FAQ.md
@@ -0,0 +1,75 @@
+![](images/logo.png)
+
+# FAQ
+
+## Great! I can now monitor my heat pump! Can I change the configuration values too?
+
+Not directly. It might be possible to change registry values using the serial port but I'm not aware of this. If you know, comment on [the dedicated issue](/../../issues/1).
+
+However, ESPAltherma, supports an extra GPIO to control a relay that you can plug as *external On/Off thermostat*. See [**Controling your Daikin Altherma heat pump**](#controling-your-daikin-altherma-heat-pump).
+
+If you want to configure your heat pump using an arduino, you can interact with the P1P2 serial protocol (the one of the digital thermostats) using the [nice work on P1P2Serial](https://github.com/Arnold-n/P1P2Serial) of Arnold Niessen.
+
+## Where can I get more info on the protocol used?
+
+It took quite some time to reverse engineer the protocol. If you're interested, I documented my findings [here](doc/Daikin%20I%20protocol.md).
+
+## Is it safe? Can I break my machine?
+
+It is as safe as interacting with a serial port can be. Pretty safe if you are a bit careful. Use is entirely at your own risk. No liability.
+
+## Why not using the Daikin LAN adapter?
+
+Of course you can probably achieve the same with the BRP069A62 adapter. However, it is expensive, not wifi and less fun than doing it yourself :)
+
+## I selected a value but it is always returning 0 (or OFF)
+
+The definition files contains values for a range of product. It is possible that some of the values are not implemented in your specific heat pump.
+
+If it says 'conv XXX not avail.' it is that I did not implement this specific conversion of value. If you need this value, create an issue and I'll implement it.
+
+## What is the meaning of this value?
+
+Some times the names of the values can be cryptic. Sometimes, the names are more informative on other models: You can look for the registry in other model this can give you a hint. Eg.: One one file `0x62,15` is `"Pressure sensor"` => on the other `0x62,15` is `"Refrigerant pressure sensor"`.
+
+I'm not an expert in heat pump, so I don't understand all possible values. Collectively however, I'm sure that we can understand a lot.
+
+I created [a page in the WIKI](https://github.com/raomin/ESPAltherma/wiki/Information-about-Values). You can add your comments on the register values and suggest possible better names!
+
+## My Daikin heat pump is not an Daikin Altherma. Can I still control it?
+
+No, ESPAltherma supports only Altherma protocol. Other (AC only) units also have a serial port but using other protocols that would require extra reverse engineering to be implemented.
+
+## How can I update ESPAltherma remotely?
+
+Yes! ESPAltherma source code is upgraded often. Your ESPAltherma can be updated Over-The-Air without having to unplug it from the heat pump:
+
+1. Download the updated code from the repository (or pull new changes) and report your configuration.
+2. Open platformio.ini and uncomment the following line on your specific environment:
+
+```ini
+upload_port = ESPAltherma.local
+```
+
+With this parameter, the upload will happen over wifi. Note: your local firewall should allow incoming connection ; also, it can fail from time to time, if it happens just relaunch update.
+
+## I'm using OpenHAB (or others) can I get the values in separated MQTT topics?
+
+Yes, ESPAltherma now supports sending each value to a specific topic in addition to sending a complete JSON on the main topic.
+To activate this specific feature uncomment the following lines from `src/setup.h`
+
+```c++
+//Uncomment this if you want to activate the One Value <-> One Topic mode. Each value will be sent to a specific topic below
+#define ONEVAL_ONETOPIC
+#define MQTT_OneTopic "espaltherma/OneATTR/" //Keep the ending "/" !!
+```
+
+Now each value will be published in `espaltherma/OneATTR/[valuename]` eg `espaltherma/OneATTR/Boiler Heating Target Temp.`
+
+## How can I contribute?
+
+Every contribution to this project is highly appreciated! Don't fear to create issues to report possible bugs or feature request. Pull requests which enhance or fix ESPAltherma are also greatly appreciated for everybody!
+
+If this project is useful to you, and if you want, [you can buy me a beer](https://www.buymeacoffee.com/raomin) ! It feels good and really helps improving ESPAltherma. Thanks :)
+
+You can also [sponsor this project](https://github.com/sponsors/raomin/) (ie regular beers :)) and become an official supporter of ESPAltherma and get your badge on this page!
\ No newline at end of file
diff --git a/doc/GettingStarted.md b/doc/GettingStarted.md
new file mode 100644
index 00000000..c15f0e73
--- /dev/null
+++ b/doc/GettingStarted.md
@@ -0,0 +1,262 @@
+![](images/logo.png)
+
+# Getting started
+
+## Step 1: Uploading the firmware from source code
+
+1. Download the repository folder and open it in PlatformIO. When opening the project all required components and plugins will be downloaded and installed by PlatformIO.
+
+2. Optional - If you are using an **M5StickC** (or M5Stack), select the corresponding environment from the status bar:
+Click ![end m5](images/defaultenv.png) and select **env:M5StickC** on the top. The status bar should display ![end m5](images/m5envv.png)
+For **M5StickCPlus** select **env:M5StickCPlus**
+If you are using an **ESP8266** select the `nodemcuv2` environement.
+
+3. You're ready to go! Connect your ESP32/ESP8266 and click -> Upload! Or press `F1` and select -> `PlatformIO: Upload`
+
+## Step 2: Build X10A and CAN definition files
+
+The parameter and command definitions are stored in a template format. To generate a fully useable .json file for upload and use on the X10A or CAN bus, please execute the following commands in the "PlatformIO Core CLI". Press `F1` and select -> `PlatformIO: Open PlatformIO Core CLI` to open the terminal, then enter the commands below:
+
+```bash
+python scripts/build_x10a_commands.py
+python scripts/build_can_commands.py
+```
+
+You will receive output indicating which files are generated. These generated files can be found in the `build` folder, along with a subfolder named either `CAN` or `X10A`. These files are ready for upload and use.
+
+## Step 3: Configure/Setup your ESPAltherma
+
+By default, ESPAltherma will generate an open WiFi network named `ESPAltherma-Config-WiFi`. Connect to the WiFi network, open your browser, and enter the following URL to access the configuration page: `http://192.168.1.1/`.
+![](images/webUIConfigPage.png)
+
+Take the changes you need an click on `SAVE CONFIG` on the bottom. If all fields are field with valid input, the config will be sendet to ESPAltherma. This will restart ESPAltherma with the new config. If some fields are not contain valid informations, the saving will be canceld and the bad field marked with a red flag. To get a better description and overview of the options, here is a brief list and description of them:
+
+
+ Network
+
+![](images/webUINetwork.png)
+
+Here you can choose if ESPAltherma should generate an own WiFi signal or connect to a router.
+
+When `Use standalone WiFi` is disabled, near Wifi in range can be scanned by clicking on the blue arrow button to the right. The process will be done in background from ESPAltherma and reported back when finished. During this process, the generated WiFi signal from ESPAltherma will be disabled and enabled again when the process is finished. Please make sure to connect again to the signal, if not done automaticaly, to recieve the scan results and get them dispaly in the dropdown field.
+
+By default, ESPAltherma will use DHCP. You can assign a fixed IP and DNS Server by checking the option `WIFI use static IP`
+
+
+
+ MQTT
+
+![](images/webUIMQTT.png)
+
+ESPAltherma needs a MQTT-Broker to commmunicate with external devices and services - its one of its core functions. Please enter the Server, Username and Passwort information. If you enter `localhost` or `127.0.0.1` as server name, this will generated an internal loopback service and no communication over MQTT will be done. This options are more for testing and debug then to use in productiv enviroment.
+
+You can also enter the topic name ESPAltherma will use. All transmitions from ESPAltherma will use this topic name as the root element and subscription will be also done this way for setting values like Ports, Relays, Bus-Calls, ...
+
+The Frequency defines how often MQTT messages with current values will be transmitted over the MQTT-Broker
+
+
+
+ Pins
+
+![](images/webUIPins1.png)
+
+ESPAltherma supports multiple services that can be connected to it over the GPIO's. Those services are:
+- [ESPAltherma reset pin](#espaltherma-reset-pin)
+- [X10A-Bus](#config-section-x10a)
+- [Heating and cooling control over pins](#heating-and-cooling-control)
+- [SmartGrid control over pins](#smartgrid-control)
+- [CAN-Bus](#config-section-can)
+
+#### ESPAltherma reset pin
+
+When the selected pin gets connected to ground, the current configuration will be changed. ESPAltherma will be restarted with Standalone WiFi enabled. This change will be permanent until config is updated again.
+
+#### Heating and Cooling control
+
+When enabled, the selected pin for heating and cooling will be setted to HIGH or LOW over MQTT. To set the pin a MQTT publish needs to be done on the configured MQTT root topic and `SET/HEATING` or `SET/COOLING` with payload `ON` or `OFF`.
+
+As example: `espaltherma/SET/HEATING` with payload `ON` will enable heating pin.
+
+More information will you find [here](#section-controling-heatpump)
+
+#### SmartGrid control
+
+The selected pins can be setted to HIGH or LOW over MQTT. To set the pin a MQTT publish neds to be done on the configured MQTT root topic and `SET/SG` with payload `0` to `3`.
+
+As example: `espaltherma/SET/SG` with payload `3` will enable SmartGrid Mode `Force ON`.
+
+More information will you find [here](#section-controling-smartgrid)
+
+
+
+ X10A
+
+![](images/webUIX10A.png)
+
+On the pins section, select your RX TX GPIO pins connected to the X10A port. *The ESP32 has 3 serial ports. The first one, Serial0 is reserved for ESP<-USB->PC communication and ESP Altherma uses the Serial0 for logging (as any other project would do). So if you open the serial monitor on your PC, you'll see some debug from ESPAltherma. ESP32 can map any GPIO to the serial ports. Do NOT use the main Serial0 GPIOs RX0/TX0.* * The ESP8266 only has 1.5 Serial ports so it uses a software based serial driver. You can choose any pins, but some will stop you from being able to use the console*
+
+For ESP32 try to stick to the RX2/TX2 of your board (probably GPIO16/GPIO17). **For M5StickC or M5StickCPlus, 26 and 36 will automatically be used if you selected the corresponding environment**. For ESP8266 pins 4 & 5 (D2 & D1 on the NodeMCUv2) are known to work well.
+
+To start the communication you need to upload a parameters file and select commands from it or define custom commands to be used, that will be readed and transfered over MQTT.
+
+By default the `Protocol I` is selected to be used. Some older heat pumps use a different protocol (`Protocol S`). A closer description, witch protocol needs to be used, may be found inside the parametes file of the model.
+
+1. Under `Upload Parameters file` select the parameters file to upload and click the `Upload` button. The files needs to be generated (see [here](#section-generate-definition-files)). Select a file under the folder `build/X10A/` for upload. Each known model has an own parameters file in .json format. The default language available is `English` but other translation exists too. If a translation for you language exists, you will find it in the corresponding folder.
+
+*If you're not sure which one to take, choose the closest or Default.h. The only thing that could happen is that you would have missing values, null values or wrong label names.*
+
+2. After upload the dropdown-list next to the Upload section will be filled with new options. Select the `Model`, `Language` and a `Preset`. The Preset `All` will list available parameters in the selected file. Other presets will filter the List based on definition inside the uploaded file. Once a Preset is selected, a list of availbable commands will pop up to the side (`Parameters` List). Select the parameters needed to be scanned and transmitted by click on them with the left mouse and confirm the selection by clicking the button `Add to selected parameters`. The choosen parameters will be shown now on the right side (`Selected Parameters` List).
+
+A wiki page is available [here](https://github.com/raomin/ESPAltherma/wiki/Information-about-Values) where everyone can comment on the values and their definition.
+
+3. Optional - To test the parametes or see there values, you can start fetch them once and see a live result. This allows to test the parameters file and the parameters defined in in. Todo so, click the button `Load model values` on one of the lists.
+
+4. Optional - You can add custom parameters to if a parameter is missing in a certain parametes file. You can also combine files by select one, add the needs parameters, switch to the next parameters file and add the parameters either.
+
+5. You're ready to go! Connect your ESP32/ESP8266 and you should see MQTT messages
+
+
+
+ CAN-Bus
+
+![](images/webUIPins2.png)
+
+ESPAltherma supports control over the CAN-Bus of the heatpump. Reading values and sending of commands are supported. To support a CAN-Bus (TWAI) protocol a external controller or transciever needs to be used. Either needs the controller or transciever support the selected kbps for the CAN-Bus. Supported chips are at the moment build in `SJA1000`(*please be aware of the different capatilities of your ESP32-Board and the revision*), `MCP2515` and `ELM327`.
+
+Please select the corrosponding chip and pins under the `Pins` config section.
+
+![](images/webUICAN.png)
+
+Once CAN-Bus is enabled under the `Pins` config section, the section `CAN-Bus` will be available. You can choose the CAN-Bus speed of your heat pump (by default 20 kbps) and enter a MQTT topic name where the values will be published (MQTT root topic name plus the entered CAN topic name).
+
+The poll mode allows to select, if and how values will be fetched from CAN-Bus. If you want to get each X seconds the selected commands values, enable it by select `Auto` and enter a `Poll time in seconds`.
+
+
+1. Under `Upload CAN-Bus definition file` select the commands file to upload and click the `Upload` button. The files needs to be generated (see [here](#section-generate-definition-files)). Select a file under the folder `build/CAN/` for upload. Each known model has an own commands file in .json format. The default language available is `English` but other translation exists too. If a translation for you language exists, you will find it in the corresponding folder.
+
+2. After upload the dropdown-list next to the Upload section will be filled with new options. Select a `Model` and `Language` from the dropdown. Once selected, a list of available commands will pop up to the side (`Available Commands:` List). Select the commands needed to be scanned and transmitted by click on them with the left mouse and confirm the selection by clicking the button `Add to selected commands`. The choosen commands will be shown now on the right side (`Selected Commands` List).
+
+3. Optional - To test the parametes or see there values, you can start fetch them once and see a live result. This allows to test the commands file and the commands defined in in. Todo so, click the button `Load model values` on one of the lists.
+
+4. Optional - to send commands over CAN, you need to publish it over MQTT. Generate your message with MQTT root topic name plus `SET/` plus the entered CAN topic name plus the `Name` of the command. The payload will be transfered over CAN and converted to the correct bytes based on the datatyp of the given command.
+
+Example to enable `Quiet Mode`: `espaltherma/SET/CAN/quiet_mode` with payload `1`
+
+5. Optional - You can add custom commands to if a parameter is missing in a certain parametes file. You can also combine files by select one, add the needs commands, switch to the next commands file and add the commands either.
+
+6. You're ready to go! Connect your ESP32/ESP8266 and you should see CAN messages
+
+
+
+ Export/Import
+
+![](images/webUIExport_Import.png)
+
+Here you can save your current config and import an already stored config file. All configuration, including commands, will be exported and restored.
+
+
+
+ Update
+
+![](images/webUIUpdate.png)
+
+If a new Firmware is released, the compiled binary can be flashed by select it click `Start update` button
+
+
+
+ Web Serial
+
+
+
+This view shows debug and test informations. It allows to set the status of ESPAltherma. Also will you get the `CAN-Sniffing` results if enabled.
+
+
+## Step 4: Connecting to the Heat pump
+
+1. Turn OFF your heat pump at the circuit breaker.
+2. Unscrew your pannel to access the main PCB of your unit.
+3. Localize the X10A connector on your the PCB. This is the serial port on the main PCB. If your installation include a bi-zone module, the X10A port is occupied with a connector to the Bi-Zone module. You should then connect to the X12A port on the bi-zone module. Pins are identical to the X10A.
+4. Using the 5 pin connector or 4 Dupont wires, connect the ESP as follow. Pay attention to the orientation of the socket.
+
+### Daikin Altherma 4 pin X10A Connection
+
+![The X10A connector](images/schematics.png)
+
+| X10A | ESP32 |
+| ---- | ----- |
+| 1-5V | 5V - VIN *Can supply voltage for the ESP :)* |
+| 2-TX | `RX_PIN` *Default GPIO 16. Prefer RX2 of your board.* |
+| 3-RX | `TX_PIN` *Default GPIO 17. Prefer TX2 of your board.* |
+| 4-NC | Not connected |
+| 5-GND | GND |
+
+> ESP `RX_PIN` `TX_PIN` can be changed in `src/setup.h`.
+
+### 8 pin X10A Connection
+
+Some heat pumps (ROTEX) have an X10A port which connects differently:
+
+![](images/rotexX10A.png)
+
+Pin 1 (on the left in the picture) is +5v. Some users reported that the 5V from their ROTEX was not strong enough to power their ESP32/ESP8266. In this case, use an USB charger to power the ESP32/ESP8266. The 5V from the X10A is then not needed.
+
+Whatever you do, **make sure you keep a wire connecting the GND of the ESP32/ESP8266 to the GND pin of the X10A (even if you power your ESP32/ESP8266 with a USB charger)!!**
+
+
+5. Cross check twice the connections and turn on your heat pump. Two new entities AlthermaSensor and AlthermaSwitch should appear in Home Assistant. AlthermaSensor holds the values as attributes.
+
+You can also monitor values and debug messages on your MQTT server:
+
+```bash
+$ mosquitto_sub -v -t "espaltherma/#"
+```
+
+or via Home Assistant Configuration->Integration->MQTT Configure->Listen to topic espaltherma/# -> Start Listening
+
+## Step 5 (optional) - Controling your Daikin Altherma heat pump
+
+ESPAltherma cannot change the configuration values of the heat pump (see [FAQ](#faq)). However, ESPAltherma can control a relay on MQTT that can simulate an *external On Off thermostat*. Doing so allows to remotely turn on/off the heating function of your heat pump. A second relay can be used to trigger the cooling function.
+
+Refer to the schematic map of your heat pump to see where to connect *external On Off thermostat*.
+
+Adding this will take priority on your thermostat. ESPAltherma will turn the heating on/off ; the thermostat will be in standby.
+
+Note: I resoldered the J1 jumper that was cut when installing my digital thermostat (not sure if it is needed) and configured my *type of thermostat* as *External thermostat*
+
+Once installed the setup looks like this:
+
+![](images/installation.png)
+
+Other users installations are described [in this issue](/../../issues/17).
+
+On a Rotex this would connect to J16 Pin 1 and 2. Note: RT needs to be switched ON in the heatpump Connection menu. Heating will be ON if pins are connected, else no heating, so connect to the NC (normally closed) of the relay.
+
+## Step 6 (optional) - Smart grid features
+ESPaltherma can also integrate with SG-Ready options of your heat pump. To do so, uncomment and configure `PIN_SG1` and `PIN_SG2` in `src/setup.c` and send one of the allowed values (0..3) to MQTT channel `espaltherma/sg/set`. Current SG mode will be available in `espaltherma/sg/state`.
+
+Of course, you will need to use 2 more relays to open/close SG1 and SG2 contacts of your heat pump.
+
+I found that using 5V supply pin of X10A provides enough power for my ESP32 and both relays, but your mileage may vary.
+
+On a Rotex SG1 and SG2 contacts are located in J8 connector, pin 5-6 (Smart Grid) and 11-12 (EVU) respectively.
+
+Once configured and connected, your heat pump will work like this:
+
+| sg/set value| SG1 | SG2 | SG-Mode | Working mode | Typical result |
+| ----------- | ----- | ----- | -------------------- | ------------ | -------------- |
+| 0 | open | open | 0 - normal operation | normal working mode | HP works like if SG features are disabled/not used |
+| 1 | open | close | 1 - Forced OFF | Hp is forced OFF | Heating and DHW will be turned OFF - *Beware that your comfort may be negatively affected by this working mode* |
+| 2 | close | open | 2 - Recommended ON | Hp is recommended to be ON | HP will increase DHW setpoint as well as LW setpoint (documentation says +5 °C, but my tests actually show +6 °C) |
+| 3 | close | close | 3 - Force ON | Hp is forced ON | HP will increase DHW setpoint and will use its full power to heat DHW (to 70 °C) |
+
+*Note that In SG3 mode your HP will really be power hungry so make sure to enable it only when electricity cost is low (ideally free) or be prepared to get a high bill!*
+
+Depending on your HP model, SG3 might be configurable in "ECO mode", "Normal mode" or "Comfort mode". The mode can be set using the specialist code Main Menu > Settings > Input/Output.
+
+| SG-Mode | Description |
+| ------- | ----------- |
+| Comfort mode | Increase of the hot water set temperature by 5 K. |
+| Normal mode | Increase of flow set temperature by 2 K and hot water set temperature by 5 K. |
+| ECO mode | Increase the flow set temperature by 5 K and hot water set temperature by 7 K. |
+
+Note: Smart Grid needs to be switched ON in the heatpump configuration menu, otherwise SG1 and SG2 contacts are not evaluated.
\ No newline at end of file
diff --git a/doc/IntegratingHomeAssitant.md b/doc/IntegratingHomeAssitant.md
new file mode 100644
index 00000000..896162e5
--- /dev/null
+++ b/doc/IntegratingHomeAssitant.md
@@ -0,0 +1,92 @@
+![](images/logo.png)
+
+# Integrating with Home Assitant
+
+ESPAltherma integrates easily with Home Assistant using [mqtt discovery](https://www.home-assistant.io/docs/mqtt/discovery/).
+
+After setup, ESPAltherma will generate 2 entities on Home Assistant:
+
+![](images/haentities.png)
+
+- `sensor.althermasensors` holds the values as attributes.
+
+- `switch.altherma` activates the relay connected to the `PIN_THERM`
+
+## Declaring sensor entities
+
+In Home Assistant, all values reported by ESPAltherma are `attribute`s of the `entity` sensor.althermasensors.
+
+![](images/attribs.png)
+
+If you want to integrate specific `attribute`s in graphs, gauge etc. you need to declare them as `sensor`s using `template` in your `configuration.yaml`. See [HA doc on Template](https://www.home-assistant.io/integrations/template/).
+
+Eg. this template declares the 2 operation modes as entities, the DHW tank temperature and the current of the primary inverter:
+
+```yaml
+template:
+ - unique_id: "espaltherma" # will be prefixed to all unique IDs
+ sensor:
+ - name: "Operation mode"
+ unique_id: "operation"
+ state: "{{ state_attr('sensor.althermasensors','Operation Mode') }}"
+ - name: "Indoor Operation mode"
+ unique_id: "iuoperation"
+ state: "{{ state_attr('sensor.althermasensors','I/U operation mode') }}"
+ - name: "DHW Temp"
+ unique_id: "dhw"
+ state: "{{ state_attr('sensor.althermasensors','DHW tank temp. (R5T)') }}"
+ unit_of_measurement: '°C'
+ - name: "Inverter primary current"
+ unique_id: "inv_primary_current"
+ state: "{{ state_attr('sensor.althermasensors','INV primary current (A)') }}"
+ unit_of_measurement: 'A'
+ device_class: current
+```
+
+After restarting Home Assistant, these entities can be added to an history card:
+
+![](images/historycard.png)
+
+## A Climate entity
+
+To control heating through the On/Off switch, declare a Climate (aka thermostat) entity monitoring a temperature sensor.
+
+```yaml
+climate:
+ - platform: generic_thermostat
+ name: Altherma
+ heater: switch.altherma
+ target_sensor: sensor.temproom1
+ min_temp: 15
+ max_temp: 25
+ cold_tolerance: 0.5
+ hot_tolerance: 0.5
+ min_cycle_duration:
+ minutes: 30
+ away_temp: 15
+ precision: 0.1
+```
+
+Then, add a Thermostat card somewhere:
+
+![ha thermostat](images/thermostat.png)
+
+## Calculating COP
+
+The information returned by ESPAltherma allows to calculate the coefficient of performance (COP). It is the ratio of the heat delivered by your heat pump to the energy consumed by it.
+
+When put in terms of ESPAltherma variables, the COP can be define as a sensor like this in the `sensor:` section of Home Assistant:
+
+```yaml
+ - name: "COP"
+ unique_id: "espaltherma_cop"
+ unit_of_measurement: 'COP'
+ state: "{% if is_state_attr('sensor.althermasensors','Operation Mode', 'Heating') and is_state_attr('sensor.althermasensors','Freeze Protection', 'OFF') %}
+{{
+ ((state_attr('sensor.althermasensors','Flow sensor (l/min)')| float * 0.06 * 1.16 * (state_attr('sensor.althermasensors','Leaving water temp. before BUH (R1T)') | float - state_attr('sensor.althermasensors','Inlet water temp.(R4T)')|float) )
+ /
+ (state_attr('sensor.althermasensors','INV primary current (A)') | float * state_attr('sensor.althermasensors','Voltage (N-phase) (V)')|float / 1000))
+ |round(2)
+}}
+{% else %} 0 {%endif%}"
+```
\ No newline at end of file
diff --git a/doc/Prerequisites.md b/doc/Prerequisites.md
new file mode 100644
index 00000000..8fed4e28
--- /dev/null
+++ b/doc/Prerequisites.md
@@ -0,0 +1,15 @@
+![](images/logo.png)
+
+# Prerequisites
+
+## Hardware
+
+- A Daikin Altherma or Daikin Altherma based heat pump (ROTEX, HOVAL Belaria...)
+- An ESP32 or ESP8266 *I recommend an ESP32, more precisely the M5StickC, it has an integrated display, a magnet, fits well next to the board and is properly isolated. But any ESP32 should work. A support is added for esp8266.*
+- 5 pins JST EH 2.5mm connector (or 4 Dupont wires M-F)
+
+## Software
+
+- Platformio
+
+*That's all!*
\ No newline at end of file
diff --git a/doc/Troubleshooting.md b/doc/Troubleshooting.md
new file mode 100644
index 00000000..af0e4345
--- /dev/null
+++ b/doc/Troubleshooting.md
@@ -0,0 +1,40 @@
+![](images/logo.png)
+
+# Troubleshooting
+
+## Specific issues with M5
+
+- If, when using an M5StickC (or M5Stack), the ESP32 is unresponsive, upload fails etc. Make sure that you change the ![default env on pio](images/defaultenv.png) environment to ![end m5](images/m5envv.png) on the status bar. Otherwise the default serial port in setup.h conflicts with the PSRAM of M5.
+
+## Generic issues
+
+Possible generic issues could be: improper wifi signal, unsupported protocol, unsupported GPIOs for Serial (stick to default RX2/TX2).
+
+ESPAltherma generates logs on the main serial port (USB) and on the screen of the M5. Connect to the ESP32 and open the serial monitor on Platformio.
+
+ESPAltherma also generates logs on MQTT. If Wifi and MQTT is not the issue, look at the logs on the topic `espaltherma/log`. You can see them on Home Assistant through Configuration -> Integration -> MQTT -> Config -> Listen to a topic.
+
+## Logs show 'Timeout on register' with value 0x15 0xea or 'Error 0x15 0xEA returned from HP'
+
+`0x15 0xea` is the reply from the heatpump to say it does not understand the protocol.
+If you have an older Altherma heat pump (around 2010 or before) it is probably using the older S protocol.
+To activate it, at the end of `setup.h` change `#define PROTOCOL 'I'` to `#define PROTOCOL 'S'`
+Also select the `def/PROTOCOL_S_ROTEX.h` or `def/PROTOCOL_S.h` definition file.
+
+## Logs show 'Time out! Check connection' 'Wrong CRC on registry...'
+
+This means that the communication is wrong. Usual suspects:
+
+1. Un-conected GND: whatever you do, the GND of the ESP should always be connected to the GND of the Altherma. So, if you power your ESP with a USB charger (or your computer), make sure you also connect the GND from the ESP to your GND of the Altherma.
+2. If not GND, then it's alway the Dupont cable. A faulty dupont cable is a VERY COMMON cause of issue. You can have a perfectly looking cable, they are not the best to do connection on the X10A connector (although much more common than an EH JST 5pin). So, change your cable. You can also use a common 2.54 female long header, plug it to the X10A connector and then your dupont cable to the long pins of the header.
+![pic of header](images/header.png)
+
+## Note on voltage
+
+The serial port of X10A is TTL 5V, where the ESP32 is 3.3V. Your ESP32 might not be 5V tolerant. If you want to play it safe, you should use a level shifter to convert Daikin TX - RX ESP line from 5V to 3.3V.
+
+In practice, I had no problem connecting an ESP32 without level shifters. I also had no issue powering the ESP32 from the 5V line of the X10A. On my Daikin Altherma, 5V is provided by a 7805 with a massive heat sink, plus, there are not many clients for it on the board and the ESPAltherma running on my ESP32 consumes 70ma.
+
+Some users reported that a ROTEX did not have a stable 5v that could be used to power the ESP32. If so, you would need to rely on an external 5V power supply (eg a regular USB charger) to power the ESP32.
+
+If you are using an M5StickC you can select the PlatformIO env:m5stickc (or env_m5stickcplus for that version), then ESPAltherna will also report on the voltage and consumption of the M5StickC in the reported values.
\ No newline at end of file
diff --git a/doc/images/webUICAN.png b/doc/images/webUICAN.png
new file mode 100644
index 00000000..db55febe
Binary files /dev/null and b/doc/images/webUICAN.png differ
diff --git a/doc/images/webUIConfigPage.png b/doc/images/webUIConfigPage.png
new file mode 100644
index 00000000..5b31556f
Binary files /dev/null and b/doc/images/webUIConfigPage.png differ
diff --git a/doc/images/webUIExport_Import.png b/doc/images/webUIExport_Import.png
new file mode 100644
index 00000000..00baefc8
Binary files /dev/null and b/doc/images/webUIExport_Import.png differ
diff --git a/doc/images/webUIMQTT.png b/doc/images/webUIMQTT.png
new file mode 100644
index 00000000..d8e7fe48
Binary files /dev/null and b/doc/images/webUIMQTT.png differ
diff --git a/doc/images/webUINetwork.png b/doc/images/webUINetwork.png
new file mode 100644
index 00000000..22886222
Binary files /dev/null and b/doc/images/webUINetwork.png differ
diff --git a/doc/images/webUIPins1.png b/doc/images/webUIPins1.png
new file mode 100644
index 00000000..d9bd8146
Binary files /dev/null and b/doc/images/webUIPins1.png differ
diff --git a/doc/images/webUIPins2.png b/doc/images/webUIPins2.png
new file mode 100644
index 00000000..ec98f4d8
Binary files /dev/null and b/doc/images/webUIPins2.png differ
diff --git a/doc/images/webUIUpdate.png b/doc/images/webUIUpdate.png
new file mode 100644
index 00000000..7a6c76ed
Binary files /dev/null and b/doc/images/webUIUpdate.png differ
diff --git a/doc/images/webUIWebSerial.png b/doc/images/webUIWebSerial.png
new file mode 100644
index 00000000..2a005f08
Binary files /dev/null and b/doc/images/webUIWebSerial.png differ
diff --git a/doc/images/webUIX10A.png b/doc/images/webUIX10A.png
new file mode 100644
index 00000000..b905cb59
Binary files /dev/null and b/doc/images/webUIX10A.png differ
diff --git a/include/comm.h b/include/comm.h
deleted file mode 100644
index 7173c85a..00000000
--- a/include/comm.h
+++ /dev/null
@@ -1,130 +0,0 @@
-#include
-#include
-#ifdef ARDUINO_ARCH_ESP8266
-#include
-SoftwareSerial MySerial;
-#define SERIAL_CONFIG (SWSERIAL_8E1)
-#define SERIAL_FLUSH_TX_ONLY // empty, as SoftwareSerial.flush() takes no parameter
-#else
-HardwareSerial MySerial(1);
-#define SERIAL_CONFIG (SERIAL_8E1)
-#define SERIAL_FLUSH_TX_ONLY false
-#endif
-#define SER_TIMEOUT 300 //leave 300ms for the machine to answer
-
-unsigned char getCRC(unsigned char *src, int len)
-{
- unsigned char b = 0;
- for (int i = 0; i < len; i++)
- {
- b += src[i];
- }
- return ~b;
-}
-
-void logBuffer(unsigned char *buffer, size_t len)
-{
- char bufflog[250] = {0};
- for (size_t i = 0; i < len; i++)
- {
- sprintf(bufflog + i * 5, "0x%02x ", buffer[i]);
- }
- mqttSerial.print(bufflog);
-}
-
-int get_reply_len(char regID, char protocol='I')
-{
- if (protocol == 'I')
- {
- // Backward compatible behavior. Actual length is dynamic and returned
- // on 3rd byte of the response.
- return 12;
- }
- else
- {
- // Protocol S has hard-coded values based on the requested registry
- switch (regID)
- {
- case 0x50:
- return 6;
- case 0x56:
- return 4;
- default:
- return 18;
- }
- }
-}
-
-bool queryRegistry(char regID, unsigned char *buffer, char protocol='I')
-{
-
- //preparing command:
- unsigned char prep[] = {0x03, 0x40, regID, 0x00};
- prep[3] = getCRC(prep, 3);
- int queryLength = 4;
-
- if (protocol == 'S')
- {
- prep[0] = 0x02;
- prep[1] = regID;
- prep[2] = getCRC(prep, 2);
- prep[3] = 0;
- queryLength = 3;
- }
-
- mqttSerial.printf("Querying register 0x%02x... ", regID);
- //Sending command to serial
- MySerial.flush(SERIAL_FLUSH_TX_ONLY); //Prevent possible pending info on the read
- MySerial.write((uint8_t*) prep, queryLength);
- ulong start = millis();
-
- int len = 0;
- int replyLen = get_reply_len(regID, protocol);
-
- while ((len < replyLen) && (millis() < (start + SER_TIMEOUT)))
- {
- if (MySerial.available())
- {
- buffer[len++] = MySerial.read();
- if (protocol == 'I' && len == 3)
- {
- // Override reply length with the actual one (not counting already read bytes, see doc/Daikin I protocol.md)
- replyLen = buffer[2] + 2;
- }
- // Error reply common to both protocols
- if (len == 2 && buffer[0] == 0x15 && buffer[1] == 0xea)
- {
- // HP didn't understand the command
- mqttSerial.printf("Error 0x15 0xEA returned from HP\n");
- delay(500);
- return false;
- }
- }
- }
- if (millis() >= (start + SER_TIMEOUT))
- {
- if (len == 0)
- {
- mqttSerial.printf("Time out! Check connection\n");
- }
- else
- {
- mqttSerial.printf("ERR: Time out on register 0x%02x! got %d/%d bytes\n", regID, len, replyLen);
- logBuffer(buffer, len);
- }
- delay(500);
- return false;
- }
- logBuffer(buffer, len);
- if (getCRC(buffer, len - 1) != buffer[len - 1])
- {
- mqttSerial.printf("ERROR: Wrong CRC on register 0x%02x. Calculated 0x%2x but got 0x%2x\nBuffer: ",regID, getCRC(buffer, len - 1), buffer[len - 1]);
- logBuffer(buffer,len);
- return false;
- }
- else
- {
- Serial.println(".. CRC OK!");
- return true;
- }
-}
diff --git a/include/def/ALTHERMA(HYBRID).h b/include/def/ALTHERMA(HYBRID).h
deleted file mode 100644
index 6e8cd841..00000000
--- a/include/def/ALTHERMA(HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"O/U Heat Exch. Mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp."},
-//{0x20,12,105,2,1,"INV fin temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,303,1,-1,"Crank case heater 5"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Outlet Water Heat Exch. Temp. (R1T)"},
-//{0x61,4,105,2,1,"Outlet Water BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"RT Temp."},
-//{0x61,14,105,2,1,"Outdoor Ambient or Ext Sensor"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space C/H Op. or BPH"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,2,300,1,-1,"Hybrid DHW operation mode"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/ALTHERMA(LT_CA_CB_04-08KW).h b/include/def/ALTHERMA(LT_CA_CB_04-08KW).h
deleted file mode 100644
index 276f39e2..00000000
--- a/include/def/ALTHERMA(LT_CA_CB_04-08KW).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/ALTHERMA(LT_CA_CB_11-16KW).h b/include/def/ALTHERMA(LT_CA_CB_11-16KW).h
deleted file mode 100644
index 4e44a199..00000000
--- a/include/def/ALTHERMA(LT_CA_CB_11-16KW).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,7,306,1,-1,"4 Way Valve 2"},
-//{0x30,7,305,1,-1,"4 Way Valve 3"},
-//{0x30,7,304,1,-1,"4 Way Valve 4"},
-//{0x30,7,303,1,-1,"4 Way Valve 5"},
-//{0x30,8,307,1,-1,"Crank case heater 1"},
-//{0x30,8,306,1,-1,"Crank case heater 2"},
-//{0x30,8,305,1,-1,"Crank case heater 3"},
-//{0x30,8,304,1,-1,"Crank case heater 4"},
-//{0x30,9,307,1,-1,"SV1 (hot gas)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Solenoid Valve 3"},
-//{0x30,9,304,1,-1,"Solenoid Valve 4"},
-//{0x30,9,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal Protector BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/ALTHERMA(LT_MULTI_DHWHP).h b/include/def/ALTHERMA(LT_MULTI_DHWHP).h
deleted file mode 100644
index 2aa3580c..00000000
--- a/include/def/ALTHERMA(LT_MULTI_DHWHP).h
+++ /dev/null
@@ -1,219 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Defrost prohibition ON/OFF"},
-//{0x62,8,305,1,-1,"Powerful demand"},
-//{0x62,8,304,1,-1,"DHW priority request"},
-//{0x62,8,303,1,-1,"Mode conflict"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/ALTHERMA(LT_MULTI_HYBRID).h b/include/def/ALTHERMA(LT_MULTI_HYBRID).h
deleted file mode 100644
index 086a598a..00000000
--- a/include/def/ALTHERMA(LT_MULTI_HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Defrost prohibition ON/OFF"},
-//{0x62,8,305,1,-1,"Powerful demand"},
-//{0x62,8,304,1,-1,"DHW priority request"},
-//{0x62,8,303,1,-1,"Mode conflict"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,2,300,1,-1,"Hybrid DHW operation mode"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h b/include/def/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
deleted file mode 100644
index 403c9d98..00000000
--- a/include/def/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid temperature(R3T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,405,1,1,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,301,1,-1,"[RT space thermo ON/OFF] (bit1)"},
-//{0x63,12,300,1,-1,"[RT space thermo ON/OFF] (bit0)"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h b/include/def/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
deleted file mode 100644
index 6a1cac4d..00000000
--- a/include/def/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
+++ /dev/null
@@ -1,230 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,215,1,-1,"Not in use"},
-//{0x63,12,215,1,-1,"Not in use"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,1,152,2,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h b/include/def/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
deleted file mode 100644
index a9f75fb1..00000000
--- a/include/def/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
+++ /dev/null
@@ -1,177 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"2 phase thermistor (R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Entering brine temp.(R5T)"},
-//{0x20,10,105,2,1,"Leaving brine temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,152,2,1,"Fan1 Fin temp."},
-//{0x21,8,152,2,1,"Fan2 Fin temp."},
-//{0x21,10,152,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Brine pump feedback"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"4 way valve (Y1S)"},
-//{0x30,13,306,1,-1,"Y2S"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"Indoor Unit Capacity"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,13,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x63,16,307,1,-1,"HP is operation forced OFF by installer"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,-1,"Target delta T heating"},
-//{0x64,15,152,1,-1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(EGSQH-A series 10kW GEO2).h b/include/def/Altherma(EGSQH-A series 10kW GEO2).h
deleted file mode 100644
index cd12fd25..00000000
--- a/include/def/Altherma(EGSQH-A series 10kW GEO2).h
+++ /dev/null
@@ -1,218 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"2 phase thermistor (R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Entering brine temp.(R5T)"},
-//{0x20,10,105,2,1,"Leaving brine temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp.(R10T)"},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"SV (hot Gas)"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,13,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Not in use"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h b/include/def/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
deleted file mode 100644
index 6a32ac83..00000000
--- a/include/def/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
+++ /dev/null
@@ -1,199 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,-1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Brine inlet temp."},
-//{0x21,8,105,2,1,"Brine outlet temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x21,12,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,7,306,1,-1,"4 Way Valve 2"},
-//{0x30,7,305,1,-1,"4 Way Valve 3"},
-//{0x30,7,304,1,-1,"4 Way Valve 4"},
-//{0x30,7,303,1,-1,"4 Way Valve 5"},
-//{0x30,7,302,1,-1,"4 Way Valve 6"},
-//{0x30,7,301,1,-1,"4 Way Valve 7"},
-//{0x30,7,300,1,-1,"4 Way Valve 8"},
-//{0x30,8,307,1,-1,"Crank case heater"},
-//{0x30,9,307,1,1,"Hot gas bypass valve (Y2S)"},
-//{0x30,9,306,1,1,"LP bypass valve (Y3S)"},
-//{0x30,10,112,1,1,"Inlet water temp. (DMW)"},
-//{0x30,11,112,1,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,12,301,1,1,"4 way valve (Y1S)"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h b/include/def/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
deleted file mode 100644
index 9933393c..00000000
--- a/include/def/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"[HPSU] Tv inflow Temp (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh inflow Temp after Buffer/BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,215,1,-1,"Not in use"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h b/include/def/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
deleted file mode 100644
index 5dcde107..00000000
--- a/include/def/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,215,1,-1,"Not in use"},
-//{0x63,12,215,1,-1,"Not in use"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h b/include/def/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
deleted file mode 100644
index b45e2548..00000000
--- a/include/def/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,0,152,1,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h b/include/def/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
deleted file mode 100644
index b45e2548..00000000
--- a/include/def/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,0,152,1,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h b/include/def/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
deleted file mode 100644
index 18ccec9c..00000000
--- a/include/def/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x21,12,105,2,1,"Injection tube temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,0,152,1,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h b/include/def/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
deleted file mode 100644
index 18ccec9c..00000000
--- a/include/def/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x21,12,105,2,1,"Injection tube temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,0,152,1,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h b/include/def/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
deleted file mode 100644
index 817b78ce..00000000
--- a/include/def/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure sensor"},
-//{0x20,14,405,2,1,"Pressure sensor(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"[HPSU] Tv inflow Temp (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh inflow Temp after Buffer/BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"[HPSU] Tr return Temp (R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h b/include/def/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
deleted file mode 100644
index 04d06d0c..00000000
--- a/include/def/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure sensor"},
-//{0x20,14,405,2,1,"Pressure sensor(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h b/include/def/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
deleted file mode 100644
index f0cc2085..00000000
--- a/include/def/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid temperature(R3T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (10 rpm)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve 1"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,301,1,-1,"[RT space thermo ON/OFF] (bit1)"},
-//{0x63,12,300,1,-1,"[RT space thermo ON/OFF] (bit0)"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h b/include/def/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
deleted file mode 100644
index 708194c2..00000000
--- a/include/def/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid temperature(R3T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,405,1,1,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,1,152,1,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h b/include/def/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
deleted file mode 100644
index 11fe3b60..00000000
--- a/include/def/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid temperature(R3T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,405,1,1,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,12,301,1,-1,"[RT space thermo ON/OFF] (bit1)"},
-//{0x63,12,300,1,-1,"[RT space thermo ON/OFF] (bit0)"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h b/include/def/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
deleted file mode 100644
index 10a43d91..00000000
--- a/include/def/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
+++ /dev/null
@@ -1,234 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"[HPSU] Mixed leaving water temperature after the tank R7T (DLWA2)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,1,152,2,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h b/include/def/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
deleted file mode 100644
index 7cba525b..00000000
--- a/include/def/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp.(R4T)"},
-//{0x20,4,105,2,1,"Discharge pipe temp.(R2T)"},
-//{0x20,6,105,2,1,"Suction pipe temp.(R3T)"},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp.(R5T)"},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Hot gas bypass valve (Y3S)"},
-//{0x30,13,306,1,-1,"LP bypass valve (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"Solenoid Valve 2"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"Pump Feedback (bit7)"},
-//{0x62,8,306,1,-1,"Pump Feedback (bit6)"},
-//{0x62,8,305,1,-1,"Pump Feedback (bit5)"},
-//{0x62,8,336,1,-1,"Pump pwm fdbk (0:Stby 1:On 2:warning 3:elec err 4:blocked)"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,105,2,1,"Mixed water temp.(R7T)"},
-//{0x63,10,101,1,-1,"[HPSU] Tank valve position (0:Bypass 100:Tank)"},
-//{0x63,11,101,1,-1,"[HPSU] Bypass valve position (0:Bypass 100:Emitter)"},
-//{0x63,12,323,1,-1,"[HPSU] Tank state (1:preheat 2:support 3:excess)"},
-//{0x63,12,305,1,-1,"[HPSU] Tank DHW bivalent output signal"},
-//{0x63,12,304,1,-1,"[HPSU] Tank DHW bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,303,1,-1,"[HPSU] Tank heating bivalent output signal"},
-//{0x63,12,302,1,-1,"[HPSU] Tank heating bivalent primary heat source (OFF:HP ON:Boiler)"},
-//{0x63,12,317,1,-1,"RT Control State (0:thermo off 1:thermo on 2:buffering)"},
-//{0x63,13,152,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Data Enable/Disable"},
-//{0x65,1,152,2,-1,"Indoor Unit Address"},
-//{0x65,2,105,2,1,"Outlet water heat exchanger temp (hydro split model) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit mixed leaving water temperature R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit mix valve position M1S"},
-};
diff --git a/include/def/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h b/include/def/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
deleted file mode 100644
index 04d06d0c..00000000
--- a/include/def/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure sensor"},
-//{0x20,14,405,2,1,"Pressure sensor(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(LT_CB_04-08kW Bizone).h b/include/def/Altherma(LT_CB_04-08kW Bizone).h
deleted file mode 100644
index 276f39e2..00000000
--- a/include/def/Altherma(LT_CB_04-08kW Bizone).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(LT_CB_11-16kW Bizone).h b/include/def/Altherma(LT_CB_11-16kW Bizone).h
deleted file mode 100644
index 7fe8ea84..00000000
--- a/include/def/Altherma(LT_CB_11-16kW Bizone).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"SV1 (hot gas)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal Protector BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h b/include/def/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
deleted file mode 100644
index 26a3457c..00000000
--- a/include/def/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"Outdoor heat exchanger temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction Pipe Temperature"},
-//{0x20,8,105,2,1,"Outdoor heat exchanger mid temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp."},
-//{0x20,12,105,2,1,"Fin Temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,0,105,2,-1,"INV secondary current (A)"},
-//{0x21,2,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,4,105,2,1,"Brine inlet temp."},
-//{0x21,6,105,2,1,"Brine outlet temp."},
-//{0x21,8,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,10,105,2,1,"Refrig. temp. evap.Out"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Outlet Water Heat Exch. Temp. (R1T)"},
-//{0x61,4,105,2,1,"Outlet Water BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h b/include/def/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
deleted file mode 100644
index 4e44a199..00000000
--- a/include/def/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,307,1,-1,"4 Way Valve 1"},
-//{0x30,7,306,1,-1,"4 Way Valve 2"},
-//{0x30,7,305,1,-1,"4 Way Valve 3"},
-//{0x30,7,304,1,-1,"4 Way Valve 4"},
-//{0x30,7,303,1,-1,"4 Way Valve 5"},
-//{0x30,8,307,1,-1,"Crank case heater 1"},
-//{0x30,8,306,1,-1,"Crank case heater 2"},
-//{0x30,8,305,1,-1,"Crank case heater 3"},
-//{0x30,8,304,1,-1,"Crank case heater 4"},
-//{0x30,9,307,1,-1,"SV1 (hot gas)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Solenoid Valve 3"},
-//{0x30,9,304,1,-1,"Solenoid Valve 4"},
-//{0x30,9,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal Protector BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/DEFAULT.h b/include/def/DEFAULT.h
deleted file mode 100644
index 2426995e..00000000
--- a/include/def/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD Compressor"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,213,1,-1,"O/U MPU ID"},
-//{0x00,11,213,1,-1,"O/U MPU ID"},
-{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,2,307,1,-1,"Other control 1"},
-//{0x10,2,306,1,-1,"Other control 2"},
-//{0x10,2,305,1,-1,"Other control 3"},
-//{0x10,2,304,1,-1,"Other control 4"},
-//{0x10,2,303,1,-1,"Other control 5"},
-//{0x10,2,302,1,-1,"Other control 6"},
-//{0x10,2,301,1,-1,"Other control 7"},
-//{0x10,2,300,1,-1,"Other control 8"},
-//{0x10,3,307,1,-1,"Other control 9"},
-//{0x10,3,306,1,-1,"Other control 10"},
-//{0x10,3,305,1,-1,"Other control 11"},
-//{0x10,3,304,1,-1,"Other control 12"},
-//{0x10,3,303,1,-1,"Other control 13"},
-//{0x10,3,302,1,-1,"Other control 14"},
-//{0x10,3,301,1,-1,"Other control 15"},
-//{0x10,3,300,1,-1,"Other control 16"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Control"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-{0x20,0,105,2,1,"Outdoor air temp."},
-//{0x20,2,105,2,1,"Outdoor heat exchanger temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Outdoor heat exchanger mid temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp."},
-//{0x20,12,105,2,1,"INV fin temp."},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x20,16,105,2,-1,"Sensor data 9"},
-//{0x20,18,105,2,-1,"Sensor data 10"},
-//{0x20,20,105,2,-1,"Sensor data 11"},
-{0x21,0,105,2,-1,"INV primary current (A)"},
-{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,-1,"Sensor data 4"},
-//{0x21,8,105,2,-1,"Sensor data 5"},
-//{0x21,10,105,2,-1,"Sensor data 6"},
-//{0x21,12,105,2,-1,"Sensor data 7"},
-//{0x21,14,105,2,-1,"Sensor data 8"},
-//{0x21,16,105,2,-1,"Sensor data 9"},
-//{0x21,18,105,2,-1,"Sensor data 10"},
-//{0x21,20,105,2,-1,"Sensor data 11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-{0x30,0,152,1,-1,"INV frequency 1 (rps)"},
-{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x30,0,302,1,-1,"Solenoid Valve 6"},
-//{0x30,0,301,1,-1,"Solenoid Valve 7"},
-//{0x30,0,300,1,-1,"Solenoid Valve 8"},
-//{0x30,1,307,1,-1,"Solenoid Valve 9"},
-//{0x30,1,306,1,-1,"Solenoid Valve 10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"Indoor Operation Mode"},
-{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"Indoor Unit Capacity"},
-//{0x60,7,105,2,1,"R/C Setpoint"},
-//{0x60,9,105,2,1,"H/P Outlet Setpoint"},
-//{0x60,11,307,1,-1,"Flow Switch"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon BSH"},
-//{0x60,11,304,1,-1,"HP tariff input"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"3way Valve(Cool/Heat)"},
-//{0x60,12,306,1,-1,"4way Valve(Space/DHW)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"Bottom Plate Heater"},
-//{0x60,12,301,1,-1,"Pump Output"},
-//{0x60,12,300,1,-1,"Solar Output Signal"},
-//{0x60,13,212,1,-1,"Indoor Option Code"},
-//{0x60,14,314,2,-1,"Indoor Software Version"},
-//{0x60,15,212,1,-1,"Indoor EEPROM Version"},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Outlet PHE(R1T)"},
-//{0x61,4,105,2,1,"Outlet BUH(R2T)"},
-{0x61,6,105,2,1,"Liquid temperature(R3T)"},
-{0x61,8,105,2,1,"Inlet temperature(R4T)"},
-{0x61,10,105,2,1,"DHW temperature(R5T)"},
-//{0x61,12,105,2,1,"Remocon thermistor"},
-};
diff --git a/include/def/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h b/include/def/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
deleted file mode 100644
index 403c9d98..00000000
--- a/include/def/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid temperature(R3T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Low Pressure"},
-//{0x20,14,405,2,1,"Low Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"Solenoid Valve 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Solenoid Valve 1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"SmartGridContact2"},
-//{0x60,11,301,1,-1,"SmartGridContact1"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,405,1,1,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x62,15,405,2,1,"Pressure sensor(T)"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,301,1,-1,"[RT space thermo ON/OFF] (bit1)"},
-//{0x63,12,300,1,-1,"[RT space thermo ON/OFF] (bit0)"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h b/include/def/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
deleted file mode 100644
index 7fe8ea84..00000000
--- a/include/def/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,1,"Heat sink temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x20,16,105,2,-1,"Not in use"},
-//{0x20,18,105,2,-1,"Not in use"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,6,307,1,-1,"Brine Flow Switch"},
-//{0x21,6,306,1,-1,"Not in use"},
-//{0x21,6,305,1,-1,"Not in use"},
-//{0x21,6,304,1,-1,"Not in use"},
-//{0x21,6,303,1,-1,"Not in use"},
-//{0x21,6,302,1,-1,"Not in use"},
-//{0x21,6,301,1,-1,"Not in use"},
-//{0x21,6,300,1,-1,"Not in use"},
-//{0x21,7,105,2,1,"Brine inlet temp."},
-//{0x21,9,105,2,1,"Brine outlet temp."},
-//{0x21,11,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,13,105,2,1,"Refrig. temp. evap.Out"},
-//{0x21,15,105,1,-1,"Not in use"},
-//{0x21,16,105,1,-1,"Not in use"},
-//{0x21,17,105,1,-1,"Not in use"},
-//{0x21,18,105,1,-1,"Not in use"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve 1"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater 1"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"SV1 (hot gas)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal Protector BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h b/include/def/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
deleted file mode 100644
index 26a3457c..00000000
--- a/include/def/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Refrigerant type"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"Target Evap. Temp."},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"Outdoor heat exchanger temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction Pipe Temperature"},
-//{0x20,8,105,2,1,"Outdoor heat exchanger mid temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp."},
-//{0x20,12,105,2,1,"Fin Temp."},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,0,105,2,-1,"INV secondary current (A)"},
-//{0x21,2,101,2,-1,"Voltage (N-phase) (V)"},
-//{0x21,4,105,2,1,"Brine inlet temp."},
-//{0x21,6,105,2,1,"Brine outlet temp."},
-//{0x21,8,105,2,1,"Refrig. temp. evap. In"},
-//{0x21,10,105,2,1,"Refrig. temp. evap.Out"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,152,1,-1,"INV frequency 2 (rps)"},
-//{0x30,0,307,1,-1,"STD Compressor 1"},
-//{0x30,0,306,1,-1,"STD Compressor 2"},
-//{0x30,0,211,1,-1,"Fan 1 (step)"},
-//{0x30,1,211,1,-1,"Fan 2 (step)"},
-//{0x30,0,151,2,-1,"Expansion valve (pls)"},
-//{0x30,2,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,4,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,6,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,8,151,2,-1,"Expansion valve 5 (pls)"},
-//{0x30,0,307,1,-1,"4 Way Valve"},
-//{0x30,0,306,1,-1,"4 Way Valve 2"},
-//{0x30,0,305,1,-1,"4 Way Valve 3"},
-//{0x30,0,304,1,-1,"4 Way Valve 4"},
-//{0x30,0,303,1,-1,"4 Way Valve 5"},
-//{0x30,0,307,1,-1,"Crank case heater"},
-//{0x30,0,306,1,-1,"Crank case heater 2"},
-//{0x30,0,305,1,-1,"Crank case heater 3"},
-//{0x30,0,304,1,-1,"Crank case heater 4"},
-//{0x30,0,307,1,-1,"Solenoid Valve 1"},
-//{0x30,0,306,1,-1,"Solenoid Valve 2"},
-//{0x30,0,305,1,-1,"Solenoid Valve 3"},
-//{0x30,0,304,1,-1,"Solenoid Valve 4"},
-//{0x30,0,303,1,-1,"Solenoid Valve 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,314,2,-1,"Indoor Unit Code"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Outlet Water Heat Exch. Temp. (R1T)"},
-//{0x61,4,105,2,1,"Outlet Water BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"Not in use"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,152,1,-1,"Not in use"},
-//{0x62,16,307,1,-1,"Not in use"},
-//{0x62,16,306,1,-1,"Not in use"},
-//{0x62,16,305,1,-1,"Not in use"},
-//{0x62,16,304,1,-1,"Not in use"},
-//{0x62,16,303,1,-1,"Not in use"},
-//{0x62,16,302,1,-1,"Not in use"},
-//{0x62,16,301,1,-1,"Not in use"},
-//{0x62,16,300,1,-1,"Not in use"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,316,1,-1,"Hybrid Op. Mode"},
-//{0x64,2,303,1,-1,"Boiler Operation Demand"},
-//{0x64,2,302,1,-1,"Boiler DHW Demand"},
-//{0x64,2,301,1,-1,"Bypass Valve Output"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/EKHWET-BAV3(MULTI DHW TANK).h b/include/def/EKHWET-BAV3(MULTI DHW TANK).h
deleted file mode 100644
index 63bf3541..00000000
--- a/include/def/EKHWET-BAV3(MULTI DHW TANK).h
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Refrigerant type"},
-//{0x00,0,152,1,-1,"Sensor Data Qty"},
-//{0x00,1,152,1,-1,"INV compressor Qty"},
-//{0x00,2,152,1,-1,"STD compressor Qty"},
-//{0x00,3,152,1,-1,"Fan Data Qty"},
-//{0x00,4,152,1,-1,"Expansion Valve Data Qty"},
-//{0x00,5,152,1,-1,"4 Way Valve Data Qty"},
-//{0x00,6,152,1,-1,"Crank Case Heater Qty"},
-//{0x00,7,152,1,-1,"Solenoid valve Qty"},
-//{0x00,8,152,1,-1,"Max. connectable indoor units"},
-//{0x00,9,152,1,-1,"Connected Indoor Unit Qty"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"O/U capacity (kW)"},
-//{0x10,0,217,1,-1,"Operation Mode"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Restart standby"},
-//{0x10,1,305,1,-1,"Startup Control"},
-//{0x10,1,304,1,-1,"Defrost Operation"},
-//{0x10,1,303,1,-1,"Oil Return Operation"},
-//{0x10,1,302,1,-1,"Pressure equalizing operation"},
-//{0x10,1,301,1,-1,"Demand Signal"},
-//{0x10,1,300,1,-1,"Low noise control"},
-//{0x10,4,203,1,-1,"Error type"},
-//{0x10,5,204,1,-1,"Error Code"},
-//{0x10,6,114,2,1,"DHW supply temperature"},
-//{0x10,8,114,2,1,"Target Cond. Temp."},
-//{0x10,10,307,1,-1,"Discharge Temp. Drop"},
-//{0x10,10,310,1,-1,"Discharge Temp. Protection Retry Qty"},
-//{0x10,10,303,1,-1,"Comp. INV Current Drop"},
-//{0x10,10,311,1,-1,"Comp. INV Current Protection Retry Qty"},
-//{0x10,11,307,1,-1,"HP Drop Control"},
-//{0x10,11,310,1,-1,"HP Protection Retry Qty"},
-//{0x10,11,303,1,-1,"LP Drop Control"},
-//{0x10,11,311,1,-1,"LP Protection Retry Qty"},
-//{0x10,12,307,1,-1,"Fin Temp. Drop Control"},
-//{0x10,12,310,1,-1,"Fin Temp. Protection Retry Qty"},
-//{0x10,12,303,1,-1,"Other Drop Control"},
-//{0x10,12,311,1,-1,"Not in use"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1st digit)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3rd 4th digit)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5th 6th digit)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7th 8th digit)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10th digit)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11th digit)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Outdoor air temp."},
-//{0x20,2,105,2,1,"O/U Heat Exch. Temp."},
-//{0x20,4,105,2,1,"Discharge pipe temp."},
-//{0x20,6,105,2,1,"Suction pipe temp."},
-//{0x20,8,105,2,1,"Heat exchanger mid-temp."},
-//{0x20,10,105,2,1,"Liquid pipe temp.(R6T)"},
-//{0x20,12,105,2,2,"High Pressure"},
-//{0x20,12,405,2,1,"High Pressure(T)"},
-//{0x20,14,105,2,2,"Pressure"},
-//{0x20,14,405,2,1,"Pressure(T)"},
-//{0x21,0,105,2,-1,"INV primary current (A)"},
-//{0x21,2,105,2,-1,"INV secondary current (A)"},
-//{0x21,4,105,2,1,"INV fin temp."},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Compressor outlet temperature"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV frequency (rps)"},
-//{0x30,1,211,1,-1,"Fan 1 (step)"},
-//{0x30,2,211,1,-1,"Fan 2 (step)"},
-//{0x30,3,151,2,-1,"Expansion valve 1 (pls)"},
-//{0x30,5,151,2,-1,"Expansion valve 2 (pls)"},
-//{0x30,7,151,2,-1,"Expansion valve 3 (pls)"},
-//{0x30,9,151,2,-1,"Expansion valve 4 (pls)"},
-//{0x30,11,307,1,-1,"4 Way Valve"},
-//{0x30,12,307,1,-1,"Crank case heater"},
-//{0x30,13,307,1,-1,"DHW:SV1"},
-//{0x30,13,306,1,-1,"Drain pan heater"},
-//{0x30,13,305,1,-1,"RA:SV2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Suction temp"},
-//{0xA0,2,119,2,1,"Outdoor heat exchanger temp."},
-//{0xA0,4,119,2,1,"Liquid pipe temp."},
-//{0xA0,6,119,2,2,"Pressure"},
-//{0xA0,8,151,2,-1,"Expansion valve 3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS operation"},
-//{0xA0,12,306,1,-1,"Safeguard operation"},
-//{0xA0,12,305,1,-1,"Crank case heater"},
-//{0xA0,12,304,1,-1,"RA:SV2"},
-//{0xA0,12,303,1,-1,"Drain pan heater"},
-//{0xA0,12,302,1,-1,"DHW:SV1"},
-//{0xA0,12,301,1,-1,"4 way valve (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Discharge Temp. Drop"},
-//{0xA0,13,302,1,-1,"During emergency operation"},
-//{0xA0,13,301,1,-1,"Indoor unit blowout 50 ° C flag"},
-//{0xA0,13,300,1,-1,"Powerful bit (MT setting bit)"},
-//{0xA0,14,105,2,1,"Compressor port temperature"},
-//{0xA1,0,119,2,1,"(Raw data)Water heat exchanger inlet temp."},
-//{0xA1,2,119,2,1,"(Raw data)Water heat exchanger outlet temp."},
-//{0xA1,4,302,1,-1,"Liquid INJ solenoid valve (Y4S)"},
-//{0xA1,4,301,1,-1,"Bottom Plate Heater"},
-//{0xA1,4,300,1,-1,"PHE Heater"},
-//{0xA1,5,114,2,1,"Target Discharge Temp."},
-//{0xA1,7,114,2,1,"Target port temperature"},
-//{0xA1,9,305,1,-1,"Monobloc setting"},
-//{0xA1,9,304,1,-1,"Minichiller setting"},
-//{0xA1,9,303,1,-1,"MT setting"},
-//{0xA1,9,302,1,-1,"GSHP setting"},
-//{0xA1,9,301,1,-1,"Hydro split setting"},
-//{0xA1,9,300,1,-1,"Alterma LT setting"},
-//{0x60,0,304,1,-1,"Data Enable/Disable"},
-//{0x60,1,152,1,-1,"Indoor Unit Address"},
-//{0x60,2,315,1,-1,"I/U operation mode"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Freeze Protection"},
-//{0x60,2,301,1,-1,"Silent Mode"},
-//{0x60,2,300,1,-1,"Freeze Protection for water piping"},
-//{0x60,3,204,1,-1,"Error Code"},
-//{0x60,4,152,1,-1,"Error detailed code"},
-//{0x60,5,203,1,-1,"Error type"},
-//{0x60,6,219,1,-1,"I/U capacity code"},
-//{0x60,7,105,2,1,"DHW setpoint"},
-//{0x60,9,105,2,1,"LW setpoint (main)"},
-//{0x60,11,307,1,-1,"Water flow switch"},
-//{0x60,11,306,1,-1,"Thermal protector (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Thermal protector BSH"},
-//{0x60,11,304,1,-1,"Benefit kWh rate power supply"},
-//{0x60,11,303,1,-1,"Solar input"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"2way valve(On:Heat_Off:Cool)"},
-//{0x60,12,306,1,-1,"3way valve(On:DHW_Off:Space)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH Step1"},
-//{0x60,12,303,1,-1,"BUH Step2"},
-//{0x60,12,302,1,-1,"Floor loop shut off valve"},
-//{0x60,12,301,1,-1,"Water pump operation"},
-//{0x60,12,300,1,-1,"Solar pump operation"},
-//{0x60,13,152,1,-1,"Indoor Option Code"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Data Enable/Disable"},
-//{0x61,1,152,1,-1,"Indoor Unit Address"},
-//{0x61,2,105,2,1,"Leaving water temp. before BUH (R1T)"},
-//{0x61,4,105,2,1,"Leaving water temp. after BUH (R2T)"},
-//{0x61,6,105,2,1,"Refrig. Temp. liquid side (R3T)"},
-//{0x61,8,105,2,1,"Inlet water temp.(R4T)"},
-//{0x61,10,105,2,1,"DHW tank temp. (R5T)"},
-//{0x61,12,105,2,1,"Indoor ambient temp. (R1T)"},
-//{0x61,14,105,2,1,"Ext. indoor ambient sensor (R6T)"},
-//{0x62,0,307,1,-1,"Data Enable/Disable"},
-//{0x62,1,152,1,-1,"Indoor Unit Address"},
-//{0x62,2,307,1,-1,"Reheat ON/OFF"},
-//{0x62,2,306,1,-1,"Storage ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Storage comfort ON/OFF"},
-//{0x62,2,304,1,-1,"Powerful DHW Operation. ON/OFF"},
-//{0x62,2,303,1,-1,"Space heating Operation ON/OFF"},
-//{0x62,2,302,1,-1,"System OFF (ON:System off)"},
-//{0x62,2,301,1,-1,"Not in use"},
-//{0x62,2,300,1,-1,"Emergency (indoor) active/not active"},
-//{0x62,3,105,2,1,"LW setpoint (add)"},
-//{0x62,5,105,2,1,"RT setpoint"},
-//{0x62,7,307,1,-1,"Add. Ext. RT Input Cool."},
-//{0x62,7,306,1,-1,"Add. Ext. RT Input Heat."},
-//{0x62,7,305,1,-1,"Main RT Cooling"},
-//{0x62,7,304,1,-1,"Main RT Heating"},
-//{0x62,7,303,1,-1,"Pwr consumption limit 4"},
-//{0x62,7,302,1,-1,"Pwr consumption limit 3"},
-//{0x62,7,301,1,-1,"Pwr consumption limit 2"},
-//{0x62,7,300,1,-1,"Pwr consumption limit 1"},
-//{0x62,8,307,1,-1,"None"},
-//{0x62,8,306,1,-1,"Not in use"},
-//{0x62,8,305,1,-1,"Not in use"},
-//{0x62,8,304,1,-1,"PHE Heater"},
-//{0x62,8,303,1,-1,"Tank preheat ON/OFF"},
-//{0x62,8,302,1,-1,"Circulation pump operation"},
-//{0x62,8,301,1,-1,"Alarm output"},
-//{0x62,8,300,1,-1,"Space H Operation output"},
-//{0x62,9,105,2,-1,"Flow sensor (l/min)"},
-//{0x62,11,105,1,2,"Water pressure"},
-//{0x62,12,152,1,-1,"Water pump signal (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Future] 3 way Valve Mixing 1"},
-//{0x62,14,152,1,-1,"[Future] 3 way Valve Mixing 2"},
-//{0x62,15,105,2,2,"Refrigerant pressure sensor"},
-//{0x63,0,307,1,-1,"Data Enable/Disable"},
-//{0x63,1,152,1,-1,"Indoor Unit Address"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3rd digit)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4th 5th digit)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6th 7th digit)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8th 9th digit)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11th digit)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12th digit)(rev.)"},
-//{0x63,8,215,1,-1,"Not in use"},
-//{0x63,9,215,1,-1,"Not in use"},
-//{0x63,10,215,1,-1,"Not in use"},
-//{0x63,11,215,1,-1,"Not in use"},
-//{0x63,12,215,1,-1,"Not in use"},
-//{0x63,13,311,1,-1,"BUH output capacity"},
-//{0x63,14,161,1,-1,"Current measured by CT sensor of L1"},
-//{0x63,15,161,1,-1,"Current measured by CT sensor of L2"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Current measured by CT sensor of L3"},
-//{0x64,0,307,1,-1,"Data Enable/Disable"},
-//{0x64,1,152,1,-1,"Indoor Unit Address"},
-//{0x64,2,307,1,-1,"DHW in standby due to defrost in ODU"},
-//{0x64,2,306,1,-1,"Defrost"},
-//{0x64,2,305,1,-1,"Powerful demand"},
-//{0x64,2,304,1,-1,"DHW priority request"},
-//{0x64,2,303,1,-1,"Mode conflict (DHW in standby)"},
-//{0x64,2,302,1,-1,"Add pump"},
-//{0x64,2,301,1,-1,"Main pump"},
-//{0x64,2,300,1,-1,"BSH allowance Multi"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heating Target Temp."},
-//{0x64,7,105,2,1,"Boiler Heating Target Temp."},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,105,2,1,"Mixed water temp."},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/ALTHERMA(HYBRID).h b/include/def/French/ALTHERMA(HYBRID).h
deleted file mode 100644
index 75b19246..00000000
--- a/include/def/French/ALTHERMA(HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. air extérieur"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire éch. chaleur O/U"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide"},
-//{0x20,12,105,2,1,"Temp. ailette INV"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,303,1,-1,"Résistance de carter 5"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Temp. éch. chaleur eau de sortie (R1T)"},
-//{0x61,4,105,2,1,"Temp. BUH eau de sortie (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. RT"},
-//{0x61,14,105,2,1,"Temp. ambiante extérieure ou capteur ext."},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Op. C/H espace ou BPH"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,2,300,1,-1,"Mode fonctionnement ECS Hybride"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/ALTHERMA(LT_CA_CB_04-08KW).h b/include/def/French/ALTHERMA(LT_CA_CB_04-08KW).h
deleted file mode 100644
index 4c504f5c..00000000
--- a/include/def/French/ALTHERMA(LT_CA_CB_04-08KW).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/ALTHERMA(LT_CA_CB_11-16KW).h b/include/def/French/ALTHERMA(LT_CA_CB_11-16KW).h
deleted file mode 100644
index b07d2387..00000000
--- a/include/def/French/ALTHERMA(LT_CA_CB_11-16KW).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,7,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,7,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,7,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,7,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,8,307,1,-1,"Résistance de carter 1"},
-//{0x30,8,306,1,-1,"Résistance de carter 2"},
-//{0x30,8,305,1,-1,"Résistance de carter 3"},
-//{0x30,8,304,1,-1,"Résistance de carter 4"},
-//{0x30,9,307,1,-1,"SV1 (gaz chaud)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Electrovanne 3"},
-//{0x30,9,304,1,-1,"Electrovanne 4"},
-//{0x30,9,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"BHU protecteur thermique"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/French/ALTHERMA(LT_MULTI_DHWHP).h b/include/def/French/ALTHERMA(LT_MULTI_DHWHP).h
deleted file mode 100644
index 28b3db8e..00000000
--- a/include/def/French/ALTHERMA(LT_MULTI_DHWHP).h
+++ /dev/null
@@ -1,219 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Dégivrage interdit ON/OFF"},
-//{0x62,8,305,1,-1,"Mode Powerful"},
-//{0x62,8,304,1,-1,"Demande ECS prioritaire"},
-//{0x62,8,303,1,-1,"Mode Conflict"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/ALTHERMA(LT_MULTI_HYBRID).h b/include/def/French/ALTHERMA(LT_MULTI_HYBRID).h
deleted file mode 100644
index 99d77100..00000000
--- a/include/def/French/ALTHERMA(LT_MULTI_HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Dégivrage interdit ON/OFF"},
-//{0x62,8,305,1,-1,"Mode Powerful"},
-//{0x62,8,304,1,-1,"Demande ECS prioritaire"},
-//{0x62,8,303,1,-1,"Mode Conflict"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,2,300,1,-1,"Mode fonctionnement ECS Hybride"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h b/include/def/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
deleted file mode 100644
index 2e2fb8d3..00000000
--- a/include/def/French/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Température de liquide (R3T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,405,1,1,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h b/include/def/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
deleted file mode 100644
index 323df275..00000000
--- a/include/def/French/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
+++ /dev/null
@@ -1,230 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,215,1,-1,"Non utilisé"},
-//{0x63,12,215,1,-1,"Non utilisé"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,1,152,2,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h b/include/def/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
deleted file mode 100644
index 1ada5fe8..00000000
--- a/include/def/French/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
+++ /dev/null
@@ -1,177 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Thermistor à 2 phases (R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Entrée de temp. d eau glycolée (R5T)"},
-//{0x20,10,105,2,1,"Laisser temp. eau glycolée (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,152,2,1,"Fan1 Fin temp."},
-//{0x21,8,152,2,1,"Fan2 Fin temp."},
-//{0x21,10,152,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Retour de la pompe à saumure"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0x30,13,306,1,-1,"Y2S"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Capacité d unité intérieure"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,13,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x63,16,307,1,-1,"Opération HP forcée par l installateur"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,-1,"Target delta T heating"},
-//{0x64,15,152,1,-1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(EGSQH-A series 10kW GEO2).h b/include/def/French/Altherma(EGSQH-A series 10kW GEO2).h
deleted file mode 100644
index e1b4723d..00000000
--- a/include/def/French/Altherma(EGSQH-A series 10kW GEO2).h
+++ /dev/null
@@ -1,218 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Thermistor à 2 phases (R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Entrée de temp. d eau glycolée (R5T)"},
-//{0x20,10,105,2,1,"Laisser temp. eau glycolée (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur (R10T)"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"SV (gaz chaud)"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,13,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Non utilisé"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h b/include/def/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
deleted file mode 100644
index 6f69fa2d..00000000
--- a/include/def/French/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
+++ /dev/null
@@ -1,199 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,-1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,8,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x21,12,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,7,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,7,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,7,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,7,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,7,302,1,-1,"Vanne à 4 voies 6"},
-//{0x30,7,301,1,-1,"Vanne à 4 voies 7"},
-//{0x30,7,300,1,-1,"Vanne à 4 voies 8"},
-//{0x30,8,307,1,-1,"Résistance de carter"},
-//{0x30,9,307,1,1,"Soupape de dérivation de gaz chaud (Y2S)"},
-//{0x30,9,306,1,1,"Vanne de dérivation basse pression (Y3S)"},
-//{0x30,10,112,1,1,"Température de l eau d entrée. (DMW)"},
-//{0x30,11,112,1,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,12,301,1,1,"Vanne à 4 voies (Y1S)"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h b/include/def/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
deleted file mode 100644
index 5811dcad..00000000
--- a/include/def/French/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp d amission (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp d amission après Ballon/BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,215,1,-1,"Non utilisé"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h b/include/def/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
deleted file mode 100644
index 0690d56c..00000000
--- a/include/def/French/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,215,1,-1,"Non utilisé"},
-//{0x63,12,215,1,-1,"Non utilisé"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h b/include/def/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
deleted file mode 100644
index 84788200..00000000
--- a/include/def/French/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,0,152,1,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h b/include/def/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
deleted file mode 100644
index 84788200..00000000
--- a/include/def/French/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,0,152,1,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h b/include/def/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
deleted file mode 100644
index 307024b5..00000000
--- a/include/def/French/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,0,152,1,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h b/include/def/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
deleted file mode 100644
index 307024b5..00000000
--- a/include/def/French/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,0,152,1,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h b/include/def/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
deleted file mode 100644
index d4fb64cd..00000000
--- a/include/def/French/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Capteur de pression"},
-//{0x20,14,405,2,1,"Capteur de pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp d amission (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp d amission après Ballon/BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"[HPSU] Tr Temp retour (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h b/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
deleted file mode 100644
index e4a7c3bf..00000000
--- a/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Capteur de pression"},
-//{0x20,14,405,2,1,"Capteur de pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h b/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
deleted file mode 100644
index 6f8fd646..00000000
--- a/include/def/French/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Température de liquide (R3T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (10 rpm)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h b/include/def/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
deleted file mode 100644
index 82c95408..00000000
--- a/include/def/French/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Température de liquide (R3T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,405,1,1,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h b/include/def/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
deleted file mode 100644
index 721016cb..00000000
--- a/include/def/French/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Température de liquide (R3T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,405,1,1,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,12,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h b/include/def/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
deleted file mode 100644
index aa9e326a..00000000
--- a/include/def/French/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
+++ /dev/null
@@ -1,234 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,1,152,2,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h b/include/def/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
deleted file mode 100644
index 53be032a..00000000
--- a/include/def/French/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U(R4T)"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement(R2T)"},
-//{0x20,6,105,2,1,"Temp. tuyau d aspiration (R3T)"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur(R5T)"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Soupape de dérivation de gaz chaud (Y3S)"},
-//{0x30,13,306,1,-1,"Vanne de dérivation basse pression (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"Electrovanne 2"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,105,2,1,"Mixed water temp.(R7T)"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x65,1,152,2,-1,"Adresse d unité intérieure"},
-//{0x65,2,105,2,1,"Temp d hex de l eau de sortie (modèle hydro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit température de l eau de sortie mixte R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit position de la vanne de mélange M1S"},
-};
diff --git a/include/def/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h b/include/def/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
deleted file mode 100644
index e4a7c3bf..00000000
--- a/include/def/French/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Capteur de pression"},
-//{0x20,14,405,2,1,"Capteur de pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(LT_CB_04-08kW Bizone).h b/include/def/French/Altherma(LT_CB_04-08kW Bizone).h
deleted file mode 100644
index 4c504f5c..00000000
--- a/include/def/French/Altherma(LT_CB_04-08kW Bizone).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(LT_CB_11-16kW Bizone).h b/include/def/French/Altherma(LT_CB_11-16kW Bizone).h
deleted file mode 100644
index d8925f69..00000000
--- a/include/def/French/Altherma(LT_CB_11-16kW Bizone).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"SV1 (gaz chaud)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"BHU protecteur thermique"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h b/include/def/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
deleted file mode 100644
index 46b4e95d..00000000
--- a/include/def/French/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur extérieur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide"},
-//{0x20,12,105,2,1,"Temp. d ailette"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,0,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,2,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,4,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,6,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,8,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,10,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Temp. éch. chaleur eau de sortie (R1T)"},
-//{0x61,4,105,2,1,"Temp. BUH eau de sortie (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h b/include/def/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
deleted file mode 100644
index b07d2387..00000000
--- a/include/def/French/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,7,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,7,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,7,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,7,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,8,307,1,-1,"Résistance de carter 1"},
-//{0x30,8,306,1,-1,"Résistance de carter 2"},
-//{0x30,8,305,1,-1,"Résistance de carter 3"},
-//{0x30,8,304,1,-1,"Résistance de carter 4"},
-//{0x30,9,307,1,-1,"SV1 (gaz chaud)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Electrovanne 3"},
-//{0x30,9,304,1,-1,"Electrovanne 4"},
-//{0x30,9,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"BHU protecteur thermique"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/French/DEFAULT.h b/include/def/French/DEFAULT.h
deleted file mode 100644
index 3a64a994..00000000
--- a/include/def/French/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,213,1,-1,"O/U MPU ID"},
-//{0x00,11,213,1,-1,"O/U MPU ID"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,2,307,1,-1,"Autre contrôle1"},
-//{0x10,2,306,1,-1,"Autre contrôle2"},
-//{0x10,2,305,1,-1,"Autre contrôle3"},
-//{0x10,2,304,1,-1,"Autre contrôle4"},
-//{0x10,2,303,1,-1,"Autre contrôle5"},
-//{0x10,2,302,1,-1,"Autre contrôle6"},
-//{0x10,2,301,1,-1,"Autre contrôle7"},
-//{0x10,2,300,1,-1,"Autre contrôle8"},
-//{0x10,3,307,1,-1,"Autre contrôle9"},
-//{0x10,3,306,1,-1,"Autre contrôle10"},
-//{0x10,3,305,1,-1,"Autre contrôle11"},
-//{0x10,3,304,1,-1,"Autre contrôle12"},
-//{0x10,3,303,1,-1,"Autre contrôle13"},
-//{0x10,3,302,1,-1,"Autre contrôle14"},
-//{0x10,3,301,1,-1,"Autre contrôle15"},
-//{0x10,3,300,1,-1,"Autre contrôle16"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,303,1,-1,"Autre contrôle"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. air extérieur"},
-//{0x20,2,105,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur extérieur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide"},
-//{0x20,12,105,2,1,"Temp. ailette INV"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x20,16,105,2,-1,"Données du capteur 9"},
-//{0x20,18,105,2,-1,"Données du capteur 10"},
-//{0x20,20,105,2,-1,"Données du capteur 11"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,-1,"Données du capteur 4"},
-//{0x21,8,105,2,-1,"Données du capteur 5"},
-//{0x21,10,105,2,-1,"Données du capteur 6"},
-//{0x21,12,105,2,-1,"Données du capteur 7"},
-//{0x21,14,105,2,-1,"Données du capteur 8"},
-//{0x21,16,105,2,-1,"Données du capteur 9"},
-//{0x21,18,105,2,-1,"Données du capteur 10"},
-//{0x21,20,105,2,-1,"Données du capteur 11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV 1 (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x30,0,302,1,-1,"Electrovanne 6"},
-//{0x30,0,301,1,-1,"Electrovanne 7"},
-//{0x30,0,300,1,-1,"Electrovanne 8"},
-//{0x30,1,307,1,-1,"Electrovanne 9"},
-//{0x30,1,306,1,-1,"Electrovanne 10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"Mode de fonctionnement intérieur"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Capacité d unité intérieure"},
-//{0x60,7,105,2,1,"Point de réglage de télécommande"},
-//{0x60,9,105,2,1,"Point de réglage de sortie H/P"},
-//{0x60,11,307,1,-1,"Interrupteur de débit"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon BSH"},
-//{0x60,11,304,1,-1,"Entrée du tarif HP"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 3 voies (Froid/Chaud)"},
-//{0x60,12,306,1,-1,"Vanne à 4 voies (Espace/DHW)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"Chauffage de plaque inférieure"},
-//{0x60,12,301,1,-1,"Puissance de pompe"},
-//{0x60,12,300,1,-1,"Signal de sortie solaire"},
-//{0x60,13,212,1,-1,"Code d option intérieur"},
-//{0x60,14,314,2,-1,"Adresse de logiciel intérieure"},
-//{0x60,15,212,1,-1,"Version EEPROM intérieure"},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"PHE de sortie(R1T)"},
-//{0x61,4,105,2,1,"BUH de sortie(R2T)"},
-//{0x61,6,105,2,1,"Température de liquide (R3T)"},
-//{0x61,8,105,2,1,"Température d entrée (R4T)"},
-//{0x61,10,105,2,1,"Température de DHW (R5T)"},
-//{0x61,12,105,2,1,"Thermistor à télécommande"},
-};
diff --git a/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h b/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
deleted file mode 100644
index 2e2fb8d3..00000000
--- a/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Température de liquide (R3T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Basse pression"},
-//{0x20,14,405,2,1,"Basse pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Electrovanne 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Electrovanne 1"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,405,1,1,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x62,15,405,2,1,"Capteur de pression(T)"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h b/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
deleted file mode 100644
index d8925f69..00000000
--- a/include/def/French/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,1,"Temp. de dissipateur de chaleur"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x20,16,105,2,-1,"Non utilisé"},
-//{0x20,18,105,2,-1,"Non utilisé"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,6,307,1,-1,"Interrupteur de débit d eau glycolée"},
-//{0x21,6,306,1,-1,"Non utilisé"},
-//{0x21,6,305,1,-1,"Non utilisé"},
-//{0x21,6,304,1,-1,"Non utilisé"},
-//{0x21,6,303,1,-1,"Non utilisé"},
-//{0x21,6,302,1,-1,"Non utilisé"},
-//{0x21,6,301,1,-1,"Non utilisé"},
-//{0x21,6,300,1,-1,"Non utilisé"},
-//{0x21,7,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,9,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,11,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,13,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x21,15,105,1,-1,"Non utilisé"},
-//{0x21,16,105,1,-1,"Non utilisé"},
-//{0x21,17,105,1,-1,"Non utilisé"},
-//{0x21,18,105,1,-1,"Non utilisé"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies 1"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter 1"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"SV1 (gaz chaud)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"BHU protecteur thermique"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h b/include/def/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
deleted file mode 100644
index 46b4e95d..00000000
--- a/include/def/French/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Type de réfrigérant"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Temp. évap. cible"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur extérieur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide"},
-//{0x20,12,105,2,1,"Temp. d ailette"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,0,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,2,101,2,-1,"Tension (phase N) (V)"},
-//{0x21,4,105,2,1,"Temp. d entrée d eau glycolée"},
-//{0x21,6,105,2,1,"Temp. de sortie d eau glycolée"},
-//{0x21,8,105,2,1,"Temp. réfrig. entrée évap."},
-//{0x21,10,105,2,1,"Temp. réfrig. sortie évap."},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,152,1,-1,"Fréquence INV 2 (rps)"},
-//{0x30,0,307,1,-1,"Compresseur STD 1"},
-//{0x30,0,306,1,-1,"Compresseur STD 2"},
-//{0x30,0,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,1,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,0,151,2,-1,"Détendeur électronique (pls)"},
-//{0x30,2,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,4,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,6,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,8,151,2,-1,"Détendeur électronique5 (pls)"},
-//{0x30,0,307,1,-1,"Vanne à 4 voies"},
-//{0x30,0,306,1,-1,"Vanne à 4 voies 2"},
-//{0x30,0,305,1,-1,"Vanne à 4 voies 3"},
-//{0x30,0,304,1,-1,"Vanne à 4 voies 4"},
-//{0x30,0,303,1,-1,"Vanne à 4 voies 5"},
-//{0x30,0,307,1,-1,"Résistance de carter"},
-//{0x30,0,306,1,-1,"Résistance de carter 2"},
-//{0x30,0,305,1,-1,"Résistance de carter 3"},
-//{0x30,0,304,1,-1,"Résistance de carter 4"},
-//{0x30,0,307,1,-1,"Electrovanne 1"},
-//{0x30,0,306,1,-1,"Electrovanne 2"},
-//{0x30,0,305,1,-1,"Electrovanne 3"},
-//{0x30,0,304,1,-1,"Electrovanne 4"},
-//{0x30,0,303,1,-1,"Electrovanne 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,314,2,-1,"Code d unité intérieure"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Temp. éch. chaleur eau de sortie (R1T)"},
-//{0x61,4,105,2,1,"Temp. BUH eau de sortie (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Non utilisé"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,152,1,-1,"Non utilisé"},
-//{0x62,16,307,1,-1,"Non utilisé"},
-//{0x62,16,306,1,-1,"Non utilisé"},
-//{0x62,16,305,1,-1,"Non utilisé"},
-//{0x62,16,304,1,-1,"Non utilisé"},
-//{0x62,16,303,1,-1,"Non utilisé"},
-//{0x62,16,302,1,-1,"Non utilisé"},
-//{0x62,16,301,1,-1,"Non utilisé"},
-//{0x62,16,300,1,-1,"Non utilisé"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,316,1,-1,"Mode de fonctionnement hybride"},
-//{0x64,2,303,1,-1,"Demande de fonctionnement de chaudière"},
-//{0x64,2,302,1,-1,"Demande DHW chaudière"},
-//{0x64,2,301,1,-1,"Sortie de vanne de dérivation"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/French/EKHWET-BAV3(MULTI DHW TANK).h b/include/def/French/EKHWET-BAV3(MULTI DHW TANK).h
deleted file mode 100644
index 126547f0..00000000
--- a/include/def/French/EKHWET-BAV3(MULTI DHW TANK).h
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Type de réfrigérant"},
-//{0x00,0,152,1,-1,"Qté de données du capteur"},
-//{0x00,1,152,1,-1,"Qté compresseur INV"},
-//{0x00,2,152,1,-1,"Qté compresseur STD"},
-//{0x00,3,152,1,-1,"Qté de données de ventilateur"},
-//{0x00,4,152,1,-1,"Qté de données de détendeur électronique"},
-//{0x00,5,152,1,-1,"Qté de données de vanne à 4 voies"},
-//{0x00,6,152,1,-1,"Qté de résistance de carter"},
-//{0x00,7,152,1,-1,"Qté électrovanne"},
-//{0x00,8,152,1,-1,"Unités intérieures connectables max."},
-//{0x00,9,152,1,-1,"Qté unité intérieure connectée"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacité O/U (kW)"},
-//{0x10,0,217,1,-1,"Mode de fonctionnement"},
-//{0x10,1,307,1,-1,"Thermostat ON/OFF"},
-//{0x10,1,306,1,-1,"Attente de redémarrage"},
-//{0x10,1,305,1,-1,"Commande de démarrage"},
-//{0x10,1,304,1,-1,"Dégivrage"},
-//{0x10,1,303,1,-1,"Commande de retour d huile"},
-//{0x10,1,302,1,-1,"Opération d égalisation de pression"},
-//{0x10,1,301,1,-1,"Signal de demande"},
-//{0x10,1,300,1,-1,"Contrôle de bruit réduit"},
-//{0x10,4,203,1,-1,"Type de dysfonctionnement"},
-//{0x10,5,204,1,-1,"Code de dysfonctionnement"},
-//{0x10,6,114,2,1,"Not translated yet"},
-//{0x10,8,114,2,1,"Temp. cond. cible"},
-//{0x10,10,307,1,-1,"Chute de temp. refoulement"},
-//{0x10,10,310,1,-1,"Qté réessai de protection de temp. refoulement"},
-//{0x10,10,303,1,-1,"Chute de courant INV comp."},
-//{0x10,10,311,1,-1,"Qté réessai de protection de courant INV. comp."},
-//{0x10,11,307,1,-1,"Contrôle de chute de HP"},
-//{0x10,11,310,1,-1,"Qté réessai de protection HP"},
-//{0x10,11,303,1,-1,"Contrôle de chute de BP"},
-//{0x10,11,311,1,-1,"Qté de réessai de protection de BP"},
-//{0x10,12,307,1,-1,"Contrôle de chute temp. ailette"},
-//{0x10,12,310,1,-1,"Qté réessai protection temp. ailette"},
-//{0x10,12,303,1,-1,"Autre contrôle de chute"},
-//{0x10,12,311,1,-1,"Non utilisé"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1ère chiffres)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3ème 4ème chiffres)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5ème 6ème chiffres)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7ème 8ème chiffres)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10ème chiffres)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11ème chiffres)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. d air extérieur(R1T)"},
-//{0x20,2,105,2,1,"Temp. éch. chaleur O/U"},
-//{0x20,4,105,2,1,"Temp. tuyau refoulement"},
-//{0x20,6,105,2,1,"Température du tuyau d aspiration"},
-//{0x20,8,105,2,1,"Temp. intermédiaire échangeur de chaleur"},
-//{0x20,10,105,2,1,"Temp. tuyau de liquide (R6T)"},
-//{0x20,12,105,2,2,"Haute pression"},
-//{0x20,12,405,2,1,"Haute pression(T)"},
-//{0x20,14,105,2,2,"Pression"},
-//{0x20,14,405,2,1,"Pression(T)"},
-//{0x21,0,105,2,-1,"Courant primaire INV (A)"},
-//{0x21,2,105,2,-1,"Courant secondaire INV (A)"},
-//{0x21,4,105,2,1,"Temp. ailette INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Température de sortie du compresseur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Fréquence INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilateur 1 (palier)"},
-//{0x30,2,211,1,-1,"Ventilateur 2 (palier)"},
-//{0x30,3,151,2,-1,"Détendeur électronique1 (pls)"},
-//{0x30,5,151,2,-1,"Détendeur électronique2 (pls)"},
-//{0x30,7,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0x30,9,151,2,-1,"Détendeur électronique4 (pls)"},
-//{0x30,11,307,1,-1,"Vanne à 4 voies"},
-//{0x30,12,307,1,-1,"Résistance de carter"},
-//{0x30,13,307,1,-1,"Not translated yet"},
-//{0x30,13,306,1,-1,"Not translated yet"},
-//{0x30,13,305,1,-1,"Not translated yet"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Température du tuyau d aspiration"},
-//{0xA0,2,119,2,1,"Temp. échangeur de chaleur extérieur"},
-//{0xA0,4,119,2,1,"Temp. tuyau de liquide"},
-//{0xA0,6,119,2,2,"Pression"},
-//{0xA0,8,151,2,-1,"Détendeur électronique3 (pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activé"},
-//{0xA0,12,306,1,-1,"Opération de sauvegarde"},
-//{0xA0,12,305,1,-1,"Résistance de carter"},
-//{0xA0,12,304,1,-1,"Not translated yet"},
-//{0xA0,12,303,1,-1,"Not translated yet"},
-//{0xA0,12,302,1,-1,"Not translated yet"},
-//{0xA0,12,301,1,-1,"Vanne à 4 voies (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Chute de temp. refoulement"},
-//{0xA0,13,302,1,-1,"Pendant l opération d urgence"},
-//{0xA0,13,301,1,-1,"Drapeau unité éruption 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit puissant (bit de réglage MT)"},
-//{0xA0,14,105,2,1,"Température du port du compresseur"},
-//{0xA1,0,119,2,1,"(Données brutes)Température d entrée de l échangeur de chaleur"},
-//{0xA1,2,119,2,1,"(Données brutes)Température de sortie de l échangeur thermique"},
-//{0xA1,4,302,1,-1,"Électrovanne INJ liquide (Y4S)"},
-//{0xA1,4,301,1,-1,"Chauffage de plaque inférieure"},
-//{0xA1,4,300,1,-1,"Chauffage PHE"},
-//{0xA1,5,114,2,1,"Temp. de refoulement cible"},
-//{0xA1,7,114,2,1,"Température du port cible"},
-//{0xA1,9,305,1,-1,"Réglage Monobloc"},
-//{0xA1,9,304,1,-1,"Réglage Minichiller"},
-//{0xA1,9,303,1,-1,"Réglage MT"},
-//{0xA1,9,302,1,-1,"Réglage GSHP"},
-//{0xA1,9,301,1,-1,"Réglage Hydro split"},
-//{0xA1,9,300,1,-1,"Réglage Altherma LT"},
-//{0x60,0,304,1,-1,"Activer/Désactiver les données"},
-//{0x60,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x60,2,315,1,-1,"I/U mode de fonctionnement"},
-//{0x60,2,303,1,-1,"Thermostat ON/OFF"},
-//{0x60,2,302,1,-1,"Protection antigel"},
-//{0x60,2,301,1,-1,"Mode silencieux"},
-//{0x60,2,300,1,-1,"Protection antigel pour tuyauterie eau"},
-//{0x60,3,204,1,-1,"Code de dysfonctionnement"},
-//{0x60,4,152,1,-1,"Code d erreur détaillé"},
-//{0x60,5,203,1,-1,"Type de dysfonctionnement"},
-//{0x60,6,219,1,-1,"Code de capacité I/U"},
-//{0x60,7,105,2,1,"Point de réglage de DHW"},
-//{0x60,9,105,2,1,"Point de réglage LW (principal)"},
-//{0x60,11,307,1,-1,"Interrupteur de débit d eau"},
-//{0x60,11,306,1,-1,"Protecteur thermique (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protecteur thermique BSH"},
-//{0x60,11,304,1,-1,"Alimentation débit kWh avantageux"},
-//{0x60,11,303,1,-1,"Entrée solaire"},
-//{0x60,11,302,1,-1,"Non utilisé"},
-//{0x60,11,301,1,-1,"Non utilisé"},
-//{0x60,11,300,1,-1,"Fonctionnement bivalent"},
-//{0x60,12,307,1,-1,"Vanne à 2 voies (On:Chaud_Off:Froid)"},
-//{0x60,12,306,1,-1,"Vanne à 3 voies (On:DHW_Off:Espace)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Palier1 BUH"},
-//{0x60,12,303,1,-1,"Palier2 BUH"},
-//{0x60,12,302,1,-1,"Vanne d isolement du plancher chauffant"},
-//{0x60,12,301,1,-1,"Fonctionnement de la pompe à eau"},
-//{0x60,12,300,1,-1,"Fonctionnement pompe solaire"},
-//{0x60,13,152,1,-1,"Code d option intérieur"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x61,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x61,2,105,2,1,"Laisser temp. eau avant BUH (R1T)"},
-//{0x61,4,105,2,1,"Laisser temp. eau après BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. réfrig. côté liquide (R3T)"},
-//{0x61,8,105,2,1,"Temp. d eau d entrée (R4T)"},
-//{0x61,10,105,2,1,"Temp. de réservoir de DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiante intérieure (R1T)"},
-//{0x61,14,105,2,1,"Capteur ext. de temp. ambiante intérieure (R6T)"},
-//{0x62,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x62,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x62,2,307,1,-1,"Réchauffement ON/OFF"},
-//{0x62,2,306,1,-1,"Stockage éco ON/OFF"},
-//{0x62,2,305,1,-1,"Stockage confort ON/OFF"},
-//{0x62,2,304,1,-1,"Fonctionnement DHW puissant. ON/OFF"},
-//{0x62,2,303,1,-1,"Fonctionnement chauffage espace ON/OFF"},
-//{0x62,2,302,1,-1,"Système OFF"},
-//{0x62,2,301,1,-1,"Non utilisé"},
-//{0x62,2,300,1,-1,"Mode secours (intérieur) activé/désactivé"},
-//{0x62,3,105,2,1,"Point de réglage LW (ajouté)"},
-//{0x62,5,105,2,1,"Point de réglage RT"},
-//{0x62,7,307,1,-1,"Rafraîch. entrée RT ext. ajouté"},
-//{0x62,7,306,1,-1,"Chauff. entrée RT ext. ajouté"},
-//{0x62,7,305,1,-1,"Rafraîchissement RT principal"},
-//{0x62,7,304,1,-1,"Chauffage RT principal"},
-//{0x62,7,303,1,-1,"Limite consommation courant 4"},
-//{0x62,7,302,1,-1,"Limite consommation courant 3"},
-//{0x62,7,301,1,-1,"Limite consommation courant 2"},
-//{0x62,7,300,1,-1,"Limite consommation courant 1"},
-//{0x62,8,307,1,-1,"Aucun"},
-//{0x62,8,306,1,-1,"Non utilisé"},
-//{0x62,8,305,1,-1,"Non utilisé"},
-//{0x62,8,304,1,-1,"Chauffage PHE"},
-//{0x62,8,303,1,-1,"Préchauffage Réservoir ON/OFF"},
-//{0x62,8,302,1,-1,"Fonctionnement de pompe de circulation"},
-//{0x62,8,301,1,-1,"Sortie d alarme"},
-//{0x62,8,300,1,-1,"Sortie fonctionnement espace H"},
-//{0x62,9,105,2,-1,"Capteur de débit (l/min)"},
-//{0x62,11,105,1,2,"Pression d eau"},
-//{0x62,12,152,1,-1,"Signal de pompe à eau (0:max-100:arrêt)"},
-//{0x62,13,152,1,-1,"[Futur] Mélange vanne à 3 voies 1"},
-//{0x62,14,152,1,-1,"[Futur] Mélange vanne à 3 voies 2"},
-//{0x62,15,105,2,2,"Capteur de pression de réfrigérant"},
-//{0x63,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x63,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3ème chiffres)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4ème 5ème chiffres)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6ème 7ème chiffres)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8ème 9ème chiffres)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11ème chiffres)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12ème chiffres)(rev.)"},
-//{0x63,8,215,1,-1,"Non utilisé"},
-//{0x63,9,215,1,-1,"Non utilisé"},
-//{0x63,10,215,1,-1,"Non utilisé"},
-//{0x63,11,215,1,-1,"Non utilisé"},
-//{0x63,12,215,1,-1,"Non utilisé"},
-//{0x63,13,311,1,-1,"BUH capacité de sortie"},
-//{0x63,14,161,1,-1,"Mesure du capteur CT (L1)"},
-//{0x63,15,161,1,-1,"Mesure du capteur CT (L2)"},
-//{0x63,16,307,1,-1,"HP forcé FG"},
-//{0x63,16,161,1,-1,"Mesure du capteur CT (L3)"},
-//{0x64,0,307,1,-1,"Activer/Désactiver les données"},
-//{0x64,1,152,1,-1,"Adresse d unité intérieure"},
-//{0x64,2,307,1,-1,"Not translated yet"},
-//{0x64,2,306,1,-1,"Dégivrage"},
-//{0x64,2,305,1,-1,"Mode Powerful"},
-//{0x64,2,304,1,-1,"Demande ECS prioritaire"},
-//{0x64,2,303,1,-1,"Not translated yet"},
-//{0x64,2,302,1,-1,"Add pump"},
-//{0x64,2,301,1,-1,"Main pump"},
-//{0x64,2,300,1,-1,"Not translated yet"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. cible de chauffage hybride"},
-//{0x64,7,105,2,1,"Temp. cible de chauffage de chaudière"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,105,2,1,"Température de l eau mélangée"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/German/ALTHERMA(HYBRID).h b/include/def/German/ALTHERMA(HYBRID).h
deleted file mode 100644
index ce4df004..00000000
--- a/include/def/German/ALTHERMA(HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"AG Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"O/U Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp."},
-//{0x20,12,105,2,1,"Inverter Platinentemperatur"},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,303,1,-1,"Ölsumpfheizung 5"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"Auslass Wasser Wärmetauscher Temp. (R1T)"},
-//{0x61,4,105,2,1,"Auslass Wasser BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"RT Temp."},
-//{0x61,14,105,2,1,"Außentemperatur oder Fernfühler"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Raum C/H Op. oder BPH"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,2,300,1,-1,"Hybrid Trinkwassererwärmung"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/ALTHERMA(LT_CA_CB_04-08KW).h b/include/def/German/ALTHERMA(LT_CA_CB_04-08KW).h
deleted file mode 100644
index 012eb6dd..00000000
--- a/include/def/German/ALTHERMA(LT_CA_CB_04-08KW).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/ALTHERMA(LT_CA_CB_11-16KW).h b/include/def/German/ALTHERMA(LT_CA_CB_11-16KW).h
deleted file mode 100644
index 655a7234..00000000
--- a/include/def/German/ALTHERMA(LT_CA_CB_11-16KW).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,7,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,7,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,7,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,7,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,8,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,8,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,8,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,8,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,9,307,1,-1,"Y3S: MV Heißgaspybass"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Magnetventil 3"},
-//{0x30,9,304,1,-1,"Magnetventil 4"},
-//{0x30,9,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,301,1,-1,"Zusatzpumpe"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-};
diff --git a/include/def/German/ALTHERMA(LT_MULTI_DHWHP).h b/include/def/German/ALTHERMA(LT_MULTI_DHWHP).h
deleted file mode 100644
index de54683c..00000000
--- a/include/def/German/ALTHERMA(LT_MULTI_DHWHP).h
+++ /dev/null
@@ -1,219 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Abtauverbot ein/aus"},
-//{0x62,8,305,1,-1,"Power-Mode Anforderung"},
-//{0x62,8,304,1,-1,"Trinkwasser Prioritätsanforderung"},
-//{0x62,8,303,1,-1,"Betriebsarten Konflikt"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/ALTHERMA(LT_MULTI_HYBRID).h b/include/def/German/ALTHERMA(LT_MULTI_HYBRID).h
deleted file mode 100644
index 02183740..00000000
--- a/include/def/German/ALTHERMA(LT_MULTI_HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Abtauverbot ein/aus"},
-//{0x62,8,305,1,-1,"Power-Mode Anforderung"},
-//{0x62,8,304,1,-1,"Trinkwasser Prioritätsanforderung"},
-//{0x62,8,303,1,-1,"Betriebsarten Konflikt"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,2,300,1,-1,"Hybrid Trinkwassererwärmung"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h b/include/def/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
deleted file mode 100644
index a3901553..00000000
--- a/include/def/German/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,405,1,1,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h b/include/def/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
deleted file mode 100644
index c9bd6c20..00000000
--- a/include/def/German/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
+++ /dev/null
@@ -1,230 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,215,1,-1,"Nicht im Einsatz"},
-//{0x63,12,215,1,-1,"Nicht im Einsatz"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,1,152,2,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h b/include/def/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
deleted file mode 100644
index a3c29c6b..00000000
--- a/include/def/German/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
+++ /dev/null
@@ -1,177 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"2-Phasen-Thermistor (R4T)"},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Eingabe Frostschutztemp. (R5T)"},
-//{0x20,10,105,2,1,"Verlassen der Frostschutztemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,152,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,152,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,152,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Rückmeldung der Solepumpe"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0x30,13,306,1,-1,"Y2S"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"Innengerät Kapazität"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,13,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x63,16,307,1,-1,"Der HP-Betrieb wurde vom Installer abgebrochen"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,-1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,-1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(EGSQH-A series 10kW GEO2).h b/include/def/German/Altherma(EGSQH-A series 10kW GEO2).h
deleted file mode 100644
index 54665cdf..00000000
--- a/include/def/German/Altherma(EGSQH-A series 10kW GEO2).h
+++ /dev/null
@@ -1,218 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"2-Phasen-Thermistor (R4T)"},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Eingabe Frostschutztemp. (R5T)"},
-//{0x20,10,105,2,1,"Verlassen der Frostschutztemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp. (R10T)"},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"SV (Heißgas)"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,13,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Nicht im Einsatz"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h b/include/def/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
deleted file mode 100644
index 8d410abf..00000000
--- a/include/def/German/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
+++ /dev/null
@@ -1,199 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,-1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,8,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x21,12,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,7,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,7,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,7,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,7,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,7,302,1,-1,"4-Wege-Ventil 6"},
-//{0x30,7,301,1,-1,"4-Wege-Ventil 7"},
-//{0x30,7,300,1,-1,"4-Wege-Ventil 8"},
-//{0x30,8,307,1,-1,"Ölsumpfheizung"},
-//{0x30,9,307,1,1,"Y2S-Heißgas-Bypassventil"},
-//{0x30,9,306,1,1,"Y3S-Niederdruck-Bypassventil"},
-//{0x30,10,112,1,1,"Eintrittswassertemperatur (DMW)"},
-//{0x30,11,112,1,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,12,301,1,1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h b/include/def/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
deleted file mode 100644
index bf865d20..00000000
--- a/include/def/German/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"[HPSU] Tv vorlauf Temp (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh vorlauf Temp nach Speicher/BUH (R2T)"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,215,1,-1,"Nicht im Einsatz"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h b/include/def/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
deleted file mode 100644
index a1b5bb8c..00000000
--- a/include/def/German/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,215,1,-1,"Nicht im Einsatz"},
-//{0x63,12,215,1,-1,"Nicht im Einsatz"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h b/include/def/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
deleted file mode 100644
index df067949..00000000
--- a/include/def/German/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,0,152,1,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h b/include/def/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
deleted file mode 100644
index df067949..00000000
--- a/include/def/German/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,0,152,1,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h b/include/def/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
deleted file mode 100644
index 1a370b81..00000000
--- a/include/def/German/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,0,152,1,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h b/include/def/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
deleted file mode 100644
index 1a370b81..00000000
--- a/include/def/German/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,0,152,1,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h b/include/def/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
deleted file mode 100644
index 5846ae3a..00000000
--- a/include/def/German/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druckausgleich"},
-//{0x20,14,405,2,1,"Druckausgleich(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"[HPSU] Tv vorlauf Temp (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh vorlauf Temp nach Speicher/BUH (R2T)"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"[HPSU] Tr rücklauf Temp (R4T)"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h b/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
deleted file mode 100644
index 9e094f69..00000000
--- a/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druckausgleich"},
-//{0x20,14,405,2,1,"Druckausgleich(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h b/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
deleted file mode 100644
index 01359194..00000000
--- a/include/def/German/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (10 rpm)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h b/include/def/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
deleted file mode 100644
index 2becb653..00000000
--- a/include/def/German/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,405,1,1,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h b/include/def/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
deleted file mode 100644
index 928ed490..00000000
--- a/include/def/German/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,405,1,1,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,12,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h b/include/def/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
deleted file mode 100644
index 94dbae6d..00000000
--- a/include/def/German/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
+++ /dev/null
@@ -1,234 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,1,152,2,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h b/include/def/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
deleted file mode 100644
index 3b60a317..00000000
--- a/include/def/German/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp.(R4T)"},
-//{0x20,4,105,2,1,"R2T-Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Saugrohrtemp. (R3T)"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp.(R5T)"},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y3S-Heißgas-Bypassventil"},
-//{0x30,13,306,1,-1,"Y2S-Niederdruck-Bypassventil"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"Magnetventil 2"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,105,2,1,"Mixed water temp."},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x65,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x65,1,152,2,-1,"Adresse des Innengeräts"},
-//{0x65,2,105,2,1,"Auslass Wasser Hex Temp.(Hydro-Split-Modell) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit Mischwasseraustrittstemperatur R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit Mischventilstellung M1S"},
-};
diff --git a/include/def/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h b/include/def/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
deleted file mode 100644
index 9e094f69..00000000
--- a/include/def/German/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druckausgleich"},
-//{0x20,14,405,2,1,"Druckausgleich(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(LT_CB_04-08kW Bizone).h b/include/def/German/Altherma(LT_CB_04-08kW Bizone).h
deleted file mode 100644
index 012eb6dd..00000000
--- a/include/def/German/Altherma(LT_CB_04-08kW Bizone).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(LT_CB_11-16kW Bizone).h b/include/def/German/Altherma(LT_CB_11-16kW Bizone).h
deleted file mode 100644
index 96786331..00000000
--- a/include/def/German/Altherma(LT_CB_11-16kW Bizone).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Y3S: MV Heißgaspybass"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,301,1,-1,"Zusatzpumpe"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-};
diff --git a/include/def/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h b/include/def/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
deleted file mode 100644
index a81eda6f..00000000
--- a/include/def/German/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"AG Wärmetauschertemp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Sauggastemperatur"},
-//{0x20,8,105,2,1,"AG Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp."},
-//{0x20,12,105,2,1,"Platienentemperatur"},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,0,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,2,101,2,-1,"Spannung (VAC)"},
-//{0x21,4,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,6,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,8,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,10,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"Auslass Wasser Wärmetauscher Temp. (R1T)"},
-//{0x61,4,105,2,1,"Auslass Wasser BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h b/include/def/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
deleted file mode 100644
index 655a7234..00000000
--- a/include/def/German/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,7,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,7,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,7,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,7,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,8,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,8,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,8,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,8,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,9,307,1,-1,"Y3S: MV Heißgaspybass"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Magnetventil 3"},
-//{0x30,9,304,1,-1,"Magnetventil 4"},
-//{0x30,9,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,301,1,-1,"Zusatzpumpe"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-};
diff --git a/include/def/German/DEFAULT.h b/include/def/German/DEFAULT.h
deleted file mode 100644
index 5538ce5f..00000000
--- a/include/def/German/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Verdichter (STD)"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,213,1,-1,"AG Software ID"},
-//{0x00,11,213,1,-1,"AG Software ID"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,2,307,1,-1,"Andere Steuer1"},
-//{0x10,2,306,1,-1,"Andere Steuer2"},
-//{0x10,2,305,1,-1,"Andere Steuer3"},
-//{0x10,2,304,1,-1,"Andere Steuer4"},
-//{0x10,2,303,1,-1,"Andere Steuer5"},
-//{0x10,2,302,1,-1,"Andere Steuer6"},
-//{0x10,2,301,1,-1,"Andere Steuer7"},
-//{0x10,2,300,1,-1,"Andere Steuer8"},
-//{0x10,3,307,1,-1,"Andere Steuer9"},
-//{0x10,3,306,1,-1,"Andere Steuer10"},
-//{0x10,3,305,1,-1,"Andere Steuer11"},
-//{0x10,3,304,1,-1,"Andere Steuer12"},
-//{0x10,3,303,1,-1,"Andere Steuer13"},
-//{0x10,3,302,1,-1,"Andere Steuer14"},
-//{0x10,3,301,1,-1,"Andere Steuer15"},
-//{0x10,3,300,1,-1,"Andere Steuer16"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,303,1,-1,"Sonstige Regelung"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"AG Außentemperatur"},
-//{0x20,2,105,2,1,"AG Wärmetauschertemp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"AG Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp."},
-//{0x20,12,105,2,1,"Inverter Platinentemperatur"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x20,16,105,2,-1,"Sensordaten 9"},
-//{0x20,18,105,2,-1,"Sensordaten 10"},
-//{0x20,20,105,2,-1,"Sensordaten 11"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,-1,"Sensordaten 4"},
-//{0x21,8,105,2,-1,"Sensordaten 5"},
-//{0x21,10,105,2,-1,"Sensordaten 6"},
-//{0x21,12,105,2,-1,"Sensordaten 7"},
-//{0x21,14,105,2,-1,"Sensordaten 8"},
-//{0x21,16,105,2,-1,"Sensordaten 9"},
-//{0x21,18,105,2,-1,"Sensordaten 10"},
-//{0x21,20,105,2,-1,"Sensordaten 11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"VDI Frequenz 1 (U/s)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x30,0,302,1,-1,"Magnetventil 6"},
-//{0x30,0,301,1,-1,"Magnetventil 7"},
-//{0x30,0,300,1,-1,"Magnetventil 8"},
-//{0x30,1,307,1,-1,"Magnetventil 9"},
-//{0x30,1,306,1,-1,"Magnetventil 10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"IG Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"Innengerät Kapazität"},
-//{0x60,7,105,2,1,"R/C Einstellpunkt"},
-//{0x60,9,105,2,1,"Hochdruck Sollwert"},
-//{0x60,11,307,1,-1,"Durchflussschalter"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon Heizstab Speicher (BSH)"},
-//{0x60,11,304,1,-1,"HP Preiseingabe"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"3-Wege-Ventil (Kühlen/Heizen)"},
-//{0x60,12,306,1,-1,"4-Wege-Ventil (Raum/DHW)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0x60,12,301,1,-1,"Pumpenleistung"},
-//{0x60,12,300,1,-1,"Solarausgangssignal"},
-//{0x60,13,212,1,-1,"IG Optionscode"},
-//{0x60,14,314,2,-1,"IG Software-Version"},
-//{0x60,15,212,1,-1,"IG EEPROM-Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"Auslass PHE (R1T)"},
-//{0x61,4,105,2,1,"Auslass BUH (R2T)"},
-//{0x61,6,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x61,8,105,2,1,"Einlasstemperatur (R4T)"},
-//{0x61,10,105,2,1,"DHW Temperatur (R5T)"},
-//{0x61,12,105,2,1,"Fernbedienungssensor"},
-};
diff --git a/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h b/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
deleted file mode 100644
index a3901553..00000000
--- a/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitstemperatur (R3T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Niederdruck"},
-//{0x20,14,405,2,1,"Niederdruck in °C"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Magnetventil 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Magnetventil 1"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,405,1,1,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x62,15,405,2,1,"Druckausgleich(T)"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h b/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
deleted file mode 100644
index 96786331..00000000
--- a/include/def/German/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,1,"Kühlkörpertemp."},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x20,16,105,2,-1,"Nicht im Einsatz"},
-//{0x20,18,105,2,-1,"Nicht im Einsatz"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,101,2,-1,"Spannung (VAC)"},
-//{0x21,6,307,1,-1,"Frostschutz Fluss Schalter"},
-//{0x21,6,306,1,-1,"Nicht im Einsatz"},
-//{0x21,6,305,1,-1,"Nicht im Einsatz"},
-//{0x21,6,304,1,-1,"Nicht im Einsatz"},
-//{0x21,6,303,1,-1,"Nicht im Einsatz"},
-//{0x21,6,302,1,-1,"Nicht im Einsatz"},
-//{0x21,6,301,1,-1,"Nicht im Einsatz"},
-//{0x21,6,300,1,-1,"Nicht im Einsatz"},
-//{0x21,7,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,9,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,11,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,13,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x21,15,105,1,-1,"Nicht im Einsatz"},
-//{0x21,16,105,1,-1,"Nicht im Einsatz"},
-//{0x21,17,105,1,-1,"Nicht im Einsatz"},
-//{0x21,18,105,1,-1,"Nicht im Einsatz"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"4-Wege-Ventil 1"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung VDI 1"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Y3S: MV Heißgaspybass"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,301,1,-1,"Zusatzpumpe"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp."},
-};
diff --git a/include/def/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h b/include/def/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
deleted file mode 100644
index a81eda6f..00000000
--- a/include/def/German/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Kältemittel Typ"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Zielniederdruck in °C (Zielverdampfung)"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"AG Wärmetauschertemp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"Sauggastemperatur"},
-//{0x20,8,105,2,1,"AG Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp."},
-//{0x20,12,105,2,1,"Platienentemperatur"},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,0,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,2,101,2,-1,"Spannung (VAC)"},
-//{0x21,4,105,2,1,"Frostschutz Einlasstemp."},
-//{0x21,6,105,2,1,"Frostschutz Auslasstemp."},
-//{0x21,8,105,2,1,"Kühltemp. Verdampfer Ein"},
-//{0x21,10,105,2,1,"Kühltemp. Verdampfer Aus"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,152,1,-1,"VDI Frequenz 2 (U/s)"},
-//{0x30,0,307,1,-1,"Verdichter (STD1)"},
-//{0x30,0,306,1,-1,"Verdichter (STD2)"},
-//{0x30,0,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,1,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,0,151,2,-1,"Expansionsventil (pls)"},
-//{0x30,2,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,4,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,6,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,8,151,2,-1,"Expansionsventil_5 (pls)"},
-//{0x30,0,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,0,306,1,-1,"4-Wege-Ventil 2"},
-//{0x30,0,305,1,-1,"4-Wege-Ventil 3"},
-//{0x30,0,304,1,-1,"4-Wege-Ventil 4"},
-//{0x30,0,303,1,-1,"4-Wege-Ventil 5"},
-//{0x30,0,307,1,-1,"Ölsumpfheizung"},
-//{0x30,0,306,1,-1,"Ölsumpfheizung VDI 2"},
-//{0x30,0,305,1,-1,"Ölsumpfheizung VDI 3"},
-//{0x30,0,304,1,-1,"Ölsumpfheizung 4"},
-//{0x30,0,307,1,-1,"Magnetventil 1"},
-//{0x30,0,306,1,-1,"Magnetventil 2"},
-//{0x30,0,305,1,-1,"Magnetventil 3"},
-//{0x30,0,304,1,-1,"Magnetventil 4"},
-//{0x30,0,303,1,-1,"Magnetventil 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,314,2,-1,"Innengerätecode"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"Auslass Wasser Wärmetauscher Temp. (R1T)"},
-//{0x61,4,105,2,1,"Auslass Wasser BUH Temp. (R2T)"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Nicht im Einsatz"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,152,1,-1,"Nicht im Einsatz"},
-//{0x62,16,307,1,-1,"Nicht im Einsatz"},
-//{0x62,16,306,1,-1,"Nicht im Einsatz"},
-//{0x62,16,305,1,-1,"Nicht im Einsatz"},
-//{0x62,16,304,1,-1,"Nicht im Einsatz"},
-//{0x62,16,303,1,-1,"Nicht im Einsatz"},
-//{0x62,16,302,1,-1,"Nicht im Einsatz"},
-//{0x62,16,301,1,-1,"Nicht im Einsatz"},
-//{0x62,16,300,1,-1,"Nicht im Einsatz"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,316,1,-1,"Hybridbetrieb"},
-//{0x64,2,303,1,-1,"Gas/Boiler Heizung Anforderung"},
-//{0x64,2,302,1,-1,"Gas/Boiler DHW Anforderung"},
-//{0x64,2,301,1,-1,"Bypassventil Ausgang"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/German/EKHWET-BAV3(MULTI DHW TANK).h b/include/def/German/EKHWET-BAV3(MULTI DHW TANK).h
deleted file mode 100644
index 24fa9cd9..00000000
--- a/include/def/German/EKHWET-BAV3(MULTI DHW TANK).h
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Kältemittel Typ"},
-//{0x00,0,152,1,-1,"Maximale Anzahl - Sensoren AG"},
-//{0x00,1,152,1,-1,"Maximale Anzahl - Inverterverdichter"},
-//{0x00,2,152,1,-1,"Maximale Anzahl – Standardverdichter"},
-//{0x00,3,152,1,-1,"Maximale Anzahl - Außengerätelüfter"},
-//{0x00,4,152,1,-1,"Maximale Anzahl - Expansionsventile"},
-//{0x00,5,152,1,-1,"Maximale Anzahl - 4 Wege Ventile"},
-//{0x00,6,152,1,-1,"Maximale Anzahl - Ölsumpfheizungen"},
-//{0x00,7,152,1,-1,"Maximale Anzahl – Magnetventile"},
-//{0x00,8,152,1,-1,"Max. anschließbare Innengerätezahl"},
-//{0x00,9,152,1,-1,"Erkannte DX Innengerätezahl (max. 59 anzeigbar)"},
-//{0x00,10,152,1,-1,"AG Software ID (xx)"},
-//{0x00,11,152,1,-1,"AG Software ID (yy)"},
-//{0x00,12,105,1,-1,"Max. Außengerät Leistung (kW)"},
-//{0x10,0,217,1,-1,"Aktuelle Betriebsart"},
-//{0x10,1,307,1,-1,"Thermostat EIN/AUS"},
-//{0x10,1,306,1,-1,"Wiederanlaufverzögerung"},
-//{0x10,1,305,1,-1,"Anlaufregelung"},
-//{0x10,1,304,1,-1,"Abtauung"},
-//{0x10,1,303,1,-1,"Ölrückführung"},
-//{0x10,1,302,1,-1,"Druckausgleich"},
-//{0x10,1,301,1,-1,"Lastabwurf"},
-//{0x10,1,300,1,-1,"Schallreduzierter Betrieb"},
-//{0x10,4,203,1,-1,"Betrieb / Störung"},
-//{0x10,5,204,1,-1,"Störcode"},
-//{0x10,6,114,2,1,"Not translated yet"},
-//{0x10,8,114,2,1,"Zielhochdruck in °C (Zielverflüssigung)"},
-//{0x10,10,307,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0x10,10,310,1,-1,"Verdichtungsendtemp.Schutz retry"},
-//{0x10,10,303,1,-1,"Verdichterüberstromschutz aktiv"},
-//{0x10,10,311,1,-1,"Verdichterüberstromschutz retry"},
-//{0x10,11,307,1,-1,"Hochdruckschutz aktiv"},
-//{0x10,11,310,1,-1,"Hochdruckschutz retry"},
-//{0x10,11,303,1,-1,"Niederdruckschutz aktiv"},
-//{0x10,11,311,1,-1,"Niederdruckschutz retry"},
-//{0x10,12,307,1,-1,"Inverterplatinentemp.Schutz aktiv"},
-//{0x10,12,310,1,-1,"Inverterplatinentemp.Schutz retry"},
-//{0x10,12,303,1,-1,"Sonstiger Schutzmodus"},
-//{0x10,12,311,1,-1,"Nicht im Einsatz"},
-//{0x11,0,215,1,-1,"AG EEPROM (1. Ziffer)"},
-//{0x11,1,215,1,-1,"AG EEPROM (3. 4. Ziffer)"},
-//{0x11,2,215,1,-1,"AG EEPROM (5. 6. Ziffer)"},
-//{0x11,3,215,1,-1,"AG EEPROM (7. 8. Ziffer)"},
-//{0x11,4,215,1,-1,"AG EEPROM (10. Ziffer)"},
-//{0x11,5,214,1,-1,"AG EEPROM (11. Ziffer)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"R1T-Außentemperatur"},
-//{0x20,2,105,2,1,"O/U Wärmetauscher Temp."},
-//{0x20,4,105,2,1,"Verdichtungsendtemperatur"},
-//{0x20,6,105,2,1,"R21T - Saugleitung VDI 1"},
-//{0x20,8,105,2,1,"Wärmetauscher Mitteltemp."},
-//{0x20,10,105,2,1,"Flüssigkeitsleitungstemp. (R6T)"},
-//{0x20,12,105,2,2,"Hochdruck"},
-//{0x20,12,405,2,1,"Hochdruck in °C"},
-//{0x20,14,105,2,2,"Druck"},
-//{0x20,14,405,2,1,"Druck(T)"},
-//{0x21,0,105,2,-1,"INV Platine Eingangsstrom (A) (Primärkreis)"},
-//{0x21,2,105,2,-1,"Stromaufnahme INV-Verdichter (A) (Sekundärkreis)"},
-//{0x21,4,105,2,1,"Inverter Platinentemperatur"},
-//{0x21,6,105,2,1,"Platinentemperatur Lüfter 1"},
-//{0x21,8,105,2,1,"Platinentemperatur Lüfter 2"},
-//{0x21,10,105,2,1,"Verdichtungsendtemperatur"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Drehzahl Verdichter (U/Sek)"},
-//{0x30,1,211,1,-1,"Ventilator 1 (Stufe)"},
-//{0x30,2,211,1,-1,"Ventilator 2 (Stufe)"},
-//{0x30,3,151,2,-1,"Expansionsventil_1 (pls)"},
-//{0x30,5,151,2,-1,"Y1E-Expansionsventil Mitteldruck_Unterkühler"},
-//{0x30,7,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0x30,9,151,2,-1,"Expansionsventil_4 (pls)"},
-//{0x30,11,307,1,-1,"Y1S-4-Wege-Ventil (ON-VDA/OFF-VFL)"},
-//{0x30,12,307,1,-1,"Ölsumpfheizung"},
-//{0x30,13,307,1,-1,"Not translated yet"},
-//{0x30,13,306,1,-1,"Not translated yet"},
-//{0x30,13,305,1,-1,"Not translated yet"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Ansaugleitungstemperatur"},
-//{0xA0,2,119,2,1,"AG Wärmetauschertemp."},
-//{0xA0,4,119,2,1,"Flüssigkeitsleitungstemp."},
-//{0xA0,6,119,2,2,"Druck"},
-//{0xA0,8,151,2,-1,"Expansionsventil_3 (pls)"},
-//{0xA0,10,152,1,-1,"AG Software ID"},
-//{0xA0,11,152,1,-1,"AG Software ID"},
-//{0xA0,12,307,1,-1,"HPS aktiviert"},
-//{0xA0,12,306,1,-1,"Betrieb absichern"},
-//{0xA0,12,305,1,-1,"Ölsumpfheizung"},
-//{0xA0,12,304,1,-1,"Not translated yet"},
-//{0xA0,12,303,1,-1,"Not translated yet"},
-//{0xA0,12,302,1,-1,"Not translated yet"},
-//{0xA0,12,301,1,-1,"Y1S: 4-Wege-Ventil Wärmetauscher (ON-VDA/OFF-VFL)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Verdichtungsendtemp.Schutz aktiv"},
-//{0xA0,13,302,1,-1,"Aktiver Notlauf"},
-//{0xA0,13,301,1,-1,"Ausblasen der Inneneinheit bei 50 ° C"},
-//{0xA0,13,300,1,-1,"Leistungsstarkes Bit (MT-Einstellungsbit)"},
-//{0xA0,14,105,2,1,"Verdichtertemperatur"},
-//{0xA1,0,119,2,1,"R9T-Wassereintrittstemp. vor PWT"},
-//{0xA1,2,119,2,1,"R10T-Wasseraustrittstemp. nach PWT"},
-//{0xA1,4,302,1,-1,"Y4S-Flüssigkeitnacheinspritung vor VDI"},
-//{0xA1,4,301,1,-1,"Bodenwannen/Ablauf Heizung (Option)"},
-//{0xA1,4,300,1,-1,"Heizband PWT"},
-//{0xA1,5,114,2,1,"Ziel-Verdichtungsendtemperatur"},
-//{0xA1,7,114,2,1,"Zielporttemperatur"},
-//{0xA1,9,305,1,-1,"Monobloc-Einstellung"},
-//{0xA1,9,304,1,-1,"Minichiller-Einstellung"},
-//{0xA1,9,303,1,-1,"MT-Einstellung"},
-//{0xA1,9,302,1,-1,"GSHP-Einstellung"},
-//{0xA1,9,301,1,-1,"Hydro split-Einstellung"},
-//{0xA1,9,300,1,-1,"Altherma LT-Einstellung"},
-//{0x60,0,304,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x60,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x60,2,315,1,-1,"Betriebsart"},
-//{0x60,2,303,1,-1,"Thermostat EIN/AUS"},
-//{0x60,2,302,1,-1,"Frostschutz"},
-//{0x60,2,301,1,-1,"Schallreduzierter Betrieb"},
-//{0x60,2,300,1,-1,"Frostschutz für Wasserleitung"},
-//{0x60,3,204,1,-1,"Störcode"},
-//{0x60,4,152,1,-1,"Fehlerdetailcode"},
-//{0x60,5,203,1,-1,"Betrieb / Störung"},
-//{0x60,6,219,1,-1,"I/U Kapazitätscode"},
-//{0x60,7,105,2,1,"Sollwert Brauchwasser"},
-//{0x60,9,105,2,1,"Sollwert Heizungsvorlauf Hauptzone"},
-//{0x60,11,307,1,-1,"Strömungsschalter (ON=OK)"},
-//{0x60,11,306,1,-1,"Übertemperaturschutz Clixon BUH (ON=OK)"},
-//{0x60,11,305,1,-1,"Übertemperaturschutz Clixon Heizstab Speicher BSH (ON=OK)"},
-//{0x60,11,304,1,-1,"HT/NT Tarif Abschaltung"},
-//{0x60,11,303,1,-1,"Solar Eingang"},
-//{0x60,11,302,1,-1,"Nicht im Einsatz"},
-//{0x60,11,301,1,-1,"Nicht im Einsatz"},
-//{0x60,11,300,1,-1,"Bivalenter Betrieb"},
-//{0x60,12,307,1,-1,"2-Wege-Ventil_Shut Off Valve"},
-//{0x60,12,306,1,-1,"3-Wege-Ventil (ON: DHW/OFF: Raumheizung)"},
-//{0x60,12,305,1,-1,"Heizstab Speicher (BSH)"},
-//{0x60,12,304,1,-1,"Heizstab Stufe 1"},
-//{0x60,12,303,1,-1,"Heizstab Stufe 2"},
-//{0x60,12,302,1,-1,"Fußbodenkreis Abschaltventil"},
-//{0x60,12,301,1,-1,"Umwälzpumpe 1 Hauptzone"},
-//{0x60,12,300,1,-1,"Solarpumpe"},
-//{0x60,13,152,1,-1,"IG Optionscode"},
-//{0x60,15,215,1,-1,"Software Hydrobox (xx)"},
-//{0x60,14,215,1,-1,"Software Hydrobox (yy)"},
-//{0x60,16,152,1,-1,"EEPROM Hydrobox Version"},
-//{0x61,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x61,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x61,2,105,2,1,"R1T-Wasser Vorlauftemp. nach dem Plattenwärmetauscher"},
-//{0x61,4,105,2,1,"R2T-Wasser Vorlauftemp. nach dem Heizstab"},
-//{0x61,6,105,2,1,"R3T-Kältemittel Flüssigkeitstemperatur"},
-//{0x61,8,105,2,1,"R4T-Wasser Rücklauftemp. vor dem Plattenwärmetauscher"},
-//{0x61,10,105,2,1,"R5T-Brauchwassertemperatur im Speicher"},
-//{0x61,12,105,2,1,"IG Luftansaugtemperatur (R1T)"},
-//{0x61,14,105,2,1,"Ext. Raum-/Außentemperatursensor"},
-//{0x62,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x62,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x62,2,307,1,-1,"Brachwasserbetrieb (DHW)"},
-//{0x62,2,306,1,-1,"Speicher Eco-Mode"},
-//{0x62,2,305,1,-1,"Speicher Kompfort-Mode"},
-//{0x62,2,304,1,-1,"Speicher Power-Mode"},
-//{0x62,2,303,1,-1,"Raumheizbetrieb"},
-//{0x62,2,302,1,-1,"System AUS"},
-//{0x62,2,301,1,-1,"Nicht im Einsatz"},
-//{0x62,2,300,1,-1,"Notbetrieb aktiviert/nicht aktiviert"},
-//{0x62,3,105,2,1,"Sollwert Heizungsvorlauf Zusatzzone"},
-//{0x62,5,105,2,1,"Sollwert Raumtemperatur"},
-//{0x62,7,307,1,-1,"Zusatz Raumthermostat Eingang Kühlen"},
-//{0x62,7,306,1,-1,"Zusatz Raumthermostat Eingang Heizen"},
-//{0x62,7,305,1,-1,"Haupt Raumthermostat Eingang Kühlen"},
-//{0x62,7,304,1,-1,"Haupt Raumthermostat Eingang Heizen"},
-//{0x62,7,303,1,-1,"Stromverbrauchsgrenze 4"},
-//{0x62,7,302,1,-1,"Stromverbrauchsgrenze 3"},
-//{0x62,7,301,1,-1,"Stromverbrauchsgrenze 2"},
-//{0x62,7,300,1,-1,"Stromverbrauchsgrenze 1"},
-//{0x62,8,307,1,-1,"Keine"},
-//{0x62,8,306,1,-1,"Nicht im Einsatz"},
-//{0x62,8,305,1,-1,"Nicht im Einsatz"},
-//{0x62,8,304,1,-1,"Heizband PWT"},
-//{0x62,8,303,1,-1,"Speicher Vorheizen"},
-//{0x62,8,302,1,-1,"Umwälzpumpe 2 Zusatzzone"},
-//{0x62,8,301,1,-1,"Alarmausgang"},
-//{0x62,8,300,1,-1,"Ausgang Betriebsmeldung"},
-//{0x62,9,105,2,-1,"Durchflussmenge (l/min)"},
-//{0x62,11,105,1,2,"Wasserdruck"},
-//{0x62,12,152,1,-1,"Pumpengeschwindigkeit (0: Max-100: Stop)"},
-//{0x62,13,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 1"},
-//{0x62,14,152,1,-1,"[Zukunft] 3-Wege-Ventil Mischung 2"},
-//{0x62,15,105,2,2,"Kältemittel-Drucksensor"},
-//{0x63,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x63,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3. Ziffer)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4. 5. Ziffer)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6. 7. Ziffer)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8. 9. Ziffer)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11. Ziffer)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12. Ziffer)(rev.)"},
-//{0x63,8,215,1,-1,"Nicht im Einsatz"},
-//{0x63,9,215,1,-1,"Nicht im Einsatz"},
-//{0x63,10,215,1,-1,"Nicht im Einsatz"},
-//{0x63,11,215,1,-1,"Nicht im Einsatz"},
-//{0x63,12,215,1,-1,"Nicht im Einsatz"},
-//{0x63,13,311,1,-1,"BUH Ausgangskapazität"},
-//{0x63,14,161,1,-1,"CT-Sensormessung (L1)"},
-//{0x63,15,161,1,-1,"CT-Sensormessung (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"CT-Sensormessung (L3)"},
-//{0x64,0,307,1,-1,"Daten Aktivieren/Deaktivieren"},
-//{0x64,1,152,1,-1,"Adresse des Innengeräts"},
-//{0x64,2,307,1,-1,"Not translated yet"},
-//{0x64,2,306,1,-1,"Abtauung"},
-//{0x64,2,305,1,-1,"Power-Mode Anforderung"},
-//{0x64,2,304,1,-1,"Trinkwasser Prioritätsanforderung"},
-//{0x64,2,303,1,-1,"Not translated yet"},
-//{0x64,2,302,1,-1,"Zusatzpumpe"},
-//{0x64,2,301,1,-1,"Main pump"},
-//{0x64,2,300,1,-1,"Not translated yet"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Hybrid Heizung Solltemp."},
-//{0x64,7,105,2,1,"Gas/Boiler Heizung Solltemp."},
-//{0x64,9,302,1,-1,"Zusatzpumpe"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,105,2,1,"Mischwassertemperatur"},
-//{0x64,12,105,2,1,"Zusatztemperaturfühler Brauchwasser DHW"},
-//{0x64,14,152,1,1,"Ziel Delta T (Heizen) (K)"},
-//{0x64,15,152,1,1,"Ziel Delta T (Kühlen) (K)"},
-};
diff --git a/include/def/Italian/ALTHERMA(HYBRID).h b/include/def/Italian/ALTHERMA(HYBRID).h
deleted file mode 100644
index 98aff9a2..00000000
--- a/include/def/Italian/ALTHERMA(HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. aria esterna"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. Media scambiatore di calore O/U"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido"},
-//{0x20,12,105,2,1,"Temp. aletta INV"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Tensione (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,303,1,-1,"Riscaldatore del carter 5"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua in uscita scambiatore di calore (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua in uscita BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. RT"},
-//{0x61,14,105,2,1,"Sensore est. o ambiente esterno"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Funz. raff./risc. ambienti o BPH"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,2,300,1,-1,"Modalità ACS ibrida"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/ALTHERMA(LT_CA_CB_04-08KW).h b/include/def/Italian/ALTHERMA(LT_CA_CB_04-08KW).h
deleted file mode 100644
index c8725940..00000000
--- a/include/def/Italian/ALTHERMA(LT_CA_CB_04-08KW).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/ALTHERMA(LT_CA_CB_11-16KW).h b/include/def/Italian/ALTHERMA(LT_CA_CB_11-16KW).h
deleted file mode 100644
index d4d114f8..00000000
--- a/include/def/Italian/ALTHERMA(LT_CA_CB_11-16KW).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,7,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,7,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,7,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,7,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,8,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,8,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,8,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,8,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,9,307,1,-1,"SV1 (gas caldo)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Elettrovalvola 3"},
-//{0x30,9,304,1,-1,"Elettrovalvola 4"},
-//{0x30,9,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Italian/ALTHERMA(LT_MULTI_DHWHP).h b/include/def/Italian/ALTHERMA(LT_MULTI_DHWHP).h
deleted file mode 100644
index cab571ad..00000000
--- a/include/def/Italian/ALTHERMA(LT_MULTI_DHWHP).h
+++ /dev/null
@@ -1,219 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Inibizione sbrinamento ON/OFF"},
-//{0x62,8,305,1,-1,"Richiesta powerfull"},
-//{0x62,8,304,1,-1,"Priorità richiesta ACS"},
-//{0x62,8,303,1,-1,"Conflitto modalità"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/ALTHERMA(LT_MULTI_HYBRID).h b/include/def/Italian/ALTHERMA(LT_MULTI_HYBRID).h
deleted file mode 100644
index fe2a3a71..00000000
--- a/include/def/Italian/ALTHERMA(LT_MULTI_HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Inibizione sbrinamento ON/OFF"},
-//{0x62,8,305,1,-1,"Richiesta powerfull"},
-//{0x62,8,304,1,-1,"Priorità richiesta ACS"},
-//{0x62,8,303,1,-1,"Conflitto modalità"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,2,300,1,-1,"Modalità ACS ibrida"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h b/include/def/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
deleted file mode 100644
index cefc53c2..00000000
--- a/include/def/Italian/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temperatura liquido (R3T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,405,1,1,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h b/include/def/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
deleted file mode 100644
index d63fa68b..00000000
--- a/include/def/Italian/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
+++ /dev/null
@@ -1,230 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,215,1,-1,"Non in uso"},
-//{0x63,12,215,1,-1,"Non in uso"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,1,152,2,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h b/include/def/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
deleted file mode 100644
index 2ecf9543..00000000
--- a/include/def/Italian/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
+++ /dev/null
@@ -1,177 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Termistore 2 fasi (R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Inserimento temp. salamoia (R5T)"},
-//{0x20,10,105,2,1,"Temp. salamoia uscita (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,152,2,1,"Fan1 Fin temp."},
-//{0x21,8,152,2,1,"Fan2 Fin temp."},
-//{0x21,10,152,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Feedback pompa salamoia"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0x30,13,306,1,-1,"Y2S"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Capacità unità interna"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,13,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x63,16,307,1,-1,"Operazione HP forzata dall installatore"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,-1,"Target delta T heating"},
-//{0x64,15,152,1,-1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(EGSQH-A series 10kW GEO2).h b/include/def/Italian/Altherma(EGSQH-A series 10kW GEO2).h
deleted file mode 100644
index 9f95c101..00000000
--- a/include/def/Italian/Altherma(EGSQH-A series 10kW GEO2).h
+++ /dev/null
@@ -1,218 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Termistore 2 fasi (R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Inserimento temp. salamoia (R5T)"},
-//{0x20,10,105,2,1,"Temp. salamoia uscita (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore (R10T)"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"SV (gas caldo)"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,13,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Non in uso"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h b/include/def/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
deleted file mode 100644
index 98dfb076..00000000
--- a/include/def/Italian/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
+++ /dev/null
@@ -1,199 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,-1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,8,105,2,1,"Temp. uscita salamoia"},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x21,12,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,7,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,7,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,7,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,7,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,7,302,1,-1,"Valvola a 4 vie 6"},
-//{0x30,7,301,1,-1,"Valvola a 4 vie 7"},
-//{0x30,7,300,1,-1,"Valvola a 4 vie 8"},
-//{0x30,8,307,1,-1,"Riscaldatore del carter"},
-//{0x30,9,307,1,1,"Valvola bypass gas caldo (Y2S)"},
-//{0x30,9,306,1,1,"Valvola di bypass a bassa pressione (Y3S)"},
-//{0x30,10,112,1,1,"Temperatura dell acqua in ingresso. (DMW)"},
-//{0x30,11,112,1,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,12,301,1,1,"Valvola a 4 vie (Y1S)"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h b/include/def/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
deleted file mode 100644
index 4d35dc07..00000000
--- a/include/def/Italian/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp mandata (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp mandata doppo barile/BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,215,1,-1,"Non in uso"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h b/include/def/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
deleted file mode 100644
index 4fb407e4..00000000
--- a/include/def/Italian/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,215,1,-1,"Non in uso"},
-//{0x63,12,215,1,-1,"Non in uso"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h b/include/def/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
deleted file mode 100644
index fd8203f6..00000000
--- a/include/def/Italian/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,0,152,1,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h b/include/def/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
deleted file mode 100644
index fd8203f6..00000000
--- a/include/def/Italian/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,0,152,1,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h b/include/def/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
deleted file mode 100644
index f8791818..00000000
--- a/include/def/Italian/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,0,152,1,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h b/include/def/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
deleted file mode 100644
index f8791818..00000000
--- a/include/def/Italian/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,0,152,1,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h b/include/def/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
deleted file mode 100644
index 1b8895b1..00000000
--- a/include/def/Italian/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Sensore di pressione"},
-//{0x20,14,405,2,1,"Sensore di pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp mandata (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp mandata doppo barile/BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"[HPSU] Tr Temp ritorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h b/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
deleted file mode 100644
index 84781a77..00000000
--- a/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Sensore di pressione"},
-//{0x20,14,405,2,1,"Sensore di pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h b/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
deleted file mode 100644
index 30edada4..00000000
--- a/include/def/Italian/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temperatura liquido (R3T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (10 rpm)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h b/include/def/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
deleted file mode 100644
index 327a29fd..00000000
--- a/include/def/Italian/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temperatura liquido (R3T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,405,1,1,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,1,152,1,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h b/include/def/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
deleted file mode 100644
index 6a169c15..00000000
--- a/include/def/Italian/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temperatura liquido (R3T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,405,1,1,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,12,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h b/include/def/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
deleted file mode 100644
index fcbbb732..00000000
--- a/include/def/Italian/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
+++ /dev/null
@@ -1,234 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,1,152,2,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h b/include/def/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
deleted file mode 100644
index 60f48577..00000000
--- a/include/def/Italian/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U(R4T)"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico(R2T)"},
-//{0x20,6,105,2,1,"Temp. tubo di aspirazione(R3T)"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Valvola bypass gas caldo (Y3S)"},
-//{0x30,13,306,1,-1,"Valvola di bypass a bassa pressione (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"Elettrovalvola 2"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,105,2,1,"Mixed water temp.(R7T)"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x65,1,152,2,-1,"Indirizzo unità interna"},
-//{0x65,2,105,2,1,"Temperatura esagonale acqua in uscita (modello idrosplit) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura dell acqua miscelata in uscita R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posizione della valvola di miscelazione M1S"},
-};
diff --git a/include/def/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h b/include/def/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
deleted file mode 100644
index 84781a77..00000000
--- a/include/def/Italian/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Sensore di pressione"},
-//{0x20,14,405,2,1,"Sensore di pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(LT_CB_04-08kW Bizone).h b/include/def/Italian/Altherma(LT_CB_04-08kW Bizone).h
deleted file mode 100644
index c8725940..00000000
--- a/include/def/Italian/Altherma(LT_CB_04-08kW Bizone).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(LT_CB_11-16kW Bizone).h b/include/def/Italian/Altherma(LT_CB_11-16kW Bizone).h
deleted file mode 100644
index 3024976b..00000000
--- a/include/def/Italian/Altherma(LT_CB_11-16kW Bizone).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"SV1 (gas caldo)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h b/include/def/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
deleted file mode 100644
index 5a120c33..00000000
--- a/include/def/Italian/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore esterno"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore esterno"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido"},
-//{0x20,12,105,2,1,"Temp. aletta"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,0,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,2,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,4,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,6,105,2,1,"Temp. uscita salamoia"},
-//{0x21,8,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,10,105,2,1,"Usc. evap. temp. refrig."},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua in uscita scambiatore di calore (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua in uscita BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h b/include/def/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
deleted file mode 100644
index d4d114f8..00000000
--- a/include/def/Italian/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,7,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,7,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,7,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,7,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,8,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,8,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,8,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,8,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,9,307,1,-1,"SV1 (gas caldo)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Elettrovalvola 3"},
-//{0x30,9,304,1,-1,"Elettrovalvola 4"},
-//{0x30,9,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Italian/DEFAULT.h b/include/def/Italian/DEFAULT.h
deleted file mode 100644
index c23d381f..00000000
--- a/include/def/Italian/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Compressore STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,213,1,-1,"O/U MPU ID"},
-//{0x00,11,213,1,-1,"O/U MPU ID"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,2,307,1,-1,"Altro controllo 1"},
-//{0x10,2,306,1,-1,"Altro controllo 2"},
-//{0x10,2,305,1,-1,"Altro controllo 3"},
-//{0x10,2,304,1,-1,"Altro controllo 4"},
-//{0x10,2,303,1,-1,"Altro controllo 5"},
-//{0x10,2,302,1,-1,"Altro controllo 6"},
-//{0x10,2,301,1,-1,"Altro controllo 7"},
-//{0x10,2,300,1,-1,"Altro controllo 8"},
-//{0x10,3,307,1,-1,"Altro controllo 9"},
-//{0x10,3,306,1,-1,"Altro controllo 10"},
-//{0x10,3,305,1,-1,"Altro controllo 11"},
-//{0x10,3,304,1,-1,"Altro controllo 12"},
-//{0x10,3,303,1,-1,"Altro controllo 13"},
-//{0x10,3,302,1,-1,"Altro controllo 14"},
-//{0x10,3,301,1,-1,"Altro controllo 15"},
-//{0x10,3,300,1,-1,"Altro controllo 16"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,303,1,-1,"Altro controllo"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. aria esterna"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore esterno"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore esterno"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido"},
-//{0x20,12,105,2,1,"Temp. aletta INV"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x20,16,105,2,-1,"Dati del sensore 9"},
-//{0x20,18,105,2,-1,"Dati del sensore 10"},
-//{0x20,20,105,2,-1,"Dati del sensore 11"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,-1,"Dati del sensore 4"},
-//{0x21,8,105,2,-1,"Dati del sensore 5"},
-//{0x21,10,105,2,-1,"Dati del sensore 6"},
-//{0x21,12,105,2,-1,"Dati del sensore 7"},
-//{0x21,14,105,2,-1,"Dati del sensore 8"},
-//{0x21,16,105,2,-1,"Dati del sensore 9"},
-//{0x21,18,105,2,-1,"Dati del sensore 10"},
-//{0x21,20,105,2,-1,"Dati del sensore 11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV 1 (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x30,0,302,1,-1,"Elettrovalvola 6"},
-//{0x30,0,301,1,-1,"Elettrovalvola 7"},
-//{0x30,0,300,1,-1,"Elettrovalvola 8"},
-//{0x30,1,307,1,-1,"Elettrovalvola 9"},
-//{0x30,1,306,1,-1,"Elettrovalvola 10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"Modalità di funzionamento interna"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Capacità unità interna"},
-//{0x60,7,105,2,1,"Valore di riferimento R/C"},
-//{0x60,9,105,2,1,"Valore di riferimento uscita H/P"},
-//{0x60,11,307,1,-1,"Interruttore flusso"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon BSH"},
-//{0x60,11,304,1,-1,"Entrata tariffa HP"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 3 vie (raffreddamento/riscaldamento)"},
-//{0x60,12,306,1,-1,"Valvola a 4 vie (Ambienti/DHW)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"Riscaldatore piastra fondo"},
-//{0x60,12,301,1,-1,"Uscita pompa"},
-//{0x60,12,300,1,-1,"Segnale uscita solare"},
-//{0x60,13,212,1,-1,"Codice opzione interna"},
-//{0x60,14,314,2,-1,"Versione software interno"},
-//{0x60,15,212,1,-1,"Versione EEPROM interna"},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Uscita PHE(R1T)"},
-//{0x61,4,105,2,1,"Uscita BUH(R2T)"},
-//{0x61,6,105,2,1,"Temperatura liquido (R3T)"},
-//{0x61,8,105,2,1,"Temperatura ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temperatura DHW (R5T)"},
-//{0x61,12,105,2,1,"Termistore Remocon"},
-};
diff --git a/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h b/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
deleted file mode 100644
index cefc53c2..00000000
--- a/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temperatura liquido (R3T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Bassa pressione"},
-//{0x20,14,405,2,1,"Bassa pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Elettrovalvola 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Elettrovalvola 1"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,405,1,1,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x62,15,405,2,1,"Sensore di pressione(T)"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h b/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
deleted file mode 100644
index 3024976b..00000000
--- a/include/def/Italian/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. dissipatore"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x20,16,105,2,-1,"Non in uso"},
-//{0x20,18,105,2,-1,"Non in uso"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,6,307,1,-1,"Interruttore flusso salamoia"},
-//{0x21,6,306,1,-1,"Non in uso"},
-//{0x21,6,305,1,-1,"Non in uso"},
-//{0x21,6,304,1,-1,"Non in uso"},
-//{0x21,6,303,1,-1,"Non in uso"},
-//{0x21,6,302,1,-1,"Non in uso"},
-//{0x21,6,301,1,-1,"Non in uso"},
-//{0x21,6,300,1,-1,"Non in uso"},
-//{0x21,7,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,9,105,2,1,"Temp. uscita salamoia"},
-//{0x21,11,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,13,105,2,1,"Usc. evap. temp. refrig."},
-//{0x21,15,105,1,-1,"Non in uso"},
-//{0x21,16,105,1,-1,"Non in uso"},
-//{0x21,17,105,1,-1,"Non in uso"},
-//{0x21,18,105,1,-1,"Non in uso"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie 1"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter 1"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"SV1 (gas caldo)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"BPH"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h b/include/def/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
deleted file mode 100644
index 5a120c33..00000000
--- a/include/def/Italian/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo di refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Temp. evap. target"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore esterno"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore esterno"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido"},
-//{0x20,12,105,2,1,"Temp. aletta"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,0,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,2,101,2,-1,"Voltaggio (N-fase) (V)"},
-//{0x21,4,105,2,1,"Temp. ingresso salamoia"},
-//{0x21,6,105,2,1,"Temp. uscita salamoia"},
-//{0x21,8,105,2,1,"Ing. evap. temp. refrig."},
-//{0x21,10,105,2,1,"Usc. evap. temp. refrig."},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,152,1,-1,"Frequenza INV 2 (giri/sec.)"},
-//{0x30,0,307,1,-1,"Compressore STD 1"},
-//{0x30,0,306,1,-1,"Compressore STD 2"},
-//{0x30,0,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,1,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,0,151,2,-1,"Valvola di espansione elettron.(pls)"},
-//{0x30,2,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,4,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,6,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,8,151,2,-1,"Valvola di espansione elettron.5(pls)"},
-//{0x30,0,307,1,-1,"Valvola a 4 vie"},
-//{0x30,0,306,1,-1,"Valvola a 4 vie 2"},
-//{0x30,0,305,1,-1,"Valvola a 4 vie 3"},
-//{0x30,0,304,1,-1,"Valvola a 4 vie 4"},
-//{0x30,0,303,1,-1,"Valvola a 4 vie 5"},
-//{0x30,0,307,1,-1,"Riscaldatore del carter"},
-//{0x30,0,306,1,-1,"Riscaldatore del carter 2"},
-//{0x30,0,305,1,-1,"Riscaldatore del carter 3"},
-//{0x30,0,304,1,-1,"Riscaldatore del carter 4"},
-//{0x30,0,307,1,-1,"Elettrovalvola 1"},
-//{0x30,0,306,1,-1,"Elettrovalvola 2"},
-//{0x30,0,305,1,-1,"Elettrovalvola 3"},
-//{0x30,0,304,1,-1,"Elettrovalvola 4"},
-//{0x30,0,303,1,-1,"Elettrovalvola 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,314,2,-1,"Codice unità interna"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua in uscita scambiatore di calore (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua in uscita BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Non in uso"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,152,1,-1,"Non in uso"},
-//{0x62,16,307,1,-1,"Non in uso"},
-//{0x62,16,306,1,-1,"Non in uso"},
-//{0x62,16,305,1,-1,"Non in uso"},
-//{0x62,16,304,1,-1,"Non in uso"},
-//{0x62,16,303,1,-1,"Non in uso"},
-//{0x62,16,302,1,-1,"Non in uso"},
-//{0x62,16,301,1,-1,"Non in uso"},
-//{0x62,16,300,1,-1,"Non in uso"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,214,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,316,1,-1,"Modalità funz. ibrido"},
-//{0x64,2,303,1,-1,"Funzionamento boiler su richiesta"},
-//{0x64,2,302,1,-1,"Boiler DHW su richiesta"},
-//{0x64,2,301,1,-1,"Uscita valvola bypass"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Italian/EKHWET-BAV3(MULTI DHW TANK).h b/include/def/Italian/EKHWET-BAV3(MULTI DHW TANK).h
deleted file mode 100644
index 9c5187db..00000000
--- a/include/def/Italian/EKHWET-BAV3(MULTI DHW TANK).h
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo di refrigerante"},
-//{0x00,0,152,1,-1,"Qtà dati sensore"},
-//{0x00,1,152,1,-1,"Qtà compressori INV"},
-//{0x00,2,152,1,-1,"Qtà compressori STD"},
-//{0x00,3,152,1,-1,"Qtà dati ventilatore"},
-//{0x00,4,152,1,-1,"Qtà dati valvola di espansione"},
-//{0x00,5,152,1,-1,"Qtà dati valvola a 4 vie"},
-//{0x00,6,152,1,-1,"Qtà riscaldatori del carter"},
-//{0x00,7,152,1,-1,"Qtà elettrovalvole"},
-//{0x00,8,152,1,-1,"Qtà max. unità interne collegabili"},
-//{0x00,9,152,1,-1,"Qtà unità interne collegate"},
-//{0x00,10,152,1,-1,"O/U MPU ID (xx)"},
-//{0x00,11,152,1,-1,"O/U MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacità O/U (kW)"},
-//{0x10,0,217,1,-1,"Modo di funzionamento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Standby riavvio"},
-//{0x10,1,305,1,-1,"Controllo all avviamento"},
-//{0x10,1,304,1,-1,"Sbrinamento"},
-//{0x10,1,303,1,-1,"Recupero dell’olio"},
-//{0x10,1,302,1,-1,"Funzionamento regolazione di pressione"},
-//{0x10,1,301,1,-1,"Segnale su richiesta"},
-//{0x10,1,300,1,-1,"Controllo bassa rumorosità"},
-//{0x10,4,203,1,-1,"Tipo malfunzionamento"},
-//{0x10,5,204,1,-1,"Codice malfunzionamento"},
-//{0x10,6,114,2,1,"Not translated yet"},
-//{0x10,8,114,2,1,"Temp. Cond. target"},
-//{0x10,10,307,1,-1,"Calo temp. scarico"},
-//{0x10,10,310,1,-1,"Qtà tentativi protezione temp. Scarico"},
-//{0x10,10,303,1,-1,"Calo corrente INV comp."},
-//{0x10,10,311,1,-1,"Qtà tentativi protezione corrente INV comp."},
-//{0x10,11,307,1,-1,"Controllo calo HP"},
-//{0x10,11,310,1,-1,"Qtà tentativi protezione HP"},
-//{0x10,11,303,1,-1,"Controllo calo LP"},
-//{0x10,11,311,1,-1,"Qtà tentativi protezione LP"},
-//{0x10,12,307,1,-1,"Controllo calo temp. aletta"},
-//{0x10,12,310,1,-1,"Qtà tentativi protezione temp. aletta"},
-//{0x10,12,303,1,-1,"Altro controllo calo"},
-//{0x10,12,311,1,-1,"Non in uso"},
-//{0x11,0,215,1,-1,"O/U EEPROM (1º cifra)"},
-//{0x11,1,215,1,-1,"O/U EEPROM (3º 4º cifra)"},
-//{0x11,2,215,1,-1,"O/U EEPROM (5º 6º cifra)"},
-//{0x11,3,215,1,-1,"O/U EEPROM (7º 8º cifre)"},
-//{0x11,4,215,1,-1,"O/U EEPROM (10º cifre)"},
-//{0x11,5,214,1,-1,"O/U EEPROM (11º cifra)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temperatura dell aria esterna(R1T)"},
-//{0x20,2,105,2,1,"Temp. scambiatore di calore O/U"},
-//{0x20,4,105,2,1,"Temperatura tubo di scarico"},
-//{0x20,6,105,2,1,"Temperatura linea di aspirazione"},
-//{0x20,8,105,2,1,"Temp. media scambiatore di calore"},
-//{0x20,10,105,2,1,"Temp. tubo del liquido (R6T)"},
-//{0x20,12,105,2,2,"Alta pressione"},
-//{0x20,12,405,2,1,"Alta pressione(T)"},
-//{0x20,14,105,2,2,"Pressione"},
-//{0x20,14,405,2,1,"Pressione(T)"},
-//{0x21,0,105,2,-1,"Corrente primaria INV (A)"},
-//{0x21,2,105,2,-1,"Corrente secondaria INV (A)"},
-//{0x21,4,105,2,1,"Temp. aletta INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura uscita compressore"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frequenza INV (giri/sec.)"},
-//{0x30,1,211,1,-1,"Ventilatore 1 (gradino)"},
-//{0x30,2,211,1,-1,"Ventilatore 2 (gradino)"},
-//{0x30,3,151,2,-1,"Valvola di espansione elettron.1(pls)"},
-//{0x30,5,151,2,-1,"Valvola di espansione elettron.2(pls)"},
-//{0x30,7,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0x30,9,151,2,-1,"Valvola di espansione elettron.4(pls)"},
-//{0x30,11,307,1,-1,"Valvola a 4 vie"},
-//{0x30,12,307,1,-1,"Riscaldatore del carter"},
-//{0x30,13,307,1,-1,"Not translated yet"},
-//{0x30,13,306,1,-1,"Not translated yet"},
-//{0x30,13,305,1,-1,"Not translated yet"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temperatura linea di aspirazione"},
-//{0xA0,2,119,2,1,"Temp. scambiatore di calore esterno"},
-//{0xA0,4,119,2,1,"Temp. tubo del liquido"},
-//{0xA0,6,119,2,2,"Pressione"},
-//{0xA0,8,151,2,-1,"Valvola di espansione elettron.3(pls)"},
-//{0xA0,10,152,1,-1,"O/U MPU ID"},
-//{0xA0,11,152,1,-1,"O/U MPU ID"},
-//{0xA0,12,307,1,-1,"HPS attivato"},
-//{0xA0,12,306,1,-1,"Operazione di salvaguardia"},
-//{0xA0,12,305,1,-1,"Riscaldatore del carter"},
-//{0xA0,12,304,1,-1,"Not translated yet"},
-//{0xA0,12,303,1,-1,"Not translated yet"},
-//{0xA0,12,302,1,-1,"Not translated yet"},
-//{0xA0,12,301,1,-1,"Valvola a 4 vie (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Calo temp. scarico"},
-//{0xA0,13,302,1,-1,"Durante le operazioni di emergenza"},
-//{0xA0,13,301,1,-1,"Bandiera unità interna da 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit di impostazione MT)"},
-//{0xA0,14,105,2,1,"Temperatura della porta del compressore"},
-//{0xA1,0,119,2,1,"(Dati grezzi)Temperatura di ingresso scambiatore di calore acqua"},
-//{0xA1,2,119,2,1,"(Dati grezzi)Temperatura di uscita dello scambiatore di calore dell acqua"},
-//{0xA1,4,302,1,-1,"Elettrovalvola INJ liquida (Y4S)"},
-//{0xA1,4,301,1,-1,"Riscaldatore piastra fondo"},
-//{0xA1,4,300,1,-1,"Riscaldatore PHE"},
-//{0xA1,5,114,2,1,"Temp. scarico target"},
-//{0xA1,7,114,2,1,"Temperatura della porta target"},
-//{0xA1,9,305,1,-1,"Impostazione Monobloc"},
-//{0xA1,9,304,1,-1,"Impostazione Minichiller"},
-//{0xA1,9,303,1,-1,"Impostazione MT"},
-//{0xA1,9,302,1,-1,"Impostazione GSHP"},
-//{0xA1,9,301,1,-1,"Impostazione Hydro split"},
-//{0xA1,9,300,1,-1,"Impostazione Altherma LT"},
-//{0x60,0,304,1,-1,"Abilita/disabilita dati"},
-//{0x60,1,152,1,-1,"Indirizzo unità interna"},
-//{0x60,2,315,1,-1,"I/U modo di funzionamento"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Prevenzione congelamento"},
-//{0x60,2,301,1,-1,"Modalità silenziosa"},
-//{0x60,2,300,1,-1,"Prevenzione del congelamento per le tubazioni dell acqua"},
-//{0x60,3,204,1,-1,"Codice malfunzionamento"},
-//{0x60,4,152,1,-1,"Codice dettagliato errore"},
-//{0x60,5,203,1,-1,"Tipo malfunzionamento"},
-//{0x60,6,219,1,-1,"Codice capacità I/U"},
-//{0x60,7,105,2,1,"Valore di riferimento DHW"},
-//{0x60,9,105,2,1,"Valore di riferimento LW (principale)"},
-//{0x60,11,307,1,-1,"Interruttore portata d acqua"},
-//{0x60,11,306,1,-1,"Protezione termica (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protezione termica BSH"},
-//{0x60,11,304,1,-1,"Alimentazione flusso kWh benefit"},
-//{0x60,11,303,1,-1,"Entrata solare"},
-//{0x60,11,302,1,-1,"Non in uso"},
-//{0x60,11,301,1,-1,"Non in uso"},
-//{0x60,11,300,1,-1,"Funzionamento bivalente"},
-//{0x60,12,307,1,-1,"Valvola a 2 vie (On:Riscaldamento_Off:Raffreddamento)"},
-//{0x60,12,306,1,-1,"Valvola a 3 vie (On:DHW_Off:Ambienti)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"Gradino1 BUH"},
-//{0x60,12,303,1,-1,"Gradino2 BUH"},
-//{0x60,12,302,1,-1,"Valvola chiusura pavimento"},
-//{0x60,12,301,1,-1,"Funzionamento pompa dell acqua"},
-//{0x60,12,300,1,-1,"Funzionamento pompa solare"},
-//{0x60,13,152,1,-1,"Codice opzione interna"},
-//{0x60,15,215,1,-1,"I/U Software ID (xx)"},
-//{0x60,14,215,1,-1,"I/U Software ID (yy)"},
-//{0x60,16,152,1,-1,"I/U EEPROM Ver."},
-//{0x61,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x61,1,152,1,-1,"Indirizzo unità interna"},
-//{0x61,2,105,2,1,"Temp. acqua uscita prima BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. acqua uscita dopo BUH (R2T)"},
-//{0x61,6,105,2,1,"Lato liquido temp. refrig. (R3T)"},
-//{0x61,8,105,2,1,"Temp. acqua ingresso (R4T)"},
-//{0x61,10,105,2,1,"Temp. serbatoio DHW (R5T)"},
-//{0x61,12,105,2,1,"Temp. ambiente interna (R1T)"},
-//{0x61,14,105,2,1,"Sensore ambiente interno est. (R6T)"},
-//{0x62,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x62,1,152,1,-1,"Indirizzo unità interna"},
-//{0x62,2,307,1,-1,"Risc. prev/mant ON/OFF"},
-//{0x62,2,306,1,-1,"Eco serbatoio ON/OFF"},
-//{0x62,2,305,1,-1,"Comfort serbatoio ON/OFF"},
-//{0x62,2,304,1,-1,"Funzionamento DHW potente. ON/OFF"},
-//{0x62,2,303,1,-1,"Funzionamento riscaldamento di ambienti ON/OFF"},
-//{0x62,2,302,1,-1,"Sistema OFF"},
-//{0x62,2,301,1,-1,"Non in uso"},
-//{0x62,2,300,1,-1,"Emergenza (interna) Attiva/non Attiva"},
-//{0x62,3,105,2,1,"Valore di riferimento LW (aggiuntivo)"},
-//{0x62,5,105,2,1,"Valore di riferimento RT"},
-//{0x62,7,307,1,-1,"Raffredd. entrata RT est. agg."},
-//{0x62,7,306,1,-1,"Riscaldam. entrata RT est. agg."},
-//{0x62,7,305,1,-1,"Raffreddamento RT principale"},
-//{0x62,7,304,1,-1,"Riscaldamento RT principale"},
-//{0x62,7,303,1,-1,"Limite 4 consumo energetico"},
-//{0x62,7,302,1,-1,"Limite 3 consumo energetico"},
-//{0x62,7,301,1,-1,"Limite 2 consumo energetico"},
-//{0x62,7,300,1,-1,"Limite 1 consumo energetico"},
-//{0x62,8,307,1,-1,"Nessuno"},
-//{0x62,8,306,1,-1,"Non in uso"},
-//{0x62,8,305,1,-1,"Non in uso"},
-//{0x62,8,304,1,-1,"Riscaldatore PHE"},
-//{0x62,8,303,1,-1,"Prerisc. serbatoio ON/OFF"},
-//{0x62,8,302,1,-1,"Funzionamento pompa di circolazione"},
-//{0x62,8,301,1,-1,"Uscita allarme"},
-//{0x62,8,300,1,-1,"Uscita funzionamento riscald. ambienti"},
-//{0x62,9,105,2,-1,"Sensore flusso (l/min)"},
-//{0x62,11,105,1,2,"Pressione acqua"},
-//{0x62,12,152,1,-1,"Segnale pompa dell acqua (0:max-100:stop)"},
-//{0x62,13,152,1,-1,"[Futuro] Mixing 1 valvola a 3 vie"},
-//{0x62,14,152,1,-1,"[Futuro] Mixing 2 valvola a 3 vie"},
-//{0x62,15,105,2,2,"Sensore di pressione del refrigerante"},
-//{0x63,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x63,1,152,1,-1,"Indirizzo unità interna"},
-//{0x63,2,215,1,-1,"I/U EEPROM (3º cifra)"},
-//{0x63,3,215,1,-1,"I/U EEPROM (4º 5º cifra)"},
-//{0x63,4,215,1,-1,"I/U EEPROM (6º 7º cifra)"},
-//{0x63,5,215,1,-1,"I/U EEPROM (8º 9º cifra)"},
-//{0x63,6,215,1,-1,"I/U EEPROM (11º cifra)"},
-//{0x63,7,215,1,-1,"I/U EEPROM (12º cifre)(rev.)"},
-//{0x63,8,215,1,-1,"Non in uso"},
-//{0x63,9,215,1,-1,"Non in uso"},
-//{0x63,10,215,1,-1,"Non in uso"},
-//{0x63,11,215,1,-1,"Non in uso"},
-//{0x63,12,215,1,-1,"Non in uso"},
-//{0x63,13,311,1,-1,"BUH capacità di output"},
-//{0x63,14,161,1,-1,"Misura del sensore CT (L1)"},
-//{0x63,15,161,1,-1,"Misura del sensore CT (L2)"},
-//{0x63,16,307,1,-1,"HP Forced FG"},
-//{0x63,16,161,1,-1,"Misura del sensore CT (L3)"},
-//{0x64,0,307,1,-1,"Abilita/disabilita dati"},
-//{0x64,1,152,1,-1,"Indirizzo unità interna"},
-//{0x64,2,307,1,-1,"Not translated yet"},
-//{0x64,2,306,1,-1,"Sbrinamento"},
-//{0x64,2,305,1,-1,"Richiesta powerfull"},
-//{0x64,2,304,1,-1,"Priorità richiesta ACS"},
-//{0x64,2,303,1,-1,"Not translated yet"},
-//{0x64,2,302,1,-1,"Add pump"},
-//{0x64,2,301,1,-1,"Main pump"},
-//{0x64,2,300,1,-1,"Not translated yet"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temp. target riscaldamento ibrido"},
-//{0x64,7,105,2,1,"Temp. target riscaldamento boiler"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,105,2,1,"Temperatura dell acqua miscelata"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Japanese/DEFAULT.h b/include/def/Japanese/DEFAULT.h
deleted file mode 100644
index d63badc8..00000000
--- a/include/def/Japanese/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*冷媒種別"},
-//{0x00,0,152,1,-1,"センサ数(個)"},
-//{0x00,1,152,1,-1,"INVデータ数(個)"},
-//{0x00,2,152,1,-1,"STD圧縮機"},
-//{0x00,3,152,1,-1,"ファンデータ数(個)"},
-//{0x00,4,152,1,-1,"EVデータ数(個)"},
-//{0x00,5,152,1,-1,"四路弁データ(数)"},
-//{0x00,6,152,1,-1,"クランクケースヒータ数(個)"},
-//{0x00,7,152,1,-1,"電磁弁(数)"},
-//{0x00,8,152,1,-1,"データ収集可能室内機台数"},
-//{0x00,9,152,1,-1,"室内機接続台数"},
-//{0x00,10,213,1,-1,"室外機マイコンID"},
-//{0x00,11,213,1,-1,"室外機マイコンID"},
-//{0x10,0,217,1,-1,"運転モード"},
-//{0x10,1,307,1,-1,"サーモON/OFF"},
-//{0x10,1,306,1,-1,"再起動待機"},
-//{0x10,1,305,1,-1,"起動制御中"},
-//{0x10,1,304,1,-1,"デフロスト運転"},
-//{0x10,1,303,1,-1,"油戻し運転"},
-//{0x10,1,302,1,-1,"均油運転"},
-//{0x10,1,301,1,-1,"デマンド指令"},
-//{0x10,1,300,1,-1,"低騒音制御"},
-//{0x10,2,307,1,-1,"その他制御1"},
-//{0x10,2,306,1,-1,"その他制御2"},
-//{0x10,2,305,1,-1,"その他制御3"},
-//{0x10,2,304,1,-1,"その他制御4"},
-//{0x10,2,303,1,-1,"その他制御5"},
-//{0x10,2,302,1,-1,"その他制御6"},
-//{0x10,2,301,1,-1,"その他制御7"},
-//{0x10,2,300,1,-1,"その他制御8"},
-//{0x10,3,307,1,-1,"その他制御9"},
-//{0x10,3,306,1,-1,"その他制御10"},
-//{0x10,3,305,1,-1,"その他制御11"},
-//{0x10,3,304,1,-1,"その他制御12"},
-//{0x10,3,303,1,-1,"その他制御13"},
-//{0x10,3,302,1,-1,"その他制御14"},
-//{0x10,3,301,1,-1,"その他制御15"},
-//{0x10,3,300,1,-1,"その他制御16"},
-//{0x10,4,203,1,-1,"エラーレベル"},
-//{0x10,5,204,1,-1,"エラーコード"},
-//{0x10,6,114,2,1,"目標蒸発温度"},
-//{0x10,8,114,2,1,"目標凝縮温度"},
-//{0x10,10,307,1,-1,"吐出管温度垂下"},
-//{0x10,10,310,1,-1,"吐出管保護リトライ回数"},
-//{0x10,10,303,1,-1,"圧縮機INV電流垂下"},
-//{0x10,10,311,1,-1,"圧縮機INV電流保護リトライ回数"},
-//{0x10,11,307,1,-1,"高圧垂下制御"},
-//{0x10,11,310,1,-1,"高圧保護リトライ回数"},
-//{0x10,11,303,1,-1,"低圧垂下制御"},
-//{0x10,11,311,1,-1,"低圧保護リトライ回数"},
-//{0x10,12,303,1,-1,"その他制御"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"外気温度"},
-//{0x20,2,105,2,1,"外熱交温度"},
-//{0x20,4,105,2,1,"吐出管温度"},
-//{0x20,6,105,2,1,"吸入管温度"},
-//{0x20,8,105,2,1,"室外熱交中間温度"},
-//{0x20,10,105,2,1,"液管温度"},
-//{0x20,12,105,2,1,"INVフィン温度"},
-//{0x20,14,105,2,2,"低圧圧力"},
-//{0x20,14,405,2,1,"低圧圧力(T)"},
-//{0x20,16,105,2,-1,"センサーデータ9"},
-//{0x20,18,105,2,-1,"センサーデータ10"},
-//{0x20,20,105,2,-1,"センサーデータ11"},
-//{0x21,0,105,2,-1,"INV1次電流"},
-//{0x21,2,105,2,-1,"INV2次電流"},
-//{0x21,4,105,2,1,"INVフィン温度"},
-//{0x21,6,105,2,-1,"センサーデータ4"},
-//{0x21,8,105,2,-1,"センサーデータ5"},
-//{0x21,10,105,2,-1,"センサーデータ6"},
-//{0x21,12,105,2,-1,"センサーデータ7"},
-//{0x21,14,105,2,-1,"センサーデータ8"},
-//{0x21,16,105,2,-1,"センサーデータ9"},
-//{0x21,18,105,2,-1,"センサーデータ10"},
-//{0x21,20,105,2,-1,"センサーデータ11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"INV周波数1(rps)"},
-//{0x30,1,152,1,-1,"INV周波数2(rps)"},
-//{0x30,0,307,1,-1,"STD圧縮機1"},
-//{0x30,0,306,1,-1,"STD圧縮機2"},
-//{0x30,0,211,1,-1,"ファン1(step)"},
-//{0x30,1,211,1,-1,"ファン2(step)"},
-//{0x30,0,151,2,-1,"電動弁1(pls)"},
-//{0x30,2,151,2,-1,"電動弁2(pls)"},
-//{0x30,0,307,1,-1,"四路弁1"},
-//{0x30,0,306,1,-1,"四路弁2"},
-//{0x30,0,307,1,-1,"クランクケースヒータ1"},
-//{0x30,0,306,1,-1,"クランクケースヒータ2"},
-//{0x30,0,307,1,-1,"電磁弁1"},
-//{0x30,0,306,1,-1,"電磁弁2"},
-//{0x30,0,305,1,-1,"電磁弁3"},
-//{0x30,0,304,1,-1,"電磁弁4"},
-//{0x30,0,303,1,-1,"電磁弁5"},
-//{0x30,0,302,1,-1,"電磁弁6"},
-//{0x30,0,301,1,-1,"電磁弁7"},
-//{0x30,0,300,1,-1,"電磁弁8"},
-//{0x30,1,307,1,-1,"電磁弁9"},
-//{0x30,1,306,1,-1,"電磁弁10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"データ有効無効"},
-//{0x60,1,152,1,-1,"室内機アドレス"},
-//{0x60,2,315,1,-1,"室内運転モード"},
-//{0x60,2,303,1,-1,"サーモON/OFF"},
-//{0x60,2,302,1,-1,"凍結防止"},
-//{0x60,2,301,1,-1,"静音モード"},
-//{0x60,2,300,1,-1,"水配管凍結防止"},
-//{0x60,3,204,1,-1,"エラーコード"},
-//{0x60,4,314,2,-1,"室内機コード"},
-//{0x60,6,219,1,-1,"室内機容量"},
-//{0x60,7,105,2,1,"リモコン設定温度"},
-//{0x60,9,105,2,1,"H/P出口設定温度"},
-//{0x60,11,307,1,-1,"フロースイッチ"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon BSH"},
-//{0x60,11,304,1,-1,"HP tariff input"},
-//{0x60,11,303,1,-1,"ソーラー入力"},
-//{0x60,11,302,1,-1,"Not in use"},
-//{0x60,11,301,1,-1,"Not in use"},
-//{0x60,11,300,1,-1,"Bivalent Operation"},
-//{0x60,12,307,1,-1,"3方弁(冷暖)"},
-//{0x60,12,306,1,-1,"四路弁(Space/DHW)"},
-//{0x60,12,305,1,-1,"BSH"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"ボトムプレートヒータ"},
-//{0x60,12,301,1,-1,"ポンプ出力"},
-//{0x60,12,300,1,-1,"ソーラー出力信号"},
-//{0x60,13,212,1,-1,"室内オプションコード"},
-//{0x60,14,314,2,-1,"室内ソフトウェアバージョン"},
-//{0x60,15,212,1,-1,"室内EEPROMバージョン"},
-//{0x61,0,307,1,-1,"データ有効無効"},
-//{0x61,1,152,1,-1,"室内機アドレス"},
-//{0x61,2,105,2,1,"PHE出口(R1T)"},
-//{0x61,4,105,2,1,"BUH出口(R2T)"},
-//{0x61,6,105,2,1,"液管温度(R3T)"},
-//{0x61,8,105,2,1,"入口温度(R4T)"},
-//{0x61,10,105,2,1,"DHW温度(R5T)"},
-//{0x61,12,105,2,1,"リモコンサーモ"},
-};
diff --git a/include/def/PROTOCOL_S.h b/include/def/PROTOCOL_S.h
deleted file mode 100644
index b1976fdb..00000000
--- a/include/def/PROTOCOL_S.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for the older protocol S devices.
-
-LabelDef labelDefs[] = {
- {0x50, 0, 103, 2, -1, "HP Sensor(kgcm2)"},
- {0x50, 2, 103, 2, -1, "LP Sensor(kgcm2)"},
- {0x53, 0, 152, 2, -1, "EV (pls)"},
- {0x53, 2, 164, 1, -1, "Outdoor Fan (Upper)(rps)"},
- {0x53, 3, 164, 1, -1, "Outdoor Fan (Lower)(rps)"},
- {0x53, 4, 200, 1, -1, "INV Comp. Frequency(Hz)"},
- {0x53, 5, 200, 1, -1, "Comp. Preheat"},
- {0x53, 6, 200, 1, -1, "52C Output"},
- {0x53, 8, 200, 1, -1, "20R (SV) Output"},
- {0x53, 7, 200, 1, -1, "20S (4-way) Output"},
- {0x53, 10, 200, 1, -1, "Crankcase Heater"},
- {0x53, 11, 200, 1, -1, "Ener-Cut Output"},
- {0x54, 0, 103, 2, -1, "Indoor Suction Air Temp.(C)"},
- {0x54, 2, 103, 2, -1, "Indoor Heat Exchanger Temp.(C)"},
- {0x54, 4, 103, 2, -1, "Outdoor air temp.(C)"},
- {0x54, 6, 103, 2, -1, "Outdoor heat exchanger temp.(C)"},
- {0x54, 8, 109, 2, -1, "Discharge pipe temp.(C)"},
- {0x54, 10, 103, 2, -1, "Fin Temp.(C)"},
- {0x54, 12, 312, 1, -1, "Delta-Tr(deg)"},
- {0x54, 13, 151, 1, -1, "R/C Setpoint(C)"},
- {0x55, 0, 201, 1, -1, "Operation Mode"},
- {0x55, 1, 204, 1, -1, "Error Code"},
- {0x55, 2, 204, 1, -1, "Thermo Off Error"},
- {0x55, 3, 204, 1, -1, "Warning Code"},
- {0x55, 4, 204, 1, -1, "Caution Code"},
-};
-
-// Override protocol
-#define PROTOCOL 'S'
diff --git a/include/def/PROTOCOL_S_ROTEX.h b/include/def/PROTOCOL_S_ROTEX.h
deleted file mode 100644
index d8d8b01c..00000000
--- a/include/def/PROTOCOL_S_ROTEX.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for Rotex heat pump, technically looking like protocol S, but not using the same mapping.
-// Confirmed working for Rotex RDLQ014AA6V3.
-
-LabelDef labelDefs[] = {
- // 0x50 not supported by RDLQ014AA6V3
-
- // 0x53 seems to be a collection of booleans
- {0x53, 0, 200, 1, -1, "Circulation pump"},
- {0x53, 3, 200, 1, -1, "External heater?"},
- {0x53, 5, 200, 1, -1, "Priority to domestic water"},
- {0x53, 6, 200, 1, -1, "Burner inhibit from solaris"},
-
-
- // Testing stuff....
- {0x54, 0, 153, 2, -1, "Refrig. Temp. liquid side(C)"},
- {0x54, 2, 153, 2, -1, "Inlet water temp.(C)"},
- {0x54, 4, 153, 2, -1, "Outlet Water Temp.(C)"},
- {0x54, 6, 153, 2, -1, "D(C)"},
- {0x54, 8, 153, 2, -1, "DHW tank temp.(C)"},
- {0x54, 10, 103, 2, -1, "F(C)"},
- // Byte 12 seems to be a 1 byte value, evolving during day in continuous way
- // 0x1b mid-day, 0x24 mid night -> some delta temp??
- {0x54, 12, 101, 1, -1, "Delta-Tr(deg)"},
- {0x54, 13, 151, 1, -1, "R/C Setpoint(C)"},
-
- {0x55, 0, 201, 1, -1, "Operation Mode"},
- {0x55, 1, 204, 1, -1, "Error Code"},
- {0x55, 2, 204, 1, -1, "Thermo Off Error"},
- {0x55, 3, 204, 1, -1, "Warning Code"},
- {0x55, 4, 204, 1, -1, "Caution Code"},
- // TODO: seems to reply on 0x56 as well, but not used by dchecker...
- {0x56, 0, 103, 2, -1, "????"},
-};
-
-// Override protocol
-#define PROTOCOL 'S'
diff --git a/include/def/Spanish/ALTHERMA(HYBRID).h b/include/def/Spanish/ALTHERMA(HYBRID).h
deleted file mode 100644
index bdbeedd8..00000000
--- a/include/def/Spanish/ALTHERMA(HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido"},
-//{0x20,12,105,2,1,"Temperatura de la aleta del INV"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,303,1,-1,"Calentador del cárter 5"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temperatura del intercambiador de calor del agua de salida (R1T)"},
-//{0x61,4,105,2,1,"Temperatura del agua de salida (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura RT"},
-//{0x61,14,105,2,1,"Ambiente exterior o sensor exterior"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Espacio Op. C/H o BPH"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,2,300,1,-1,"Modo de operación ACS híbrido"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/ALTHERMA(LT_CA_CB_04-08KW).h b/include/def/Spanish/ALTHERMA(LT_CA_CB_04-08KW).h
deleted file mode 100644
index e73d9f82..00000000
--- a/include/def/Spanish/ALTHERMA(LT_CA_CB_04-08KW).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/ALTHERMA(LT_CA_CB_11-16KW).h b/include/def/Spanish/ALTHERMA(LT_CA_CB_11-16KW).h
deleted file mode 100644
index ebe46916..00000000
--- a/include/def/Spanish/ALTHERMA(LT_CA_CB_11-16KW).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,7,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,7,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,7,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,7,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,8,307,1,-1,"Calentador del cárter 1"},
-//{0x30,8,306,1,-1,"Calentador del cárter 2"},
-//{0x30,8,305,1,-1,"Calentador del cárter 3"},
-//{0x30,8,304,1,-1,"Calentador del cárter 4"},
-//{0x30,9,307,1,-1,"SV1 (gas caliente)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Válvula solenoide 3"},
-//{0x30,9,304,1,-1,"Válvula solenoide 4"},
-//{0x30,9,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Spanish/ALTHERMA(LT_MULTI_DHWHP).h b/include/def/Spanish/ALTHERMA(LT_MULTI_DHWHP).h
deleted file mode 100644
index 8029dbcd..00000000
--- a/include/def/Spanish/ALTHERMA(LT_MULTI_DHWHP).h
+++ /dev/null
@@ -1,219 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"Prohibición de desescarche ON/OFF"},
-//{0x62,8,305,1,-1,"Modo Powerfull activado"},
-//{0x62,8,304,1,-1,"Prioridad ACS requerida"},
-//{0x62,8,303,1,-1,"Conflicto de modo"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"Válvula de 3 vías mezcla 1"},
-//{0x62,14,152,1,-1,"Válvula de 3 vías mezcla 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/ALTHERMA(LT_MULTI_HYBRID).h b/include/def/Spanish/ALTHERMA(LT_MULTI_HYBRID).h
deleted file mode 100644
index 098213c4..00000000
--- a/include/def/Spanish/ALTHERMA(LT_MULTI_HYBRID).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,1,-1,"Override CMD:0x00 N_EV=1"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"Prohibición de desescarche ON/OFF"},
-//{0x62,8,305,1,-1,"Modo Powerfull activado"},
-//{0x62,8,304,1,-1,"Prioridad ACS requerida"},
-//{0x62,8,303,1,-1,"Conflicto de modo"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"Válvula de 3 vías mezcla 1"},
-//{0x62,14,152,1,-1,"Válvula de 3 vías mezcla 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,2,300,1,-1,"Modo de operación ACS híbrido"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h b/include/def/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
deleted file mode 100644
index 21fcd23a..00000000
--- a/include/def/Spanish/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,405,1,1,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h b/include/def/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
deleted file mode 100644
index 0c33c4c9..00000000
--- a/include/def/Spanish/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h
+++ /dev/null
@@ -1,230 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,215,1,-1,"No se utiliza"},
-//{0x63,12,215,1,-1,"No se utiliza"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,1,152,2,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h b/include/def/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
deleted file mode 100644
index 1919fd11..00000000
--- a/include/def/Spanish/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h
+++ /dev/null
@@ -1,177 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Termistor de 2 fases (R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temperatura de las sales de entrada (R5T)"},
-//{0x20,10,105,2,1,"Temperatura de las sales de salida (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,152,2,1,"Fan1 Fin temp."},
-//{0x21,8,152,2,1,"Fan2 Fin temp."},
-//{0x21,10,152,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Comentarios de la bomba de salmuera"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0x30,13,306,1,-1,"Y2S"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Capacidad de la unidad interior"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,13,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x63,16,307,1,-1,"Operación de HP forzada por el instalador"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,-1,"Target delta T heating"},
-//{0x64,15,152,1,-1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(EGSQH-A series 10kW GEO2).h b/include/def/Spanish/Altherma(EGSQH-A series 10kW GEO2).h
deleted file mode 100644
index 0f7903ec..00000000
--- a/include/def/Spanish/Altherma(EGSQH-A series 10kW GEO2).h
+++ /dev/null
@@ -1,218 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Termistor de 2 fases (R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temperatura de las sales de entrada (R5T)"},
-//{0x20,10,105,2,1,"Temperatura de las sales de salida (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor (R10T)"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"SV (gas caliente)"},
-//{0x30,0,306,1,-1,"SV (BPH)"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,13,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"No se utiliza"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h b/include/def/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
deleted file mode 100644
index cdb696f0..00000000
--- a/include/def/Spanish/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h
+++ /dev/null
@@ -1,199 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,-1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,8,105,2,1,"Temperatura de salida de sales"},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x21,12,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,7,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,7,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,7,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,7,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,7,302,1,-1,"Válvula de 4 vías 6"},
-//{0x30,7,301,1,-1,"Válvula de 4 vías 7"},
-//{0x30,7,300,1,-1,"Válvula de 4 vías 8"},
-//{0x30,8,307,1,-1,"Calentador del cárter"},
-//{0x30,9,307,1,1,"Válvula de derivación de gas caliente (Y2S)"},
-//{0x30,9,306,1,1,"Válvula de derivación de baja presión (Y3S)"},
-//{0x30,10,112,1,1,"Temperatura del agua de entrada. (DMW)"},
-//{0x30,11,112,1,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,12,301,1,1,"Válvula de 4 vías (Y1S)"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h b/include/def/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
deleted file mode 100644
index 605ac756..00000000
--- a/include/def/Spanish/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp impulsion (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp impulsion tras el Barril/BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,215,1,-1,"No se utiliza"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h b/include/def/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
deleted file mode 100644
index f40804a6..00000000
--- a/include/def/Spanish/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h
+++ /dev/null
@@ -1,225 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,215,1,-1,"No se utiliza"},
-//{0x63,12,215,1,-1,"No se utiliza"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h b/include/def/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
deleted file mode 100644
index f9d5fb88..00000000
--- a/include/def/Spanish/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,0,152,1,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h b/include/def/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
deleted file mode 100644
index f9d5fb88..00000000
--- a/include/def/Spanish/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,0,152,1,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h b/include/def/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
deleted file mode 100644
index 457f5b84..00000000
--- a/include/def/Spanish/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,0,152,1,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h b/include/def/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
deleted file mode 100644
index 457f5b84..00000000
--- a/include/def/Spanish/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h
+++ /dev/null
@@ -1,236 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x21,12,105,2,1,"Not translated yet"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,0,152,1,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h b/include/def/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
deleted file mode 100644
index 839a6482..00000000
--- a/include/def/Spanish/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Sensor de presión"},
-//{0x20,14,405,2,1,"Sensor de presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"[HPSU] Tv Temp impulsion (R1T)"},
-//{0x61,4,105,2,1,"[HPSU] Tvbh Temp impulsion tras el Barril/BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"[HPSU] Tr Temp retornar (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h b/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
deleted file mode 100644
index 43320d57..00000000
--- a/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Sensor de presión"},
-//{0x20,14,405,2,1,"Sensor de presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h b/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
deleted file mode 100644
index 2b545729..00000000
--- a/include/def/Spanish/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (10 rpm)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h b/include/def/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
deleted file mode 100644
index ee0a3d31..00000000
--- a/include/def/Spanish/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,405,1,1,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,1,152,1,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h b/include/def/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
deleted file mode 100644
index b2959d05..00000000
--- a/include/def/Spanish/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,405,1,1,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,12,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h b/include/def/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
deleted file mode 100644
index d611f673..00000000
--- a/include/def/Spanish/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h
+++ /dev/null
@@ -1,234 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Not translated yet"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,1,152,2,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,101,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h b/include/def/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
deleted file mode 100644
index 4ac7ec9f..00000000
--- a/include/def/Spanish/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h
+++ /dev/null
@@ -1,235 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext(R4T)"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga(R2T)"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración (R3T)"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext(R5T)"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Válvula de derivación de gas caliente (Y3S)"},
-//{0x30,13,306,1,-1,"Válvula de derivación de baja presión (Y2S)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"Válvula solenoide 2"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Not translated yet"},
-//{0x62,8,306,1,-1,"Not translated yet"},
-//{0x62,8,305,1,-1,"Not translated yet"},
-//{0x62,8,336,1,-1,"Not translated yet"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,105,2,1,"Mixed water temp.(R7T)"},
-//{0x63,10,101,1,-1,"Not translated yet"},
-//{0x63,11,101,1,-1,"Not translated yet"},
-//{0x63,12,323,1,-1,"Not translated yet"},
-//{0x63,12,305,1,-1,"Not translated yet"},
-//{0x63,12,304,1,-1,"Not translated yet"},
-//{0x63,12,303,1,-1,"Not translated yet"},
-//{0x63,12,302,1,-1,"Not translated yet"},
-//{0x63,12,317,1,-1,"Not translated yet"},
-//{0x63,13,152,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x65,0,307,1,-1,"Activación/desactivación datos"},
-//{0x65,1,152,2,-1,"Dirección U/Int."},
-//{0x65,2,105,2,1,"Salida de agua hex. Temp. (modelo hidro split) DLWB2"},
-//{0x65,4,105,2,1,"[EKMIK] Bizone kit temperatura del agua de salida mezclada R1T"},
-//{0x65,6,152,1,-1,"[EKMIK] Bizone kit posición de la válvula de mezcla M1S"},
-};
diff --git a/include/def/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h b/include/def/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
deleted file mode 100644
index 43320d57..00000000
--- a/include/def/Spanish/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h
+++ /dev/null
@@ -1,216 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Sensor de presión"},
-//{0x20,14,405,2,1,"Sensor de presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (10 rpm)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(LT_CB_04-08kW Bizone).h b/include/def/Spanish/Altherma(LT_CB_04-08kW Bizone).h
deleted file mode 100644
index e73d9f82..00000000
--- a/include/def/Spanish/Altherma(LT_CB_04-08kW Bizone).h
+++ /dev/null
@@ -1,220 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(LT_CB_11-16kW Bizone).h b/include/def/Spanish/Altherma(LT_CB_11-16kW Bizone).h
deleted file mode 100644
index 5bd19ca0..00000000
--- a/include/def/Spanish/Altherma(LT_CB_11-16kW Bizone).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"SV1 (gas caliente)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h b/include/def/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
deleted file mode 100644
index f409114d..00000000
--- a/include/def/Spanish/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temperatura media del intercambiador de calor exterior"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido"},
-//{0x20,12,105,2,1,"Temperatura de la aleta"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,0,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,2,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,4,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,6,105,2,1,"Temperatura de salida de sales"},
-//{0x21,8,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,10,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temperatura del intercambiador de calor del agua de salida (R1T)"},
-//{0x61,4,105,2,1,"Temperatura del agua de salida (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h b/include/def/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
deleted file mode 100644
index ebe46916..00000000
--- a/include/def/Spanish/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h
+++ /dev/null
@@ -1,207 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,7,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,7,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,7,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,7,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,8,307,1,-1,"Calentador del cárter 1"},
-//{0x30,8,306,1,-1,"Calentador del cárter 2"},
-//{0x30,8,305,1,-1,"Calentador del cárter 3"},
-//{0x30,8,304,1,-1,"Calentador del cárter 4"},
-//{0x30,9,307,1,-1,"SV1 (gas caliente)"},
-//{0x30,9,306,1,-1,"SV2 (BPH)"},
-//{0x30,9,305,1,-1,"Válvula solenoide 3"},
-//{0x30,9,304,1,-1,"Válvula solenoide 4"},
-//{0x30,9,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Spanish/DEFAULT.h b/include/def/Spanish/DEFAULT.h
deleted file mode 100644
index d64a79ca..00000000
--- a/include/def/Spanish/DEFAULT.h
+++ /dev/null
@@ -1,145 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Compresor STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,213,1,-1,"U/ext. MPU ID"},
-//{0x00,11,213,1,-1,"U/ext. MPU ID"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,2,307,1,-1,"Otro de control 1"},
-//{0x10,2,306,1,-1,"Otro de control 2"},
-//{0x10,2,305,1,-1,"Otro de control 3"},
-//{0x10,2,304,1,-1,"Otro de control 4"},
-//{0x10,2,303,1,-1,"Otro de control 5"},
-//{0x10,2,302,1,-1,"Otro de control 6"},
-//{0x10,2,301,1,-1,"Otro de control 7"},
-//{0x10,2,300,1,-1,"Otro de control 8"},
-//{0x10,3,307,1,-1,"Otro de control 9"},
-//{0x10,3,306,1,-1,"Otro de control 10"},
-//{0x10,3,305,1,-1,"Otro de control 11"},
-//{0x10,3,304,1,-1,"Otro de control 12"},
-//{0x10,3,303,1,-1,"Otro de control 13"},
-//{0x10,3,302,1,-1,"Otro de control 14"},
-//{0x10,3,301,1,-1,"Otro de control 15"},
-//{0x10,3,300,1,-1,"Otro de control 16"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,303,1,-1,"Otro control"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior"},
-//{0x20,2,105,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temperatura media del intercambiador de calor exterior"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido"},
-//{0x20,12,105,2,1,"Temperatura de la aleta del INV"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x20,16,105,2,-1,"Datos del sensor 9"},
-//{0x20,18,105,2,-1,"Datos del sensor 10"},
-//{0x20,20,105,2,-1,"Datos del sensor 11"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,-1,"Datos del sensor 4"},
-//{0x21,8,105,2,-1,"Datos del sensor 5"},
-//{0x21,10,105,2,-1,"Datos del sensor 6"},
-//{0x21,12,105,2,-1,"Datos del sensor 7"},
-//{0x21,14,105,2,-1,"Datos del sensor 8"},
-//{0x21,16,105,2,-1,"Datos del sensor 9"},
-//{0x21,18,105,2,-1,"Datos del sensor 10"},
-//{0x21,20,105,2,-1,"Datos del sensor 11"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia 1 del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x30,0,302,1,-1,"Válvula solenoide 6"},
-//{0x30,0,301,1,-1,"Válvula solenoide 7"},
-//{0x30,0,300,1,-1,"Válvula solenoide 8"},
-//{0x30,1,307,1,-1,"Válvula solenoide 9"},
-//{0x30,1,306,1,-1,"Válvula solenoide 10"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,307,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo de operación interior"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Capacidad de la unidad interior"},
-//{0x60,7,105,2,1,"Punto de ajuste R/C"},
-//{0x60,9,105,2,1,"Punto de ajuste de salida H/P"},
-//{0x60,11,307,1,-1,"Conmutador de flujo"},
-//{0x60,11,306,1,-1,"Clixon BUH"},
-//{0x60,11,305,1,-1,"Clixon BSH"},
-//{0x60,11,304,1,-1,"Entrada de tarifa HP"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 3 vías (Enfriar/calentar)"},
-//{0x60,12,306,1,-1,"Válvula de 4 vías (Espacio/DWH)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"BUH1"},
-//{0x60,12,303,1,-1,"BUH2"},
-//{0x60,12,302,1,-1,"Calentador de la placa inferior"},
-//{0x60,12,301,1,-1,"Salida de bombeo"},
-//{0x60,12,300,1,-1,"Señal de salida solar"},
-//{0x60,13,212,1,-1,"Código de opción interior"},
-//{0x60,14,314,2,-1,"Versión de software interior"},
-//{0x60,15,212,1,-1,"Versión EEPROM interior"},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"PHE de salida (R1T)"},
-//{0x61,4,105,2,1,"BUH de salida (R2T)"},
-//{0x61,6,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x61,8,105,2,1,"Temperatura de entrada interior (R4T)"},
-//{0x61,10,105,2,1,"Temperatura DWH (R5T)"},
-//{0x61,12,105,2,1,"Termistor a control remoto"},
-};
diff --git a/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h b/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
deleted file mode 100644
index 21fcd23a..00000000
--- a/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temperatura del líquido (R3T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión baja"},
-//{0x20,14,405,2,1,"Presión baja(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Y1S"},
-//{0x30,13,306,1,-1,"SV (drain pan heater)"},
-//{0x30,13,305,1,-1,"Y3S"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Válvula solenoide 3"},
-//{0xA0,12,303,1,-1,"SV (drain pan heater)"},
-//{0xA0,12,302,1,-1,"Válvula solenoide 1"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"Not translated yet"},
-//{0x60,11,301,1,-1,"Not translated yet"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,405,1,1,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x62,15,405,2,1,"Sensor de presión(T)"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,301,1,-1,"Not translated yet"},
-//{0x63,12,300,1,-1,"Not translated yet"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h b/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
deleted file mode 100644
index 5bd19ca0..00000000
--- a/include/def/Spanish/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h
+++ /dev/null
@@ -1,213 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,1,"Temp. disipador de calor"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x20,16,105,2,-1,"No se utiliza"},
-//{0x20,18,105,2,-1,"No se utiliza"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,6,307,1,-1,"Conmutador del flujo de sales"},
-//{0x21,6,306,1,-1,"No se utiliza"},
-//{0x21,6,305,1,-1,"No se utiliza"},
-//{0x21,6,304,1,-1,"No se utiliza"},
-//{0x21,6,303,1,-1,"No se utiliza"},
-//{0x21,6,302,1,-1,"No se utiliza"},
-//{0x21,6,301,1,-1,"No se utiliza"},
-//{0x21,6,300,1,-1,"No se utiliza"},
-//{0x21,7,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,9,105,2,1,"Temperatura de salida de sales"},
-//{0x21,11,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,13,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x21,15,105,1,-1,"No se utiliza"},
-//{0x21,16,105,1,-1,"No se utiliza"},
-//{0x21,17,105,1,-1,"No se utiliza"},
-//{0x21,18,105,1,-1,"No se utiliza"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías 1"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter 1"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"SV1 (gas caliente)"},
-//{0x30,0,306,1,-1,"SV2 (BPH)"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Resistencia BPH(Bandeja U/E)"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,301,1,-1,"Add pump"},
-//{0x64,9,300,1,-1,"Main pump"},
-//{0x64,10,118,2,1,"Mixed water temp.(R7T)"},
-};
diff --git a/include/def/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h b/include/def/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
deleted file mode 100644
index f409114d..00000000
--- a/include/def/Spanish/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h
+++ /dev/null
@@ -1,203 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,801,0,-1,"*Tipo de refrigerante"},
-//{0x00,1,996,1,-1,"Override CMD:0x00 N_INV=1"},
-//{0x00,2,996,0,-1,"Override CMD:0x00 N_STD=0"},
-//{0x00,3,996,2,-1,"Override CMD:0x00 N_FAN=2"},
-//{0x00,4,996,2,-1,"Override CMD:0x00 N_EV=2"},
-//{0x00,5,996,1,-1,"Override CMD:0x00 N_20S=1"},
-//{0x00,6,996,1,-1,"Override CMD:0x00 N_CH=1"},
-//{0x00,7,996,3,-1,"Override CMD:0x00 N_SV=3"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Temp. de evaporación objetivo"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temperatura media del intercambiador de calor exterior"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido"},
-//{0x20,12,105,2,1,"Temperatura de la aleta"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,0,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,2,101,2,-1,"Tensión (N-Fase) (V)"},
-//{0x21,4,105,2,1,"Temperatura de entrada de sales"},
-//{0x21,6,105,2,1,"Temperatura de salida de sales"},
-//{0x21,8,105,2,1,"Refrig. temp. evap. IN"},
-//{0x21,10,105,2,1,"Refrig. temp. evap. OUT"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,152,1,-1,"Frecuencia 2 del INV (rps)"},
-//{0x30,0,307,1,-1,"Compresor STD 1"},
-//{0x30,0,306,1,-1,"Compresor STD 2"},
-//{0x30,0,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,1,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,0,151,2,-1,"Válvula de expansión (pls)"},
-//{0x30,2,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,4,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,6,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,8,151,2,-1,"Válvula de expansión5 (pls)"},
-//{0x30,0,307,1,-1,"Válvula de 4 vías"},
-//{0x30,0,306,1,-1,"Válvula de 4 vías 2"},
-//{0x30,0,305,1,-1,"Válvula de 4 vías 3"},
-//{0x30,0,304,1,-1,"Válvula de 4 vías 4"},
-//{0x30,0,303,1,-1,"Válvula de 4 vías 5"},
-//{0x30,0,307,1,-1,"Calentador del cárter"},
-//{0x30,0,306,1,-1,"Calentador del cárter 2"},
-//{0x30,0,305,1,-1,"Calentador del cárter 3"},
-//{0x30,0,304,1,-1,"Calentador del cárter 4"},
-//{0x30,0,307,1,-1,"Válvula solenoide 1"},
-//{0x30,0,306,1,-1,"Válvula solenoide 2"},
-//{0x30,0,305,1,-1,"Válvula solenoide 3"},
-//{0x30,0,304,1,-1,"Válvula solenoide 4"},
-//{0x30,0,303,1,-1,"Válvula solenoide 5"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,314,2,-1,"Código de la unidad interior"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temperatura del intercambiador de calor del agua de salida (R1T)"},
-//{0x61,4,105,2,1,"Temperatura del agua de salida (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"No se utiliza"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,152,1,-1,"No se utiliza"},
-//{0x62,16,307,1,-1,"No se utiliza"},
-//{0x62,16,306,1,-1,"No se utiliza"},
-//{0x62,16,305,1,-1,"No se utiliza"},
-//{0x62,16,304,1,-1,"No se utiliza"},
-//{0x62,16,303,1,-1,"No se utiliza"},
-//{0x62,16,302,1,-1,"No se utiliza"},
-//{0x62,16,301,1,-1,"No se utiliza"},
-//{0x62,16,300,1,-1,"No se utiliza"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,214,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,316,1,-1,"Modo Op. Híbrido"},
-//{0x64,2,303,1,-1,"Demanda de operación de la caldera"},
-//{0x64,2,302,1,-1,"Demanda DWH de caldera"},
-//{0x64,2,301,1,-1,"Salida de la válvula de desviación"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x00,0,996,0,-1,"Override All Clear"},
-};
diff --git a/include/def/Spanish/EKHWET-BAV3(MULTI DHW TANK).h b/include/def/Spanish/EKHWET-BAV3(MULTI DHW TANK).h
deleted file mode 100644
index f33aff7b..00000000
--- a/include/def/Spanish/EKHWET-BAV3(MULTI DHW TANK).h
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "labeldef.h"
-// This file is a definition file for ESPAtherma
-// uncomment each value you want to query for your installation.
-
-
-LabelDef labelDefs[] = {
-//{0x00,0,802,0,-1,"*Tipo de refrigerante"},
-//{0x00,0,152,1,-1,"Cant. de datos del sensor"},
-//{0x00,1,152,1,-1,"Cant. de compresor INV"},
-//{0x00,2,152,1,-1,"Cant. de compresores STD"},
-//{0x00,3,152,1,-1,"Cant. de datos de ventilador"},
-//{0x00,4,152,1,-1,"Cant. de datos de la válvula de expansión"},
-//{0x00,5,152,1,-1,"Cant. de datos de la válvula de 4 vías"},
-//{0x00,6,152,1,-1,"Cant. de calentadores del cárter"},
-//{0x00,7,152,1,-1,"Cant. de válvulas de solenoide"},
-//{0x00,8,152,1,-1,"Unidades interiores conectable máx."},
-//{0x00,9,152,1,-1,"Cant. de unidades interiores conectadas"},
-//{0x00,10,152,1,-1,"U/ext. MPU ID (xx)"},
-//{0x00,11,152,1,-1,"U/ext. MPU ID (yy)"},
-//{0x00,12,105,1,-1,"Capacidad U/Ext (kW)"},
-//{0x10,0,217,1,-1,"Modo de funcionamiento"},
-//{0x10,1,307,1,-1,"Termostato ON/OFF"},
-//{0x10,1,306,1,-1,"Anticiclo reinicio"},
-//{0x10,1,305,1,-1,"Control de arranque"},
-//{0x10,1,304,1,-1,"Desescarche"},
-//{0x10,1,303,1,-1,"Retorno de aceite"},
-//{0x10,1,302,1,-1,"Compensación de presiones"},
-//{0x10,1,301,1,-1,"Señal de demanda"},
-//{0x10,1,300,1,-1,"Control reducción de ruido"},
-//{0x10,4,203,1,-1,"Tipo de avería"},
-//{0x10,5,204,1,-1,"Código de error"},
-//{0x10,6,114,2,1,"Not translated yet"},
-//{0x10,8,114,2,1,"Temp. de condensación objetivo"},
-//{0x10,10,307,1,-1,"Caída de la temperatura de descarga"},
-//{0x10,10,310,1,-1,"Reintentos protección temp. descarga"},
-//{0x10,10,303,1,-1,"Caida de corriente compresor INV"},
-//{0x10,10,311,1,-1,"Reintentos protección corriente INV"},
-//{0x10,11,307,1,-1,"HP drop control"},
-//{0x10,11,310,1,-1,"Reintentos protección HP"},
-//{0x10,11,303,1,-1,"Control caida Baja Presión"},
-//{0x10,11,311,1,-1,"Reintentos proteccion Baja Presión"},
-//{0x10,12,307,1,-1,"Control caida temp. Frec INV"},
-//{0x10,12,310,1,-1,"Reintentos protección temp. Frec INV"},
-//{0x10,12,303,1,-1,"Otro de control de caída"},
-//{0x10,12,311,1,-1,"No se utiliza"},
-//{0x11,0,215,1,-1,"U/Ext. EEPROM (1er dígito)"},
-//{0x11,1,215,1,-1,"U/Ext. EEPROM (3er 4º dígito)"},
-//{0x11,2,215,1,-1,"U/Ext. EEPROM (5º 6º dígito)"},
-//{0x11,3,215,1,-1,"U/Ext. EEPROM (7º 8º dígito)"},
-//{0x11,4,215,1,-1,"U/Ext. EEPROM (10º dígito)"},
-//{0x11,5,214,1,-1,"U/Ext. EEPROM (11º dígito)"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x20,0,105,2,1,"Temp. Ambiente exterior (R1T)"},
-//{0x20,2,105,2,1,"Temp. Intercambiador U/Ext"},
-//{0x20,4,105,2,1,"Temp. del tubo de descarga"},
-//{0x20,6,105,2,1,"Temp. Tubo de aspiración"},
-//{0x20,8,105,2,1,"Temp. Media Intercambiador U/Ext"},
-//{0x20,10,105,2,1,"Temp. tubo de líquido (R6T)"},
-//{0x20,12,105,2,2,"Presión alta"},
-//{0x20,12,405,2,1,"Presión alta(T)"},
-//{0x20,14,105,2,2,"Presión"},
-//{0x20,14,405,2,1,"Presión(T)"},
-//{0x21,0,105,2,-1,"Corriente primaria del INV (A)"},
-//{0x21,2,105,2,-1,"Corriente secundaria del INV (A)"},
-//{0x21,4,105,2,1,"Temperatura de la aleta del INV"},
-//{0x21,6,105,2,1,"Fan1 Fin temp."},
-//{0x21,8,105,2,1,"Fan2 Fin temp."},
-//{0x21,10,105,2,1,"Temperatura de salida del compresor"},
-//{0x00,0,995,1,-1,"NextDataGrid"},
-//{0x30,0,152,1,-1,"Frecuencia del INV (rps)"},
-//{0x30,1,211,1,-1,"Ventilador 1 (nivel)"},
-//{0x30,2,211,1,-1,"Ventilador 2 (nivel)"},
-//{0x30,3,151,2,-1,"Válvula de expansión1 (pls)"},
-//{0x30,5,151,2,-1,"Válvula de expansión2 (pls)"},
-//{0x30,7,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0x30,9,151,2,-1,"Válvula de expansión4 (pls)"},
-//{0x30,11,307,1,-1,"Válvula de 4 vías"},
-//{0x30,12,307,1,-1,"Calentador del cárter"},
-//{0x30,13,307,1,-1,"Not translated yet"},
-//{0x30,13,306,1,-1,"Not translated yet"},
-//{0x30,13,305,1,-1,"Not translated yet"},
-//{0x00,0,998,1,-1,"In-Out separator"},
-//{0xA0,0,119,2,1,"Temp. Tubo de aspiración"},
-//{0xA0,2,119,2,1,"Temperatura del intercambiador de calor exterior"},
-//{0xA0,4,119,2,1,"Temp. tubo de líquido"},
-//{0xA0,6,119,2,2,"Presión"},
-//{0xA0,8,151,2,-1,"Válvula de expansión3 (pls)"},
-//{0xA0,10,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,11,152,1,-1,"U/ext. MPU ID"},
-//{0xA0,12,307,1,-1,"HPS activado"},
-//{0xA0,12,306,1,-1,"Operación de salvaguardia"},
-//{0xA0,12,305,1,-1,"Calentador del cárter"},
-//{0xA0,12,304,1,-1,"Not translated yet"},
-//{0xA0,12,303,1,-1,"Not translated yet"},
-//{0xA0,12,302,1,-1,"Not translated yet"},
-//{0xA0,12,301,1,-1,"Válvula de 4 vías (Y1S)"},
-//{0xA0,12,300,1,-1,"52C Output"},
-//{0xA0,13,303,1,-1,"Caída de la temperatura de descarga"},
-//{0xA0,13,302,1,-1,"Durante la operación de emergencia"},
-//{0xA0,13,301,1,-1,"Indicador de explosión de la unidad interior a 50 ° C"},
-//{0xA0,13,300,1,-1,"Bit potente (bit de ajuste MT)"},
-//{0xA0,14,105,2,1,"Temperatura del puerto del compresor"},
-//{0xA1,0,119,2,1,"(Datos brutos)Temperatura de entrada del intercambiador de calor de agua"},
-//{0xA1,2,119,2,1,"(Datos brutos)Temperatura de salida del intercambiador de calor de agua."},
-//{0xA1,4,302,1,-1,"Electroválvula de líquido INJ (Y4S)"},
-//{0xA1,4,301,1,-1,"Calentador de la placa inferior"},
-//{0xA1,4,300,1,-1,"Calentador de PHE"},
-//{0xA1,5,114,2,1,"Temperatura de descarga objetivo"},
-//{0xA1,7,114,2,1,"Temperatura objetivo del puerto"},
-//{0xA1,9,305,1,-1,"Ajuste Monobloc"},
-//{0xA1,9,304,1,-1,"Ajuste Minichiller"},
-//{0xA1,9,303,1,-1,"Ajuste MT"},
-//{0xA1,9,302,1,-1,"Ajuste GSHP"},
-//{0xA1,9,301,1,-1,"Ajuste Hydro split"},
-//{0xA1,9,300,1,-1,"Ajuste Altherma LT"},
-//{0x60,0,304,1,-1,"Activación/desactivación datos"},
-//{0x60,1,152,1,-1,"Dirección U/Int."},
-//{0x60,2,315,1,-1,"Modo func. U/Int"},
-//{0x60,2,303,1,-1,"Termostato ON/OFF"},
-//{0x60,2,302,1,-1,"Protección de congelación"},
-//{0x60,2,301,1,-1,"Modo silencioso"},
-//{0x60,2,300,1,-1,"Protección de congelación tuberías"},
-//{0x60,3,204,1,-1,"Código de error"},
-//{0x60,4,152,1,-1,"Código de error detallado"},
-//{0x60,5,203,1,-1,"Tipo de avería"},
-//{0x60,6,219,1,-1,"Código de capacidad U/Int"},
-//{0x60,7,105,2,1,"Consigna ACS"},
-//{0x60,9,105,2,1,"Consigna TAI (principal)"},
-//{0x60,11,307,1,-1,"Conmutador de flujo del agua"},
-//{0x60,11,306,1,-1,"Protector térmico (Q1L) BUH"},
-//{0x60,11,305,1,-1,"Protector térmico BSH"},
-//{0x60,11,304,1,-1,"Modo tarifa reducida"},
-//{0x60,11,303,1,-1,"Entrada solar"},
-//{0x60,11,302,1,-1,"No se utiliza"},
-//{0x60,11,301,1,-1,"No se utiliza"},
-//{0x60,11,300,1,-1,"Modo bivalente"},
-//{0x60,12,307,1,-1,"Válvula de 2 vías (Encendido:Calentar_Apagado:Enfriar)"},
-//{0x60,12,306,1,-1,"Válvula de 3 vías (Encendido:DHW_Apagado:Espacio)"},
-//{0x60,12,305,1,-1,"Resistencia BSH"},
-//{0x60,12,304,1,-1,"Resistencia BUH etapa 1"},
-//{0x60,12,303,1,-1,"Resistencia BUH etapa 2"},
-//{0x60,12,302,1,-1,"Válvula de cierre de suelo radiante"},
-//{0x60,12,301,1,-1,"Funcionamiento bomba"},
-//{0x60,12,300,1,-1,"Salida bomba solar"},
-//{0x60,13,152,1,-1,"Código de opción interior"},
-//{0x60,15,215,1,-1,"U/Int software ID (xx)"},
-//{0x60,14,215,1,-1,"U/Int software ID (yy)"},
-//{0x60,16,152,1,-1,"U/Int EEPROM Ver."},
-//{0x61,0,307,1,-1,"Activación/desactivación datos"},
-//{0x61,1,152,1,-1,"Dirección U/Int."},
-//{0x61,2,105,2,1,"Temp. Impulsión antes de BUH (R1T)"},
-//{0x61,4,105,2,1,"Temp. Impulsión después de BUH (R2T)"},
-//{0x61,6,105,2,1,"Temp. Refrigerante líquido (R3T)"},
-//{0x61,8,105,2,1,"Temp. Retorno (R4T)"},
-//{0x61,10,105,2,1,"Temp. Deposito ACS (R5T)"},
-//{0x61,12,105,2,1,"Temperatura ambiente interior (R1T)"},
-//{0x61,14,105,2,1,"Temp. Ambiente Ext/Int opcional (R6T)"},
-//{0x62,0,307,1,-1,"Activación/desactivación datos"},
-//{0x62,1,152,1,-1,"Dirección U/Int."},
-//{0x62,2,307,1,-1,"Recalentamiento ON/OFF"},
-//{0x62,2,306,1,-1,"Almacenamiento ECO ON/OFF"},
-//{0x62,2,305,1,-1,"Almacenamiento Confort ON/OFF"},
-//{0x62,2,304,1,-1,"Modo Powerful ACS (ON/OFF)"},
-//{0x62,2,303,1,-1,"Calefacción/Regrigeración (ON/OFF)"},
-//{0x62,2,302,1,-1,"Sistema OFF (ON=Sistema apagado)"},
-//{0x62,2,301,1,-1,"No se utiliza"},
-//{0x62,2,300,1,-1,"Modo emergencia (interior) activado / no activado"},
-//{0x62,3,105,2,1,"Consigna TAI (adicional)"},
-//{0x62,5,105,2,1,"Consigna TH ambiente"},
-//{0x62,7,307,1,-1,"TH Ext. Refrigeración(adicional)"},
-//{0x62,7,306,1,-1,"TH Ext. calefacción(adicional)"},
-//{0x62,7,305,1,-1,"TH Ext. Refrigeración(principal)"},
-//{0x62,7,304,1,-1,"TH Ext. Calefacción(principal)"},
-//{0x62,7,303,1,-1,"Límite consumo de energía 4"},
-//{0x62,7,302,1,-1,"Límite consumo de energía 3"},
-//{0x62,7,301,1,-1,"Límite consumo de energía 2"},
-//{0x62,7,300,1,-1,"Límite consumo de energía 1"},
-//{0x62,8,307,1,-1,"Ninguno"},
-//{0x62,8,306,1,-1,"No se utiliza"},
-//{0x62,8,305,1,-1,"No se utiliza"},
-//{0x62,8,304,1,-1,"Calentador de PHE"},
-//{0x62,8,303,1,-1,"Precalentamiento del depósito ON/OFF"},
-//{0x62,8,302,1,-1,"Salida bomba ACS"},
-//{0x62,8,301,1,-1,"Salida de alarma"},
-//{0x62,8,300,1,-1,"Salida calefacción/refrigeración"},
-//{0x62,9,105,2,-1,"Caudalímetro (l/min)"},
-//{0x62,11,105,1,2,"Presión de agua"},
-//{0x62,12,152,1,-1,"Señal bomba (0:máx-100stop)"},
-//{0x62,13,152,1,-1,"V3V mezcladora 1"},
-//{0x62,14,152,1,-1,"V3V mezcladora 2"},
-//{0x62,15,105,2,2,"Sensor de presión de refrigerante"},
-//{0x63,0,307,1,-1,"Activación/desactivación datos"},
-//{0x63,1,152,1,-1,"Dirección U/Int."},
-//{0x63,2,215,1,-1,"U/Int. EEPROM (3er dígito)"},
-//{0x63,3,215,1,-1,"U/Int. EEPROM (4º 5º dígito)"},
-//{0x63,4,215,1,-1,"U/Int. EEPROM (6º 7º dígito)"},
-//{0x63,5,215,1,-1,"U/Int. EEPROM (8º 9º dígito)"},
-//{0x63,6,215,1,-1,"U/Int. EEPROM (11º dígito)"},
-//{0x63,7,215,1,-1,"U/Int. EEPROM (12º dígito)(rev.)"},
-//{0x63,8,215,1,-1,"No se utiliza"},
-//{0x63,9,215,1,-1,"No se utiliza"},
-//{0x63,10,215,1,-1,"No se utiliza"},
-//{0x63,11,215,1,-1,"No se utiliza"},
-//{0x63,12,215,1,-1,"No se utiliza"},
-//{0x63,13,311,1,-1,"Capacidad de salida BUH"},
-//{0x63,14,161,1,-1,"Medición del sensor CT (L1)"},
-//{0x63,15,161,1,-1,"Medición del sensor CT (L2)"},
-//{0x63,16,307,1,-1,"HP forzado FG"},
-//{0x63,16,161,1,-1,"Medición del sensor CT (L3)"},
-//{0x64,0,307,1,-1,"Activación/desactivación datos"},
-//{0x64,1,152,1,-1,"Dirección U/Int."},
-//{0x64,2,307,1,-1,"Not translated yet"},
-//{0x64,2,306,1,-1,"Desescarche"},
-//{0x64,2,305,1,-1,"Modo Powerfull activado"},
-//{0x64,2,304,1,-1,"Prioridad ACS requerida"},
-//{0x64,2,303,1,-1,"Not translated yet"},
-//{0x64,2,302,1,-1,"Add pump"},
-//{0x64,2,301,1,-1,"Main pump"},
-//{0x64,2,300,1,-1,"Not translated yet"},
-//{0x64,3,105,2,-1,"BE_COP"},
-//{0x64,5,105,2,1,"Temperatura objetivo de calentamiento híbrido"},
-//{0x64,7,105,2,1,"Temperatura objetivo para calentar la caldera"},
-//{0x64,9,302,1,-1,"Add pump"},
-//{0x64,9,301,1,-1,"Main pump"},
-//{0x64,10,105,2,1,"Temperatura del agua mezclada"},
-//{0x64,12,105,2,1,"2nd Domestic hot water temperature"},
-//{0x64,14,152,1,1,"Target delta T heating"},
-//{0x64,15,152,1,1,"Target delta T cooling"},
-};
diff --git a/include/labeldef.h b/include/labeldef.h
deleted file mode 100644
index 91eba22c..00000000
--- a/include/labeldef.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifdef ARDUINO
-#include
-#endif
-#define LABELDEF
-
-class LabelDef
-{
-public:
- int convid;
- int offset;
- int registryID;
- int dataSize;
- int dataType;
- const char *label;
- char *data;
- char asString[30];
- LabelDef(){};
- LabelDef(int registryIDp, int offsetp, int convidp, int dataSizep, int dataTypep, const char *labelp) : convid(convidp), offset(offsetp), registryID(registryIDp), dataSize(dataSizep), dataType(dataTypep), label(labelp){};
-};
diff --git a/include/mqtt.h b/include/mqtt.h
deleted file mode 100644
index e58de6e6..00000000
--- a/include/mqtt.h
+++ /dev/null
@@ -1,254 +0,0 @@
-#include
-#include
-#include "restart.h"
-
-#define MQTT_attr "espaltherma/ATTR"
-#define MQTT_lwt "espaltherma/LWT"
-
-#define EEPROM_CHK 1
-#define EEPROM_STATE 0
-
-#define MQTT_attr "espaltherma/ATTR"
-#define MQTT_lwt "espaltherma/LWT"
-
-#ifdef JSONTABLE
-char jsonbuff[MAX_MSG_SIZE] = "[{\0";
-#else
-char jsonbuff[MAX_MSG_SIZE] = "{\0";
-#endif
-
-#ifdef MQTT_ENCRYPTED
-#include
-WiFiClientSecure espClient;
-#else
-WiFiClient espClient;
-#endif
-PubSubClient client(espClient);
-
-void sendValues()
-{
- Serial.printf("Sending values in MQTT.\n");
-#ifdef ARDUINO_M5Stick_C_Plus2
- //Add Power values
- // getBatteryVoltage returns battery voltage [mV] as an int16_t
- float batteryVoltage = (float) M5.Power.getBatteryVoltage() / 1000; // convert to V as a float
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%.3gV\",", "M5BatV", batteryVoltage);
-#elif ARDUINO_M5Stick_C
- //Add M5 APX values
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%.3gV\",\"%s\":\"%gmA\",", "M5VIN", M5.Axp.GetVinVoltage(),"M5AmpIn", M5.Axp.GetVinCurrent());
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%.3gV\",\"%s\":\"%gmA\",", "M5BatV", M5.Axp.GetBatVoltage(),"M5BatCur", M5.Axp.GetBatCurrent());
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%.3gmW\",", "M5BatPwr", M5.Axp.GetBatPower());
-#endif
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%ddBm\",", "WifiRSSI", WiFi.RSSI());
- snprintf(jsonbuff + strlen(jsonbuff),MAX_MSG_SIZE - strlen(jsonbuff) , "\"%s\":\"%d\",", "FreeMem", ESP.getFreeHeap());
- jsonbuff[strlen(jsonbuff) - 1] = '}';
-#ifdef JSONTABLE
- strcat(jsonbuff,"]");
-#endif
- client.publish(MQTT_attr, jsonbuff);
-#ifdef JSONTABLE
- strcpy(jsonbuff, "[{\0");
-#else
- strcpy(jsonbuff, "{\0");
-#endif
-}
-
-void saveEEPROM(uint8_t state){
- EEPROM.write(EEPROM_STATE,state);
- EEPROM.commit();
-}
-
-void readEEPROM(){
- if ('R' == EEPROM.read(EEPROM_CHK)){
- digitalWrite(PIN_THERM,EEPROM.read(EEPROM_STATE));
- mqttSerial.printf("Restoring previous state: %s",(EEPROM.read(EEPROM_STATE) == PIN_THERM_ACTIVE_STATE)? "On":"Off" );
- }
- else{
- mqttSerial.printf("EEPROM not initialized (%d). Initializing...",EEPROM.read(EEPROM_CHK));
- EEPROM.write(EEPROM_CHK,'R');
- EEPROM.write(EEPROM_STATE,!PIN_THERM_ACTIVE_STATE);
- EEPROM.commit();
- digitalWrite(PIN_THERM,!PIN_THERM_ACTIVE_STATE);
- }
-}
-
-void reconnectMqtt()
-{
- // Loop until we're reconnected
- int i = 0;
- while (!client.connected())
- {
- Serial.print("Attempting MQTT connection...");
-
- if (client.connect("ESPAltherma-dev", MQTT_USERNAME, MQTT_PASSWORD, MQTT_lwt, 0, true, "Offline"))
- {
- Serial.println("connected!");
- client.publish("homeassistant/sensor/espAltherma/config", "{\"name\":\"AlthermaSensors\",\"stat_t\":\"~/LWT\",\"avty_t\":\"~/LWT\",\"pl_avail\":\"Online\",\"pl_not_avail\":\"Offline\",\"uniq_id\":\"espaltherma\",\"device\":{\"identifiers\":[\"ESPAltherma\"]}, \"~\":\"espaltherma\",\"json_attr_t\":\"~/ATTR\"}", true);
- client.publish(MQTT_lwt, "Online", true);
- client.publish("homeassistant/switch/espAltherma/config", "{\"name\":\"Altherma\",\"cmd_t\":\"~/POWER\",\"stat_t\":\"~/STATE\",\"pl_off\":\"OFF\",\"pl_on\":\"ON\",\"~\":\"espaltherma\"}", true);
-
- // Subscribe
- client.subscribe("espaltherma/POWER");
-#ifdef PIN_SG1
- // Smart Grid
- client.publish("homeassistant/select/espAltherma/sg/config", "{\"availability\":[{\"topic\":\"espaltherma/LWT\",\"payload_available\":\"Online\",\"payload_not_available\":\"Offline\"}],\"availability_mode\":\"all\",\"unique_id\":\"espaltherma_sg\",\"device\":{\"identifiers\":[\"ESPAltherma\"],\"manufacturer\":\"ESPAltherma\",\"model\":\"M5StickC PLUS ESP32-PICO\",\"name\":\"ESPAltherma\"},\"icon\":\"mdi:solar-power\",\"name\":\"EspAltherma Smart Grid\",\"command_topic\":\"espaltherma/sg/set\",\"command_template\":\"{% if value == 'Free Running' %} 0 {% elif value == 'Forced Off' %} 1 {% elif value == 'Recommended On' %} 2 {% elif value == 'Forced On' %} 3 {% else %} 0 {% endif %}\",\"options\":[\"Free Running\",\"Forced Off\",\"Recommended On\",\"Forced On\"],\"state_topic\":\"espaltherma/sg/state\",\"value_template\":\"{% set mapper = { '0':'Free Running', '1':'Forced Off', '2':'Recommended On', '3':'Forced On' } %} {% set word = mapper[value] %} {{ word }}\"}", true);
- client.subscribe("espaltherma/sg/set");
- client.publish("espaltherma/sg/state", "0");
-#endif
-
-#ifdef SAFETY_RELAY_PIN
- // Safety relay
- client.publish("homeassistant/switch/espAltherma/safety/config", "{\"name\":\"Altherma Safety\",\"cmd_t\":\"~/SAFETY\",\"stat_t\":\"~/SAFETY_STATE\",\"pl_off\":\"0\",\"pl_on\":\"1\",\"~\":\"espaltherma\"}", true);
- client.subscribe("espaltherma/SAFETY");
-#endif
-
-#ifndef PIN_SG1
- // Publish empty retained message so discovered entities are removed from HA
- client.publish("homeassistant/select/espAltherma/sg/config", "", true);
-#endif
- }
- else
- {
- Serial.printf("failed, rc=%d, try again in 5 seconds", client.state());
- unsigned long start = millis();
- while (millis() < start + 5000)
- {
- ArduinoOTA.handle();
- }
-
- if (i++ == 100) {
- Serial.printf("Tried for 500 sec, rebooting now.");
- restart_board();
- }
- }
- }
-}
-
-void callbackTherm(byte *payload, unsigned int length)
-{
- payload[length] = '\0';
-
- // Is it ON or OFF?
- // Ok I'm not super proud of this, but it works :p
- if (payload[1] == 'F')
- { //turn off
- digitalWrite(PIN_THERM, !PIN_THERM_ACTIVE_STATE);
- saveEEPROM(!PIN_THERM_ACTIVE_STATE);
- client.publish("espaltherma/STATE", "OFF", true);
- mqttSerial.println("Turned OFF");
- }
- else if (payload[1] == 'N')
- { //turn on
- digitalWrite(PIN_THERM, PIN_THERM_ACTIVE_STATE);
- saveEEPROM(PIN_THERM_ACTIVE_STATE);
- client.publish("espaltherma/STATE", "ON", true);
- mqttSerial.println("Turned ON");
- }
- else if (payload[0] == 'R')//R(eset/eboot)
- {
- mqttSerial.println("Rebooting");
- delay(100);
- restart_board();
- }
- else
- {
- Serial.printf("Unknown message: %s\n", payload);
- }
-}
-
-#ifdef PIN_SG1
-//Smartgrid callbacks
-void callbackSg(byte *payload, unsigned int length)
-{
- payload[length] = '\0';
-
- if (payload[0] == '0')
- {
- // Set SG 0 mode => SG1 = INACTIVE, SG2 = INACTIVE
- digitalWrite(PIN_SG1, SG_RELAY_INACTIVE_STATE);
- digitalWrite(PIN_SG2, SG_RELAY_INACTIVE_STATE);
- client.publish("espaltherma/sg/state", "0");
- Serial.println("Set SG mode to 0 - Normal operation");
- }
- else if (payload[0] == '1')
- {
- // Set SG 1 mode => SG1 = INACTIVE, SG2 = ACTIVE
- digitalWrite(PIN_SG1, SG_RELAY_INACTIVE_STATE);
- digitalWrite(PIN_SG2, SG_RELAY_ACTIVE_STATE);
- client.publish("espaltherma/sg/state", "1");
- Serial.println("Set SG mode to 1 - Forced OFF");
- }
- else if (payload[0] == '2')
- {
- // Set SG 2 mode => SG1 = ACTIVE, SG2 = INACTIVE
- digitalWrite(PIN_SG1, SG_RELAY_ACTIVE_STATE);
- digitalWrite(PIN_SG2, SG_RELAY_INACTIVE_STATE);
- client.publish("espaltherma/sg/state", "2");
- Serial.println("Set SG mode to 2 - Recommended ON");
- }
- else if (payload[0] == '3')
- {
- // Set SG 3 mode => SG1 = ACTIVE, SG2 = ACTIVE
- digitalWrite(PIN_SG1, SG_RELAY_ACTIVE_STATE);
- digitalWrite(PIN_SG2, SG_RELAY_ACTIVE_STATE);
- client.publish("espaltherma/sg/state", "3");
- Serial.println("Set SG mode to 3 - Forced ON");
- }
- else
- {
- Serial.printf("Unknown message: %s\n", payload);
- }
-}
-#endif
-
-#ifdef SAFETY_RELAY_PIN
-void callbackSafety(byte *payload, unsigned int length)
-{
- payload[length] = '\0';
-
- if (payload[0] == '0')
- {
- // Set Safety relay to OFF
- digitalWrite(SAFETY_RELAY_PIN, !SAFETY_RELAY_ACTIVE_STATE);
- client.publish("espaltherma/SAFETY_STATE", "0", true);
- }
- else if (payload[0] == '1')
- {
- // Set Safety relay to ON
- digitalWrite(SAFETY_RELAY_PIN, SAFETY_RELAY_ACTIVE_STATE);
- client.publish("espaltherma/SAFETY_STATE", "1", true);
- }
- else
- {
- Serial.printf("Unknown message: %s\n", payload);
- }
-}
-#endif
-
-
-void callback(char *topic, byte *payload, unsigned int length)
-{
- Serial.printf("Message arrived [%s] : %s\n", topic, payload);
-
- if (strcmp(topic, "espaltherma/POWER") == 0)
- {
- callbackTherm(payload, length);
- }
-#ifdef PIN_SG1
- else if (strcmp(topic, "espaltherma/sg/set") == 0)
- {
- callbackSg(payload, length);
- }
-#endif
-#ifdef SAFETY_RELAY_PIN
- else if (strcmp(topic, "espaltherma/SAFETY") == 0)
- {
- callbackSafety(payload, length);
- }
-#endif
-
- else
- {
- Serial.printf("Unknown topic: %s\n", topic);
- }
-}
diff --git a/include/mqttserial.h b/include/mqttserial.h
deleted file mode 100644
index d413c743..00000000
--- a/include/mqttserial.h
+++ /dev/null
@@ -1,84 +0,0 @@
-#ifndef mqttSerial_h
-#define mqttSerial_h
-#include "Stream.h"
-#include
-#ifdef ARDUINO_M5Stick_C_Plus2
-#include
-#elif ARDUINO_M5Stick_C_Plus
-#include
-#elif ARDUINO_M5Stick_C
-#include
-#endif
-class MQTTSerial: public Stream
-{
-private:
- /* data */
- PubSubClient* _client = nullptr;
- char _topic[64];
-public:
- inline void begin(PubSubClient* client,const char* topic){
- _client=client;
- strcpy(_topic,topic);
- };
-
- inline size_t write(uint8_t){return 0;};
- size_t write(const uint8_t *buffer, size_t size);
- inline int available(void){return _client->connected();};
- inline int availableForWrite(void){return 0;};
- inline int peek(void){return 0;};
- inline int read(void){return 0;};
- inline void flush(void){};
- inline size_t write(const char * s)
- {
- return write((uint8_t*) s, strlen(s));
- }
- inline size_t write(unsigned long n)
- {
- return write((uint8_t) n);
- }
- inline size_t write(long n)
- {
- return write((uint8_t) n);
- }
- inline size_t write(unsigned int n)
- {
- return write((uint8_t) n);
- }
- inline size_t write(int n)
- {
- return write((uint8_t) n);
- }
-
-
- MQTTSerial();
- ~MQTTSerial();
-};
-
-MQTTSerial mqttSerial;
-
-MQTTSerial::MQTTSerial()
-{
-}
-size_t MQTTSerial::write(const uint8_t *buffer, size_t size)
-{
-#ifdef ARDUINO_M5Stick_C
- if (M5.Lcd.getCursorY()+13>M5.Lcd.height()){
- M5.Lcd.fillScreen(TFT_BLACK);
- M5.Lcd.setCursor(0,0);
- }
- M5.Lcd.print((const char*) buffer);
-#endif
-#ifndef DISABLE_LOG_MESSAGES
- if (WiFi.status() == WL_CONNECTED && _client!=nullptr &&_client->connected()){
- _client->publish(_topic,buffer,size);
- }
- Serial.write(buffer,size);
-#endif
- return size;
-}
-
-MQTTSerial::~MQTTSerial()
-{
-}
-
-#endif
\ No newline at end of file
diff --git a/include/restart.h b/include/restart.h
deleted file mode 100644
index 53600b73..00000000
--- a/include/restart.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef ESPALTHERMA_RESTART_H
-#define ESPALTHERMA_RESTART_H
-
-#include
-
-void restart_board()
-{
- #if defined(ARDUINO_ARCH_ESP8266)
- system_restart();
- #else
- esp_restart();
- #endif
-}
-
-#endif
\ No newline at end of file
diff --git a/lib/CAN/Drivers/elm327.cpp b/lib/CAN/Drivers/elm327.cpp
new file mode 100644
index 00000000..1ba07a15
--- /dev/null
+++ b/lib/CAN/Drivers/elm327.cpp
@@ -0,0 +1,250 @@
+#include "elm327.hpp"
+
+DriverELM327::DriverELM327(const CAN_Config *CANConfig, IDebugStream* const debugStream) : CANDriver(CANConfig, debugStream)
+{
+}
+
+bool DriverELM327::ATCommandIsOK()
+{
+ char result[] = "KO";
+
+ int packetSize = Elm327Serial->available();
+
+ if(packetSize == sizeof(result)) {
+ result[0] = Elm327Serial->read();
+ result[1] = Elm327Serial->read();
+
+ if(Elm327Serial->read() != '>') {
+ return false;
+ }
+ }
+
+ return strcmp(result, "OK") == 0;
+}
+
+bool DriverELM327::setMode(CanDriverMode mode)
+{
+ switch (mode) {
+ case CanDriverMode::Normal:
+ listenOnly = false;
+ write("AT E0", 5); // disable echo
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus setMode failed! E1");
+ return false;
+ }
+ break;
+
+ case CanDriverMode::Loopback:
+ listenOnly = false;
+ write("AT E1", 5); // enable echo
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus setMode failed! E2");
+ return false;
+ }
+ break;
+
+ case CanDriverMode::ListenOnly:
+ listenOnly = true;
+ break;
+ }
+
+ currentMode = mode;
+
+ return true;
+}
+
+void DriverELM327::handleLoop()
+{
+ CANDriver::handleLoop();
+
+ if(!canInited)
+ return;
+
+ while (Elm327Serial->available()) {
+ char c = Elm327Serial->read();
+ if (c == '>') {
+ if(received.length() > 8*2) {
+ debugStream->printf("CAN-Bus receive error! Buffer: %s\n", received.c_str());
+ received = "";
+ continue;
+ }
+
+ CanFrame frame;
+ uint8_t i = 0;
+ frame.len = received.length();
+ for(; i < 8; i++) {
+ byte byteReceived;
+
+ if(received.length() == 0) {
+ byteReceived = 0;
+ } else {
+ byteReceived = strtol(received.substring(0, 2).c_str(), nullptr, 16);
+ received = received.substring(0, 2);
+ }
+
+ frame.data[i] = byteReceived;
+ }
+
+ onDataRecieved(millis(), frame);
+
+ received = "";
+ } else {
+ received += c;
+ }
+ }
+}
+
+bool DriverELM327::write(const char *bytes, const size_t size)
+{
+ if(listenOnly)
+ return false;
+
+ size_t len = 0;
+
+ len += Elm327Serial->write(bytes, size);
+ len += Elm327Serial->write("\r");
+
+ return len > 0;
+}
+
+bool DriverELM327::initInterface()
+{
+ if(CANConfig->CAN_SPEED_KBPS > 500) {
+ debugStream->println("CAN-Bus init failed! E1");
+ return false;
+ }
+
+ if(CANConfig->CAN_BUS == CAN_ICBus::BT) {
+#if !defined(NO_BLUETOOTH) && !defined(PIO_UNIT_TESTING)
+ BluetoothSerial* SerialBT = new BluetoothSerial();
+ deleteNeeded = true;
+
+ if(!SerialBT->begin("ESPAltherma", true)) {
+ debugStream->println("CAN-Bus init failed! BT - begin failed");
+ return false;
+ }
+
+ if(CANConfig->CAN_BLUETOOTH.USE_PIN) {
+ if(!SerialBT->setPin(CANConfig->CAN_BLUETOOTH.PIN.c_str())) {
+ debugStream->println("CAN-Bus init failed! BT - setPin failed");
+ return false;
+ }
+ }
+
+ if (!SerialBT->connect(CANConfig->CAN_BLUETOOTH.DEVICENAME)) {
+ debugStream->println("CAN-Bus init failed! BT - connect failed");
+ return false;
+ }
+
+ Elm327Serial = SerialBT;
+#else
+ debugStream->println("CAN-Bus init failed! BT - this firmware is not compiled with bluetooth");
+ return false;
+#endif
+ } else if(CANConfig->CAN_BUS == CAN_ICBus::UART) {
+
+// TODO: Fix this so maybe an external Stream pointer is given to be used isntead of direct Serial1 calls
+#ifndef PIO_UNIT_TESTING
+ Serial1_begin(CANConfig->CAN_UART.PIN_RX, CANConfig->CAN_UART.PIN_TX);
+
+ delay(100);
+
+ if(!Serial1) {
+ debugStream->println("CAN-Bus init failed! UART - begin failed");
+ return false;
+ }
+
+ Elm327Serial = &Serial1;
+#endif
+ } else {
+ debugStream->println("CAN-Bus init failed! E2 - not supported IC-Bus found");
+ return false;
+ }
+
+ write("AT Z", 4); // just reset ELM327
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E3");
+ return false;
+ }
+
+ uint8_t dividor = 500 / CANConfig->CAN_SPEED_KBPS;
+ char baudrateCmd[15];
+ sprintf(baudrateCmd, "AT PP 2F SV %02x", dividor);
+
+ write(baudrateCmd, 14); // set given CAN-Bus baudrate
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E4");
+ return false;
+ }
+
+ write("AT PP 2F ON", 11); // Activate/save baud parameter
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E5");
+ return false;
+ }
+
+ write("AT R0", 5); // disable response waiting
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E6");
+ return false;
+ }
+
+ write("AT S0", 5); // disable spaces in return messages
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E7");
+ return false;
+ }
+
+ write("AT SP C", 7);
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus init failed! E8");
+ return false;
+ }
+
+ setMode(CanDriverMode::Normal);
+
+ defaultInit();
+
+ return true;
+}
+
+bool DriverELM327::setID(const uint16_t id)
+{
+ char message[9];
+ sprintf (message, "ATSH%X", id);
+ write(message, 9);
+ if(!ATCommandIsOK()) {
+ debugStream->println("CAN-Bus setID failed!");
+ return false;
+ }
+
+ return true;
+}
+
+void DriverELM327::sendCommand(CANCommand* cmd, bool setValue, int value)
+{
+ if(currentMode == CanDriverMode::ListenOnly)
+ return;
+
+ CanFrame* frame = getCanFrameFromCommand(cmd, setValue, value);
+
+ setID(frame->id);
+
+ // convert command to hex string
+ char command[16];
+ for(uint8_t i = 0; i < CAN_COMMAND_BYTE_LENGTH; i++) {
+ sprintf(command + (i*2), "%02x", cmd->command[i]);
+ }
+
+ if(!write(command, 16)) {
+ debugStream->printf("CAN couldn't send command: %.16s\n", command);
+ }
+
+ delete frame;
+}
+
+DriverELM327::~DriverELM327()
+{
+ if(deleteNeeded)
+ delete Elm327Serial;
+}
\ No newline at end of file
diff --git a/lib/CAN/Drivers/elm327.hpp b/lib/CAN/Drivers/elm327.hpp
new file mode 100644
index 00000000..fb90a446
--- /dev/null
+++ b/lib/CAN/Drivers/elm327.hpp
@@ -0,0 +1,34 @@
+#pragma once
+
+#include "../driver.hpp"
+#if !defined(NO_BLUETOOTH) && !defined(PIO_UNIT_TESTING)
+#include
+#endif
+
+#define ELM327_SERIAL_SPEED 38400
+
+#ifdef ARDUINO_ARCH_ESP8266
+#define Serial1_begin(rx, tx) Serial1.begin(ELM327_SERIAL_SPEED, SERIAL_8N1, SerialMode::SERIAL_FULL, rx, tx)
+#else
+#define Serial1_begin(rx, tx) Serial1.begin(ELM327_SERIAL_SPEED, SERIAL_8N1, rx, tx)
+#endif
+
+class DriverELM327 : public CANDriver
+{
+private:
+ bool write(const char *bytes, size_t size);
+ bool setID(const uint16_t id);
+ bool setMode(CanDriverMode mode);
+ bool ATCommandIsOK();
+ bool listenOnly;
+ bool deleteNeeded = false;
+ String received = "";
+ Stream* Elm327Serial = nullptr;
+
+public:
+ DriverELM327(const CAN_Config* CANConfig, IDebugStream* const debugStream);
+ bool initInterface();
+ void handleLoop();
+ void sendCommand(CANCommand* cmd, bool setValue = false, int value = 0);
+ ~DriverELM327();
+};
\ No newline at end of file
diff --git a/lib/CAN/Drivers/mcp2515.cpp b/lib/CAN/Drivers/mcp2515.cpp
new file mode 100644
index 00000000..0c67a77a
--- /dev/null
+++ b/lib/CAN/Drivers/mcp2515.cpp
@@ -0,0 +1,361 @@
+#include "mcp2515.hpp"
+
+#if !defined(ARDUINO_ARCH_ESP8266) && !defined(PIO_UNIT_TESTING)
+
+using namespace MCP2515;
+
+DriverMCP2515* self;
+
+bool DriverMCP2515::setMode(CanDriverMode mode)
+{
+ bool success = false;
+
+ switch (mode)
+ {
+ case CanDriverMode::Normal:
+ success = mcp2515->setNormalMode();
+ break;
+
+ case CanDriverMode::Loopback:
+ success = mcp2515->setLoopbackMode();
+ break;
+
+ case CanDriverMode::ListenOnly:
+ success = mcp2515->setListenOnlyMode();
+ break;
+ }
+
+ if(success)
+ currentMode = mode;
+
+ return success;
+}
+
+void DriverMCP2515::writeLoopbackTest()
+{
+ debugStream->println("CAN running loopback test");
+
+ CanDriverMode modeBeforeTest = currentMode;
+ setMode(CanDriverMode::Loopback);
+
+ CanFrame const test_frame_1 = { 0x00000001, {0}, 0, false, false}; /* Minimum (no) payload */
+ CanFrame const test_frame_2 = { 0x00000002, {0xCA, 0xFE, 0xCA, 0xFE, 0, 0, 0, 0}, 4, false, false }; /* Between minimum and maximum payload */
+ CanFrame const test_frame_3 = { 0x00000003, {0xCA, 0xFE, 0xCA, 0xFE, 0xCA, 0xFE, 0xCA, 0xFE}, 8, false, false }; /* Maximum payload */
+ CanFrame const test_frame_4 = { 0x40000004, {0}, 0, false, false }; /* RTR frame */
+ CanFrame const test_frame_5 = { 0x000007FF, {0}, 0, false, false }; /* Highest standard 11 bit CAN address */
+ CanFrame const test_frame_6 = { 0x80000000, {0}, 0, false, false }; /* Lowest extended 29 bit CAN address */
+ CanFrame const test_frame_7 = { 0x9FFFFFFF, {0}, 0, false, false }; /* Highest extended 29 bit CAN address */
+
+ std::array const CAN_TEST_FRAME_ARRAY =
+ {
+ test_frame_1,
+ test_frame_2,
+ test_frame_3,
+ test_frame_4,
+ test_frame_5,
+ test_frame_6,
+ test_frame_7
+ };
+
+ std::for_each(CAN_TEST_FRAME_ARRAY.cbegin(),
+ CAN_TEST_FRAME_ARRAY.cend(),
+ [this](CanFrame const frame)
+ {
+ if(!mcp2515->transmit(frame.id, frame.data, frame.len)) {
+ debugStream->println("ERROR TX");
+ }
+ delay(10);
+ });
+
+ setMode(modeBeforeTest);
+}
+
+void DriverMCP2515::handleInterrupt()
+{
+ if(!canInited)
+ return;
+
+ mcp2515->onExternalEventHandler();
+}
+
+bool DriverMCP2515::getRate(const uint8_t mhz, const uint16_t speed, CanBitRate &rate)
+{
+ bool found = true;
+
+ if(mhz == 8)
+ {
+ switch (CANConfig->CAN_SPEED_KBPS)
+ {
+ case 10:
+ rate = CanBitRate::BR_10kBPS_8MHZ;
+ break;
+
+ case 20:
+ rate = CanBitRate::BR_20kBPS_8MHZ;
+ break;
+
+ case 50:
+ rate = CanBitRate::BR_50kBPS_8MHZ;
+ break;
+
+ case 100:
+ rate = CanBitRate::BR_100kBPS_8MHZ;
+ break;
+
+ case 125:
+ rate = CanBitRate::BR_125kBPS_8MHZ;
+ break;
+
+ case 250:
+ rate = CanBitRate::BR_250kBPS_8MHZ;
+ break;
+
+ case 500:
+ rate = CanBitRate::BR_500kBPS_8MHZ;
+ break;
+
+ case 800:
+ rate = CanBitRate::BR_800kBPS_8MHZ;
+ break;
+
+ case 1000:
+ rate = CanBitRate::BR_1000kBPS_8MHZ;
+ break;
+
+ default:
+ found = false;
+ break;
+ }
+ }
+ else if(mhz == 10)
+ {
+ switch (CANConfig->CAN_SPEED_KBPS)
+ {
+ case 10:
+ rate = CanBitRate::BR_10kBPS_10MHZ;
+ break;
+
+ case 20:
+ rate = CanBitRate::BR_20kBPS_10MHZ;
+ break;
+
+ case 50:
+ rate = CanBitRate::BR_50kBPS_10MHZ;
+ break;
+
+ case 100:
+ rate = CanBitRate::BR_100kBPS_10MHZ;
+ break;
+
+ case 125:
+ rate = CanBitRate::BR_125kBPS_10MHZ;
+ break;
+
+ case 250:
+ rate = CanBitRate::BR_250kBPS_10MHZ;
+ break;
+
+ case 500:
+ rate = CanBitRate::BR_500kBPS_10MHZ;
+ break;
+
+ case 1000:
+ rate = CanBitRate::BR_1000kBPS_10MHZ;
+ break;
+
+ default:
+ found = false;
+ break;
+ }
+ }
+ else if(mhz == 12)
+ {
+ switch (CANConfig->CAN_SPEED_KBPS)
+ {
+ case 10:
+ rate = CanBitRate::BR_10kBPS_12MHZ;
+ break;
+
+ case 20:
+ rate = CanBitRate::BR_20kBPS_12MHZ;
+ break;
+
+ case 50:
+ rate = CanBitRate::BR_50kBPS_12MHZ;
+ break;
+
+ case 100:
+ rate = CanBitRate::BR_100kBPS_12MHZ;
+ break;
+
+ case 125:
+ rate = CanBitRate::BR_125kBPS_12MHZ;
+ break;
+
+ case 250:
+ rate = CanBitRate::BR_250kBPS_12MHZ;
+ break;
+
+ case 500:
+ rate = CanBitRate::BR_500kBPS_12MHZ;
+ break;
+
+ case 1000:
+ rate = CanBitRate::BR_1000kBPS_12MHZ;
+ break;
+
+ default:
+ found = false;
+ break;
+ }
+ }
+ else if(mhz == 16)
+ {
+ switch (CANConfig->CAN_SPEED_KBPS)
+ {
+ case 10:
+ rate = CanBitRate::BR_10kBPS_16MHZ;
+ break;
+
+ case 20:
+ rate = CanBitRate::BR_20kBPS_16MHZ;
+ break;
+
+ case 50:
+ rate = CanBitRate::BR_50kBPS_16MHZ;
+ break;
+
+ case 100:
+ rate = CanBitRate::BR_100kBPS_16MHZ;
+ break;
+
+ case 125:
+ rate = CanBitRate::BR_125kBPS_16MHZ;
+ break;
+
+ case 250:
+ rate = CanBitRate::BR_250kBPS_16MHZ;
+ break;
+
+ case 500:
+ rate = CanBitRate::BR_500kBPS_16MHZ;
+ break;
+
+ case 800:
+ rate = CanBitRate::BR_800kBPS_16MHZ;
+ break;
+
+ case 1000:
+ rate = CanBitRate::BR_1000kBPS_16MHZ;
+ break;
+
+ default:
+ found = false;
+ break;
+ }
+ }
+ else
+ {
+ found = false;
+ }
+
+ return found;
+}
+
+DriverMCP2515::DriverMCP2515(const CAN_Config* CANConfig, IDebugStream* const debugStream) : CANDriver(CANConfig, debugStream)
+{
+ self = this;
+
+ mcp2515 = new ArduinoMCP2515([this]()
+ {
+ SPI.beginTransaction(MCP2515x_SPI_SETTING);
+ digitalWrite(this->CANConfig->CAN_SPI.PIN_CS, LOW);
+ },
+ [this]()
+ {
+ digitalWrite(this->CANConfig->CAN_SPI.PIN_CS, HIGH);
+ SPI.endTransaction();
+ },
+ [this](uint8_t const dataByte) { return SPI.transfer(dataByte); },
+ micros,
+ [this](const uint32_t timestamp_us, const uint32_t id, const uint8_t *data, const uint8_t len)
+ {
+ CanFrame frame;
+ frame.id = id;
+ memcpy(frame.data, data, len);
+ frame.len = len;
+ frame.isEXT = id & MCP2515::CAN_EFF_BITMASK;
+ frame.isRTR = id & MCP2515::CAN_RTR_BITMASK;
+
+ onDataRecieved(timestamp_us, frame);
+ },
+ nullptr);
+}
+
+bool DriverMCP2515::initInterface()
+{
+ CanBitRate rate;
+
+ bool ratePossible = getRate(CANConfig->CAN_SPI.IC_MHZ, CANConfig->CAN_SPEED_KBPS, rate);
+
+ if(!ratePossible) // test if we can write something to the MCP2515 (is a device connected?)
+ {
+ debugStream->println("CAN-Bus init failed! E1");
+ return false;
+ }
+
+ /* Setup SPI access */
+ SPI_begin(CANConfig->CAN_SPI.PIN_SCK,
+ CANConfig->CAN_SPI.PIN_MISO,
+ CANConfig->CAN_SPI.PIN_MOSI,
+ CANConfig->CAN_SPI.PIN_CS);
+
+ pinMode(CANConfig->CAN_SPI.PIN_CS, OUTPUT);
+ digitalWrite(CANConfig->CAN_SPI.PIN_CS, HIGH);
+
+ /* Attach interrupt handler to register MCP2515 signaled by taking INT low */
+ pinMode(CANConfig->CAN_SPI.PIN_INT, INPUT_PULLUP);
+ attachInterrupt(digitalPinToInterrupt(CANConfig->CAN_SPI.PIN_INT),
+ []() IRAM_ATTR
+ {
+ self->handleInterrupt();
+ },
+ FALLING);
+
+ mcp2515->begin();
+
+ if(!setMode(CanDriverMode::Loopback)) // test if we can write something to the MCP2515 (is a device connected?)
+ {
+ SPI.end();
+ debugStream->println("CAN-Bus init failed! E2");
+ return false;
+ }
+
+ mcp2515->setBitRate(rate); // CAN bit rate and MCP2515 clock speed
+
+ defaultInit();
+
+ return true;
+}
+
+void DriverMCP2515::sendCommand(CANCommand* cmd, bool setValue, int value)
+{
+ if(currentMode == CanDriverMode::ListenOnly)
+ return;
+
+ CanFrame* frame = getCanFrameFromCommand(cmd, setValue, value);
+
+ if(!mcp2515->transmit(frame->id, frame->data, frame->len)) {
+ debugStream->println("ERROR TX");
+ }
+
+ delete frame;
+}
+
+DriverMCP2515::~DriverMCP2515()
+{
+ self = nullptr;
+ delete mcp2515;
+}
+
+#endif
\ No newline at end of file
diff --git a/lib/CAN/Drivers/mcp2515.hpp b/lib/CAN/Drivers/mcp2515.hpp
new file mode 100644
index 00000000..4693916b
--- /dev/null
+++ b/lib/CAN/Drivers/mcp2515.hpp
@@ -0,0 +1,30 @@
+#pragma once
+
+#if !defined(ARDUINO_ARCH_ESP8266) && !defined(PIO_UNIT_TESTING)
+
+#include
+#include <107-Arduino-MCP2515.h>
+#include "../driver.hpp"
+
+#define SPI_begin(pin_sck, pin_miso, pin_mosi, pin_cs) SPI.begin(pin_sck, pin_miso, pin_mosi, pin_cs)
+
+using namespace MCP2515;
+
+class DriverMCP2515 : public CANDriver
+{
+private:
+ ArduinoMCP2515* mcp2515;
+ const SPISettings MCP2515x_SPI_SETTING{1000000, MSBFIRST, SPI_MODE0};
+ bool setMode(CanDriverMode mode);
+ bool getRate(const uint8_t mhz, const uint16_t speed, CanBitRate &rate);
+
+public:
+ DriverMCP2515(const CAN_Config* CANConfig, IDebugStream* const debugStream);
+ bool initInterface();
+ void writeLoopbackTest();
+ void sendCommand(CANCommand* cmd, bool setValue = false, int value = 0);
+ void handleInterrupt();
+ ~DriverMCP2515();
+};
+
+#endif
\ No newline at end of file
diff --git a/lib/CAN/Drivers/sja1000.cpp b/lib/CAN/Drivers/sja1000.cpp
new file mode 100644
index 00000000..aca4c356
--- /dev/null
+++ b/lib/CAN/Drivers/sja1000.cpp
@@ -0,0 +1,211 @@
+#include "sja1000.hpp"
+
+#if !defined(ARDUINO_ARCH_ESP8266) && !defined(PIO_UNIT_TESTING)
+
+DriverSJA1000::DriverSJA1000(const CAN_Config *CANConfig, IDebugStream* const debugStream) : CANDriver(CANConfig, debugStream)
+{
+}
+
+bool DriverSJA1000::getRate(const uint16_t speed, twai_timing_config_t &t_config)
+{
+ esp_chip_info_t chip;
+ esp_chip_info(&chip);
+
+ bool found = true;
+
+ switch (speed) {
+#if (SOC_TWAI_BRP_MAX > 256)
+ case 10:
+ t_config = TWAI_TIMING_CONFIG_10KBITS();
+ break;
+#endif
+ case 20:
+ if(chip.revision > 1)
+ t_config = TWAI_TIMING_CONFIG_20KBITS();
+ else
+ {
+ debugStream->println("Tried to init CAN-Bus with 20kbps on Revision 0 or Revision 1 Chip!");
+ found = false;
+ }
+ break;
+
+ case 50:
+ t_config = TWAI_TIMING_CONFIG_50KBITS();
+ break;
+
+ case 100:
+ t_config = TWAI_TIMING_CONFIG_100KBITS();
+ break;
+
+ case 125:
+ t_config = TWAI_TIMING_CONFIG_125KBITS();
+ break;
+
+ case 250:
+ t_config = TWAI_TIMING_CONFIG_250KBITS();
+ break;
+
+ case 500:
+ t_config = TWAI_TIMING_CONFIG_500KBITS();
+ break;
+
+ case 800:
+ t_config = TWAI_TIMING_CONFIG_800KBITS();
+ break;
+
+ case 1000:
+ t_config = TWAI_TIMING_CONFIG_1MBITS();
+ break;
+
+ default:
+ found = false;
+ break;
+ }
+
+ return found;
+}
+
+bool DriverSJA1000::initInterface()
+{
+ f_config = TWAI_FILTER_CONFIG_ACCEPT_ALL();
+
+ bool ratePossible = getRate(CANConfig->CAN_SPEED_KBPS, t_config);
+
+ if(!ratePossible) {
+ debugStream->println("CAN-Bus init failed! E1");
+ return false;
+ }
+
+ defaultInit();
+
+ return true;
+}
+
+void DriverSJA1000::sendCommand(CANCommand* cmd, bool setValue, int value)
+{
+ if(currentMode == CanDriverMode::ListenOnly)
+ return;
+
+ CanFrame* frame = getCanFrameFromCommand(cmd, setValue, value);
+
+ twai_message_t message;
+
+ message.identifier = frame->id;
+ message.extd = frame->isEXT;
+ message.rtr = frame->isRTR;
+ message.data_length_code = frame->len;
+ memcpy(message.data, frame->data, sizeof(message.data)*sizeof(message.data[0]));
+
+ if(!twai_transmit(&message, portMAX_DELAY)) {
+ debugStream->println("ERROR TX");
+ }
+
+ delete frame;
+}
+
+void DriverSJA1000::handleLoop()
+{
+ CANDriver::handleLoop();
+
+ if(!canInited)
+ return;
+
+ twai_status_info_t status_info;
+ twai_get_status_info(&status_info);
+
+ while(status_info.msgs_to_rx > 0) {
+ twai_message_t message;
+
+ if (twai_receive(&message, 0) != ESP_OK) {
+ return; // no messages
+ }
+
+ CanFrame frame;
+ frame.id = message.identifier;
+ frame.len = message.data_length_code;
+ memcpy(frame.data, message.data, sizeof(frame.data)*sizeof(frame.data[0]));
+ frame.isRTR = message.rtr;
+ frame.isEXT = message.extd;
+
+ onDataRecieved(millis(), frame);
+
+ status_info.msgs_to_rx--;
+ }
+}
+
+bool DriverSJA1000::setMode(CanDriverMode mode)
+{
+ stopInterface();
+
+ switch (mode) {
+ case CanDriverMode::Normal:
+ g_config = TWAI_GENERAL_CONFIG_DEFAULT((gpio_num_t)CANConfig->CAN_UART.PIN_TX, (gpio_num_t)CANConfig->CAN_UART.PIN_RX, TWAI_MODE_NORMAL);
+ break;
+
+ case CanDriverMode::Loopback:
+ g_config = TWAI_GENERAL_CONFIG_DEFAULT((gpio_num_t)CANConfig->CAN_UART.PIN_TX, (gpio_num_t)CANConfig->CAN_UART.PIN_RX, TWAI_MODE_NO_ACK);
+ break;
+
+ case CanDriverMode::ListenOnly:
+ g_config = TWAI_GENERAL_CONFIG_DEFAULT((gpio_num_t)CANConfig->CAN_UART.PIN_TX, (gpio_num_t)CANConfig->CAN_UART.PIN_RX, TWAI_MODE_LISTEN_ONLY);
+ break;
+
+ default:
+ return false;
+ }
+
+ debugStream->printf("CAN-Bus mode %u\n", (uint8_t)mode);
+
+ int result;
+
+ if ((result = twai_driver_install(&g_config, &t_config, &f_config)) != ESP_OK) {
+ debugStream->print("CAN-Bus init failed! E2 - ");
+ debugStream->println(result);
+ return false;
+ }
+
+ if ((result = twai_start()) != ESP_OK) {
+ debugStream->print("CAN-Bus init failed! E3 - ");
+ debugStream->println(result);
+ return false;
+ }
+
+ currentMode = mode;
+ driverIsRunning = true;
+
+ return true;
+}
+
+
+bool DriverSJA1000::stopInterface()
+{
+ int result;
+
+ if(driverIsRunning) {
+ //Stop the TWAI driver
+ if ((result = twai_stop()) != ESP_OK) {
+ debugStream->print("CAN-Bus stop failed! ");
+ debugStream->println(result);
+ return false;
+ }
+
+ //Uninstall the TWAI driver
+ if ((result = twai_driver_uninstall()) != ESP_OK) {
+ debugStream->print("CAN-Bus uninstall failed! ");
+ debugStream->println(result);
+ return false;
+ }
+
+ driverIsRunning = false;
+ }
+
+ return driverIsRunning;
+}
+
+
+DriverSJA1000::~DriverSJA1000()
+{
+ stopInterface();
+}
+
+#endif
\ No newline at end of file
diff --git a/lib/CAN/Drivers/sja1000.hpp b/lib/CAN/Drivers/sja1000.hpp
new file mode 100644
index 00000000..70029184
--- /dev/null
+++ b/lib/CAN/Drivers/sja1000.hpp
@@ -0,0 +1,28 @@
+#pragma once
+
+#if !defined(ARDUINO_ARCH_ESP8266) && !defined(PIO_UNIT_TESTING)
+#include
+#include "../driver.hpp"
+
+class DriverSJA1000 : public CANDriver
+{
+private:
+ twai_general_config_t g_config;
+ twai_filter_config_t f_config;
+ twai_timing_config_t t_config;
+ bool driverIsRunning;
+
+ bool setMode(CanDriverMode mode);
+ bool getRate(const uint16_t speed, twai_timing_config_t &t_config);
+ bool stopInterface();
+
+public:
+ DriverSJA1000(const CAN_Config* CANConfig, IDebugStream* const debugStream);
+ bool initInterface();
+ void writeLoopbackTest();
+ void sendCommand(CANCommand* cmd, bool setValue = false, int value = 0);
+ void handleLoop();
+ ~DriverSJA1000();
+};
+
+#endif
\ No newline at end of file
diff --git a/lib/CAN/canBus.cpp b/lib/CAN/canBus.cpp
new file mode 100644
index 00000000..ab7b7c5f
--- /dev/null
+++ b/lib/CAN/canBus.cpp
@@ -0,0 +1,130 @@
+#include "canBus.hpp"
+
+static CANDriver *driver = nullptr;
+static IDebugStream *debugStream = nullptr;
+
+bool canBus_setup(const CAN_Config* CANConfig, IDebugStream* const debugStreamArg, CANDriver* const extDriver)
+{
+ canBus_stop();
+
+ if(debugStreamArg != nullptr) {
+ debugStream = debugStreamArg;
+ }
+
+ debugStream->println("Starting new CAN Driver...");
+
+ bool result = false;
+
+ if(extDriver == nullptr) {
+ switch (CANConfig->CAN_IC)
+ {
+ case CAN_ICTypes::ELM327:
+ driver = new DriverELM327(CANConfig, debugStream);
+ result = driver->initInterface();
+ break;
+
+ #if !defined(ARDUINO_ARCH_ESP8266) && !defined(PIO_UNIT_TESTING)
+ case CAN_ICTypes::MCP2515:
+ driver = new DriverMCP2515(CANConfig, debugStream);
+ result = driver->initInterface();
+ break;
+
+ case CAN_ICTypes::SJA1000:
+ driver = new DriverSJA1000(CANConfig, debugStream);
+ result = driver->initInterface();
+ break;
+ #endif
+
+ default:
+ debugStream->println("No CAN Driver found");
+ return result;
+ }
+ } else {
+ driver = extDriver;
+ result = driver->initInterface();
+ }
+
+ if(!result)
+ return false;
+
+ driver->enableSniffing(CANConfig->CAN_SNIFFING_ENABLED);
+
+ return true;
+}
+
+void canBus_loop()
+{
+ if(driver != nullptr)
+ driver->handleLoop();
+}
+
+void canBus_set(const String label, const char *payload, const uint32_t length)
+{
+ if(driver != nullptr)
+ driver->handleMQTTSetRequest(label, payload, length);
+}
+
+String canBus_readAllCommands()
+{
+ if(driver != nullptr)
+ return driver->readAllCommands();
+
+ return "";
+}
+
+void canBus_fill_config(JsonObject &jsonObject, CAN_Config *config)
+{
+ JsonArray commands = jsonObject["COMMANDS"].as();
+ config->COMMANDS_LENGTH = commands.size();
+ config->COMMANDS = new CANCommand *[config->COMMANDS_LENGTH];
+
+ for (size_t i = 0; i < config->COMMANDS_LENGTH; i++) {
+ JsonArray command = commands[i];
+
+ JsonArray commandBytes = command[CAN_COMMAND_INDEX_COMMAND];
+ byte commandArray[] = {
+ commandBytes[0],
+ commandBytes[1],
+ commandBytes[2],
+ commandBytes[3],
+ commandBytes[4],
+ commandBytes[5],
+ commandBytes[6]};
+
+ CANCommandValueCode **valueCodes;
+ uint8_t valueCodeSize = 0;
+
+ if (command.size() > CAN_COMMAND_INDEX_VALUE_CODE) {
+ JsonObject valueCodeCommands = command[CAN_COMMAND_INDEX_VALUE_CODE].as();
+ valueCodeSize = valueCodeCommands.size();
+ valueCodes = new CANCommandValueCode *[valueCodeSize];
+
+ uint8_t valueCodeCounter = 0;
+
+ for (JsonPair keyValue : valueCodeCommands) {
+ valueCodes[valueCodeCounter] = new CANCommandValueCode(keyValue.key().c_str(), keyValue.value().as().c_str());
+ valueCodeCounter++;
+ }
+ } else {
+ valueCodes = nullptr;
+ }
+
+ config->COMMANDS[i] = new CANCommand(
+ command[CAN_COMMAND_INDEX_NAME],
+ command[CAN_COMMAND_INDEX_LABEL],
+ commandArray,
+ command[CAN_COMMAND_INDEX_ID].as(),
+ command[CAN_COMMAND_INDEX_DIVISOR].as(),
+ command[CAN_COMMAND_INDEX_WRITABLE].as(),
+ command[CAN_COMMAND_INDEX_UNIT],
+ command[CAN_COMMAND_INDEX_TYPE],
+ valueCodeSize,
+ valueCodes);
+ }
+}
+
+void canBus_stop()
+{
+ if(driver != nullptr)
+ delete driver;
+}
\ No newline at end of file
diff --git a/lib/CAN/canBus.hpp b/lib/CAN/canBus.hpp
new file mode 100644
index 00000000..f833aa09
--- /dev/null
+++ b/lib/CAN/canBus.hpp
@@ -0,0 +1,22 @@
+#pragma once
+
+#include
+#include
+#include
+#include "config.hpp"
+#include "driver.hpp"
+#include "Drivers/mcp2515.hpp"
+#include "Drivers/elm327.hpp"
+#include "Drivers/sja1000.hpp"
+
+bool canBus_setup(const CAN_Config* CANConfig, IDebugStream* const debugStream, CANDriver* const extDriver = nullptr);
+
+void canBus_loop();
+
+void canBus_set(const String label, const char *payload, const uint32_t length);
+
+String canBus_readAllCommands();
+
+void canBus_fill_config(JsonObject &jsonObject, CAN_Config *config);
+
+void canBus_stop();
\ No newline at end of file
diff --git a/lib/CAN/command.cpp b/lib/CAN/command.cpp
new file mode 100644
index 00000000..66b3bcfd
--- /dev/null
+++ b/lib/CAN/command.cpp
@@ -0,0 +1,33 @@
+#include "command.hpp"
+
+CANCommandValueCode::CANCommandValueCode(String keyp, String valuep) : key(keyp), value(valuep)
+{
+
+};
+
+CANCommand::CANCommand( const char *namep, const char *labelp, byte commandp[CAN_COMMAND_BYTE_LENGTH], uint16_t idp, float divisorp, bool writablep, const char *unitp, const char *typep, const uint8_t valueCodeSizep, CANCommandValueCode** valueCodep) : id(idp), divisor(divisorp), writable(writablep), valueCodeSize(valueCodeSizep)
+{
+ uint8_t i;
+
+ for(i = 0; i < CAN_COMMAND_BYTE_LENGTH; i++)
+ command[i] = commandp[i];
+
+ strcpy(name, namep);
+ strcpy(label, labelp);
+ strcpy(unit, unitp);
+ strcpy(type, typep);
+
+ valueCode = valueCodep;
+};
+
+CANCommand::~CANCommand()
+{
+ if(valueCodeSize)
+ {
+ for (size_t i = 0; i < valueCodeSize; i++)
+ {
+ delete valueCode[i];
+ }
+ delete[] valueCode;
+ }
+}
\ No newline at end of file
diff --git a/lib/CAN/command.hpp b/lib/CAN/command.hpp
new file mode 100644
index 00000000..a421f446
--- /dev/null
+++ b/lib/CAN/command.hpp
@@ -0,0 +1,43 @@
+#pragma once
+
+#include
+
+#define CAN_COMMAND_NAME_LENGTH 19
+#define CAN_COMMAND_LABEL_LENGTH 21
+#define CAN_COMMAND_BYTE_LENGTH 7
+#define CAN_COMMAND_UNIT_LENGTH 8
+#define CAN_COMMAND_TYPE_LENGTH 8
+
+#define CAN_COMMAND_INDEX_NAME 0
+#define CAN_COMMAND_INDEX_LABEL 1
+#define CAN_COMMAND_INDEX_COMMAND 2
+#define CAN_COMMAND_INDEX_ID 3
+#define CAN_COMMAND_INDEX_DIVISOR 4
+#define CAN_COMMAND_INDEX_WRITABLE 5
+#define CAN_COMMAND_INDEX_UNIT 6
+#define CAN_COMMAND_INDEX_TYPE 7
+#define CAN_COMMAND_INDEX_VALUE_CODE 8
+
+struct CANCommandValueCode
+{
+ const String key;
+ const String value;
+ CANCommandValueCode(String keyp, String valuep);
+};
+
+struct CANCommand
+{
+ char name[CAN_COMMAND_NAME_LENGTH];
+ char label[CAN_COMMAND_LABEL_LENGTH];
+ byte command[CAN_COMMAND_BYTE_LENGTH];
+ const uint16_t id;
+ const float divisor;
+ const bool writable;
+ char unit[CAN_COMMAND_UNIT_LENGTH];
+ char type[CAN_COMMAND_TYPE_LENGTH];
+ const uint8_t valueCodeSize;
+ CANCommandValueCode** valueCode;
+
+ CANCommand( const char *namep, const char *labelp, byte commandp[CAN_COMMAND_BYTE_LENGTH], uint16_t idp, float divisorp, bool writablep, const char *unitp, const char *typep, const uint8_t valueCodeSizep, CANCommandValueCode** valueCodep);
+ ~CANCommand();
+};
\ No newline at end of file
diff --git a/lib/CAN/config.cpp b/lib/CAN/config.cpp
new file mode 100644
index 00000000..796d8d3b
--- /dev/null
+++ b/lib/CAN/config.cpp
@@ -0,0 +1,11 @@
+#include "config.hpp"
+
+CAN_Config::~CAN_Config()
+{
+ if(COMMANDS_LENGTH) {
+ for (size_t i = 0; i < COMMANDS_LENGTH; i++) {
+ delete COMMANDS[i];
+ }
+ delete[] COMMANDS;
+ }
+}
\ No newline at end of file
diff --git a/lib/CAN/config.hpp b/lib/CAN/config.hpp
new file mode 100644
index 00000000..34318551
--- /dev/null
+++ b/lib/CAN/config.hpp
@@ -0,0 +1,63 @@
+#pragma once
+
+#include
+#include "command.hpp"
+
+enum class CAN_ICTypes : uint8_t {
+ None,
+ MCP2515,
+ ELM327,
+ SJA1000
+};
+
+enum class CAN_ICBus : uint8_t {
+ None,
+ SPI,
+ UART,
+ BT
+};
+
+enum class CAN_PollMode : uint8_t {
+ Disabled,
+ Passiv,
+ Auto
+};
+
+struct DriverBluetoothConfig {
+ String DEVICENAME;
+ bool USE_PIN;
+ String PIN;
+};
+
+struct DriverSPIConfig {
+ uint8_t PIN_MOSI;
+ uint8_t PIN_MISO;
+ uint8_t PIN_SCK;
+ uint8_t PIN_CS;
+ uint8_t PIN_INT;
+ uint8_t IC_MHZ;
+};
+
+struct DriverUARTConfig {
+ uint8_t PIN_RX;
+ uint8_t PIN_TX;
+};
+
+struct CAN_Config
+{
+ CAN_ICTypes CAN_IC;
+ CAN_ICBus CAN_BUS;
+ DriverUARTConfig CAN_UART;
+ DriverSPIConfig CAN_SPI;
+ DriverBluetoothConfig CAN_BLUETOOTH;
+ uint16_t CAN_SPEED_KBPS;
+ String CAN_MQTT_TOPIC_NAME;
+ bool CAN_READONLY_ENABLED;
+ bool CAN_SNIFFING_ENABLED;
+ CAN_PollMode CAN_AUTOPOLL_MODE;
+ uint16_t CAN_AUTOPOLL_TIME;
+ size_t COMMANDS_LENGTH;
+ CANCommand** COMMANDS;
+
+ ~CAN_Config();
+};
\ No newline at end of file
diff --git a/lib/CAN/driver.cpp b/lib/CAN/driver.cpp
new file mode 100644
index 00000000..785a4fa9
--- /dev/null
+++ b/lib/CAN/driver.cpp
@@ -0,0 +1,473 @@
+#include "driver.hpp"
+
+// tranlated from fhemHPSU and pyHPSU github project.
+// https://github.com/ahermann86/fhemHPSU
+// https://github.com/zanac/pyHPSU
+// TODO: https://github.com/weltenwort/py-hpsu-monitor
+
+String** resultBuffer;
+
+std::function callbackRecievedCommand;
+
+CanFrame* CANDriver::getCanFrameFromCommand(CANCommand* cmd, bool setValue, int value)
+{
+ CanFrame* frame = new CanFrame();
+
+ if(setValue)
+ {
+ frame->id = 680;
+ }
+ else
+ {
+ frame->id = cmd->id;
+ }
+
+ frame->len = sizeof(cmd->command);
+ memcpy(frame->data, cmd->command, frame->len);
+
+ if(cmd->writable && setValue)
+ {
+ // set first byte in command array to have HEX Value "0" on second position
+ // character No 2: 0=write 1=read 2=answer
+ frame->data[0] = (frame->data[0] & 0xF0) | 0x00;
+
+ byte valByte1 = 0;
+ byte valByte2 = 0;
+
+ if(value < 0 && strcmp(cmd->type, "float") != 0)
+ {
+ // error
+ // set negative values if type not float not possible !!!
+ delete frame;
+ return nullptr;
+ }
+
+ const double calculatedValue = value * cmd->divisor;
+
+ if(strcmp(cmd->type, "int") == 0)
+ {
+ valByte1 = calculatedValue;
+ }
+ else if(strcmp(cmd->type, "value") == 0)
+ {
+ valByte1 = calculatedValue;
+ }
+ else if(strcmp(cmd->type, "longint") == 0)
+ {
+ valByte1 = (int)calculatedValue >> 8;
+ valByte2 = (int)calculatedValue & 0xFF;
+ }
+ else if(strcmp(cmd->type, "float") == 0)
+ {
+ const int intCalcValue = (int)calculatedValue & 0xFFFF;
+ valByte1 = intCalcValue >> 8;
+ valByte2 = intCalcValue & 0xFF;
+ }
+
+ if (frame->data[2] == 0xFA) // 2=pos address
+ {
+ // Byte 3 == FA
+ // 30 0A FA 01 D6 00 D9 <- $CANMsg
+ // | ^pos: 6
+ // ^pos: 5
+ frame->data[5] = valByte1;
+ frame->data[6] = valByte2;
+ }
+ else
+ {
+ // Byte 3 != FA
+ // 30 0A 0E 01 E8 00 00 <- $CANMsg
+ // | ^pos: 4
+ // ^pos: 3
+ // t_dhw - 48,8°
+ frame->data[3] = valByte1;
+ frame->data[4] = valByte2;
+ }
+ }
+ else
+ {
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++)
+ {
+ if(cmdSendInfos[i]->cmd == cmd)
+ {
+ cmdSendInfos[i]->pending = true;
+ cmdSendInfos[i]->timeMessageSend = millis();
+ break;
+ }
+ }
+ }
+
+ debugStream->printf("CAN: Transmiting ID(%i) ", frame->id);
+ for(uint8_t i = 0; i < frame->len; i++)
+ {
+ debugStream->printf("%02x ", frame->data[i]);
+ }
+ debugStream->println();
+
+ return frame;
+}
+
+void CANDriver::sniffCAN(const uint32_t timestamp_us, CanFrame const frame)
+{
+ char resultText[64] = "";
+ sprintf(resultText, "CAN [ %i ] ID", timestamp_us);
+
+ if(frame.isRTR) strcat(resultText, "(RTR)");
+ if(frame.isEXT) strcat(resultText, "(EXT)");
+
+ sprintf(resultText + strlen(resultText), " %02X DATA[%i] ", frame.id, frame.len);
+
+ for(uint8_t i = 0; i < frame.len; i++)
+ sprintf(resultText + strlen(resultText), "%02X ", frame.data[i]);
+
+ debugStream->println(resultText);
+}
+
+CANDriver::CANDriver(const CAN_Config* CANConfigArg, IDebugStream* const debugStreamArg) : CANConfig(CANConfigArg), debugStream(debugStreamArg)
+{
+}
+
+void CANDriver::handleLoop()
+{
+ if(!canInited)
+ return;
+
+ checkPendingMessages();
+
+ if(CANConfig->CAN_AUTOPOLL_MODE == CAN_PollMode::Auto)
+ {
+ uint64_t currentTime = millis();
+
+ if(currentTime - lastTimeRunned >= CANConfig->CAN_AUTOPOLL_TIME * 1000)
+ {
+ debugStream->printf("CAN Poll Mode Auto Reading: %lu\n", currentTime);
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++)
+ {
+ if(cmdSendInfos[i]->pending == false)
+ {
+ sendCommand(CANConfig->COMMANDS[i], false);
+ }
+ }
+
+ lastTimeRunned = currentTime;
+ }
+ }
+}
+
+String CANDriver::readAllCommands()
+{
+ CANDataToString = true;
+
+ resultBuffer = new String*[CANConfig->COMMANDS_LENGTH];
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ currentDataToStringIndex = i;
+ resultBuffer[i] = nullptr;
+ sendCommand(CANConfig->COMMANDS[i], false);
+
+ while(cmdSendInfos[i]->pending) {
+ delay(5);
+ checkPendingMessages();
+ }
+ }
+
+ DynamicJsonDocument resultDoc(CANConfig->COMMANDS_LENGTH*JSON_ARRAY_SIZE(2));
+ JsonArray obj = resultDoc.to();
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ if(resultBuffer[i] != nullptr) {
+ obj.add(resultBuffer[i]->c_str());
+ delete resultBuffer[i];
+ } else {
+ // TODO highlight this result orange or red on webui
+ obj.add("[Timeout]");
+ }
+ }
+ delete[] resultBuffer;
+
+ CANDataToString = false;
+
+ // for unit testing use std::string instead of String. ArduinoFake::String doens't provide write() method
+ std::string result;
+ serializeJson(resultDoc, result);
+ return String(result.c_str());
+}
+
+void CANDriver::onDataRecieved(uint32_t const timestamp_us, CanFrame const frame)
+{
+ if(!canInited)
+ return;
+
+ if(sniffingEnabled || currentMode == CanDriverMode::Loopback)
+ {
+ sniffCAN(timestamp_us, frame);
+
+ if(currentMode == CanDriverMode::Loopback)
+ return;
+ }
+
+ if(frame.len < 2)
+ return;
+
+ // skip message if it is not a answer
+ if((frame.data[0] & 0x0F) != 2)
+ return;
+
+ bool extended = frame.data[2] == 0xFA;
+
+ CANCommand* recievedCommand = getCommandFromData(frame.data);
+
+ // if we got a message that we shouldnt handle, skip it
+ if(recievedCommand == nullptr)
+ return;
+
+ if(CANConfig->CAN_AUTOPOLL_MODE == CAN_PollMode::Auto || CANDataToString)
+ {
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++)
+ {
+ if(cmdSendInfos[i]->cmd == recievedCommand)
+ {
+ // if we didnt fetch the infos, ignore it
+ if(!cmdSendInfos[i]->pending)
+ {
+ return;
+ }
+
+ cmdSendInfos[i]->pending = false;
+ break;
+ }
+ }
+ }
+
+ byte valByte1 = 0;
+ byte valByte2 = 0;
+
+ if (extended) // -> Byte3 eq FA
+ {
+ //20 0A FA 01 D6 00 D9 <- $CANMsg
+ // | ^pos: 6
+ // ^pos: 5
+ // t_hs - 21,7
+
+ valByte1 = frame.data[5];
+ valByte2 = frame.data[6];
+ }
+ else
+ {
+ //20 0A 0E 01 E8 00 00 <- $CANMsg
+ // | ^pos: 4
+ // ^pos: 3
+ // t_dhw - 48,8°
+ valByte1 = frame.data[3];
+ valByte2 = frame.data[4];
+ }
+
+ int value;
+
+ if(strcmp(recievedCommand->type, "int") == 0)
+ {
+ value = HPSU_toSigned(valByte1, recievedCommand->unit);
+ }
+ else if(strcmp(recievedCommand->type, "value") == 0)
+ {
+ value = valByte1;
+ //example: mode_01 val 4 -> 31 00 FA 01 12 04 00
+ }
+ else if(strcmp(recievedCommand->type, "longint") == 0)
+ {
+ value = HPSU_toSigned(valByte2 + valByte1 * 0x0100, recievedCommand->unit);
+ //example: one_hot_water val 1 -> 31 00 FA 01 44 00 01
+ // ^
+ }
+ else if(strcmp(recievedCommand->type, "float") == 0)
+ {
+ value = HPSU_toSigned(valByte2 + valByte1 * 0x0100, recievedCommand->unit);
+ }
+ else
+ {
+ return;
+ }
+
+ value /= recievedCommand->divisor;
+
+ String valueCodeKey = String(value);
+
+ if(recievedCommand->valueCodeSize > 0)
+ {
+ for (byte counter = 0; counter < recievedCommand->valueCodeSize; counter++)
+ {
+ if(recievedCommand->valueCode[counter]->value.toInt() == value)
+ {
+ valueCodeKey = recievedCommand->valueCode[counter]->key;
+ break;
+ }
+ }
+ }
+
+ if(strlen(recievedCommand->unit) > 0)
+ {
+ if(strcmp(recievedCommand->unit, "deg") == 0)
+ {
+ valueCodeKey += " °C";
+ }
+ else if(strcmp(recievedCommand->unit, "percent") == 0)
+ {
+ valueCodeKey += " %";
+ }
+ else if(strcmp(recievedCommand->unit, "bar") == 0)
+ {
+ valueCodeKey += " bar";
+ }
+ else if(strcmp(recievedCommand->unit, "kwh") == 0)
+ {
+ valueCodeKey += " kWh";
+ }
+ else if(strcmp(recievedCommand->unit, "kw") == 0)
+ {
+ valueCodeKey += " kW";
+ }
+ else if(strcmp(recievedCommand->unit, "w") == 0)
+ {
+ valueCodeKey += " W";
+ }
+ else if(strcmp(recievedCommand->unit, "sec") == 0)
+ {
+ valueCodeKey += " sec";
+ }
+ else if(strcmp(recievedCommand->unit, "min") == 0)
+ {
+ valueCodeKey += " min";
+ }
+ else if(strcmp(recievedCommand->unit, "hour") == 0)
+ {
+ valueCodeKey += " h";
+ }
+ else if(strcmp(recievedCommand->unit, "lh") == 0)
+ {
+ valueCodeKey += " lh";
+ }
+ }
+
+ if(CANDataToString) {
+ resultBuffer[currentDataToStringIndex] = new String(valueCodeKey);
+ return;
+ }
+
+ callbackRecievedCommand(valueCodeKey.c_str(), recievedCommand->label);
+
+ debugStream->printf("CAN Data recieved %s: %s\n", recievedCommand->label, valueCodeKey.c_str());
+}
+
+
+CANCommand* CANDriver::getCommandFromData(const uint8_t *data)
+{
+ bool extended = data[2] == 0xFA;
+ CANCommand* recievedCommand = nullptr;
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++)
+ {
+ //Byte 3 == FA
+ //31 00 FA 0B D1 00 00 <- $CANMsg
+ // |------| -> len: 3 byte
+ // ^pos: 2
+ if(extended &&
+ CANConfig->COMMANDS[i]->command[2] == data[2] &&
+ CANConfig->COMMANDS[i]->command[3] == data[3] &&
+ CANConfig->COMMANDS[i]->command[4] == data[4])
+ {
+ recievedCommand = CANConfig->COMMANDS[i];
+ break;
+ }
+ //Byte 3 != FA
+ //31 00 05 00 00 00 00 <- $CANMsg
+ // || -> len: 1 byte
+ // ^pos: 2
+ else if(!extended && CANConfig->COMMANDS[i]->command[2] == data[2])
+ {
+ recievedCommand = CANConfig->COMMANDS[i];
+ break;
+ }
+ }
+
+ return recievedCommand;
+}
+
+void CANDriver::listenOnly(bool value)
+{
+ if(value)
+ setMode(CanDriverMode::ListenOnly);
+ else
+ setMode(CanDriverMode::Normal);
+}
+
+int CANDriver::HPSU_toSigned(uint16_t value, char* unit)
+{
+ if(strcmp(unit, "deg") == 0 || strcmp(unit, "value_code_signed") == 0) {
+ int newValue = value & 0xFFFF;
+ return (newValue ^ 0x8000) - 0x8000;
+ } else {
+ return value;
+ }
+}
+
+void CANDriver::enableSniffing(bool value)
+{
+ sniffingEnabled = value;
+}
+
+void CANDriver::handleMQTTSetRequest(const String &label, const char *payload, const uint32_t length)
+{
+ if(!canInited)
+ return;
+
+ const int payloadAsInt = atoi(payload);
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ if(CANConfig->COMMANDS[i]->writable && strcmp(CANConfig->COMMANDS[i]->name, label.c_str()) == 0) {
+ debugStream->printf("CAN: Got MQTT SET request for %s, %08x\n", label.c_str(), payloadAsInt);
+ sendCommand(CANConfig->COMMANDS[i], true, payloadAsInt);
+ return;
+ }
+ }
+
+ debugStream->printf("CAN: Got invalid MQTT SET request for %s\n", label.c_str());
+}
+
+void CANDriver::defaultInit()
+{
+ cmdSendInfos = new CMDSendInfo*[CANConfig->COMMANDS_LENGTH];
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ cmdSendInfos[i] = new CMDSendInfo();
+ cmdSendInfos[i]->cmd = CANConfig->COMMANDS[i];
+ }
+
+ lastTimeRunned = -(CANConfig->CAN_AUTOPOLL_TIME * 1000);
+
+ canInited = true;
+
+ listenOnly(CANConfig->CAN_READONLY_ENABLED);
+
+ debugStream->println("CAN-Bus inited");
+}
+
+void CANDriver::checkPendingMessages()
+{
+ uint64_t currentMillis = millis();
+
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ if(cmdSendInfos[i]->pending == true && currentMillis - cmdSendInfos[i]->timeMessageSend >= CAN_MESSAGE_TIMEOUT * 1000) {
+ cmdSendInfos[i]->pending = false;
+ debugStream->printf("CAN Timeout for message: %s\n", cmdSendInfos[i]->cmd->label);
+ }
+ }
+}
+
+CANDriver::~CANDriver() {
+ if(canInited) {
+ for(size_t i = 0; i < CANConfig->COMMANDS_LENGTH; i++) {
+ delete cmdSendInfos[i];
+ }
+ delete[] cmdSendInfos;
+ }
+}
\ No newline at end of file
diff --git a/lib/CAN/driver.hpp b/lib/CAN/driver.hpp
new file mode 100644
index 00000000..61f6bc46
--- /dev/null
+++ b/lib/CAN/driver.hpp
@@ -0,0 +1,69 @@
+#pragma once
+
+#include
+#include
+#include
+#include "command.hpp"
+#include "config.hpp"
+
+#define CAN_MESSAGE_TIMEOUT 4 // define timout in seconds for message send to get answer
+#define NOT_IMPLEMENTED = 0
+
+extern std::function callbackRecievedCommand;
+
+struct CanFrame
+{
+ uint32_t id;
+ uint8_t data[8];
+ uint8_t len;
+ bool isRTR;
+ bool isEXT;
+};
+
+struct CMDSendInfo
+{
+ bool pending = false;
+ uint64_t timeMessageSend = 0;
+ CANCommand* cmd;
+};
+
+enum class CanDriverMode : uint8_t
+{
+ Normal,
+ Loopback,
+ ListenOnly
+};
+
+class CANDriver
+{
+protected:
+ CMDSendInfo** cmdSendInfos;
+ bool canInited = false;
+ uint64_t lastTimeRunned = 0;
+ bool sniffingEnabled = false;
+ CanDriverMode currentMode;
+ const CAN_Config* CANConfig;
+ IDebugStream* const debugStream;
+ bool CANDataToString = false;
+ size_t currentDataToStringIndex;
+
+ CanFrame* getCanFrameFromCommand(CANCommand* cmd, bool setValue, int value);
+ void sniffCAN(uint32_t const, CanFrame const);
+ CANCommand* getCommandFromData(const uint8_t *data);
+ int HPSU_toSigned(uint16_t value, char* unit);
+ virtual bool setMode(CanDriverMode mode) NOT_IMPLEMENTED;
+ void defaultInit();
+ void checkPendingMessages();
+
+public:
+ CANDriver(const CAN_Config* CANConfig, IDebugStream* const debugStream);
+ virtual bool initInterface() NOT_IMPLEMENTED;
+ virtual void handleLoop();
+ virtual String readAllCommands();
+ virtual void sendCommand(CANCommand *cmd, bool setValue = false, int value = 0) NOT_IMPLEMENTED;
+ void onDataRecieved(uint32_t const, CanFrame const);
+ void listenOnly(bool value = true);
+ void enableSniffing(bool value);
+ void handleMQTTSetRequest(const String &label, const char *payload, const uint32_t length);
+ virtual ~CANDriver();
+};
\ No newline at end of file
diff --git a/lib/COMInterfaces/DebugStream.cpp b/lib/COMInterfaces/DebugStream.cpp
new file mode 100644
index 00000000..101b7a80
--- /dev/null
+++ b/lib/COMInterfaces/DebugStream.cpp
@@ -0,0 +1,64 @@
+#include "DebugStream.hpp"
+
+#ifndef PIO_UNIT_TESTING
+
+DebugStream::DebugStream(Stream* stream)
+{
+ this->stream = stream;
+}
+
+size_t DebugStream::printf(const char * format, ...)
+{
+ va_list arg;
+ va_start(arg, format);
+ size_t res = stream->printf(format, arg);
+ va_end(arg);
+ return res;
+}
+
+inline size_t DebugStream::print(const __FlashStringHelper *ifsh)
+{
+ return stream->print(ifsh);
+}
+
+inline size_t DebugStream::print(const String& s)
+{
+ return stream->print(s);
+}
+
+inline size_t DebugStream::print(const char c[])
+{
+ return stream->print(c);
+}
+
+inline size_t DebugStream::print(char c)
+{
+ return stream->print(c);
+}
+
+inline size_t DebugStream::println(const __FlashStringHelper *ifsh)
+{
+ return stream->println(ifsh);
+}
+
+inline size_t DebugStream::println(const String& s)
+{
+ return stream->println(s);
+}
+
+inline size_t DebugStream::println(const char c[])
+{
+ return stream->println(c);
+}
+
+inline size_t DebugStream::println(char c)
+{
+ return stream->println(c);
+}
+
+inline size_t DebugStream::println(void)
+{
+ return stream->println();
+}
+
+#endif
\ No newline at end of file
diff --git a/lib/COMInterfaces/DebugStream.hpp b/lib/COMInterfaces/DebugStream.hpp
new file mode 100644
index 00000000..8fe11131
--- /dev/null
+++ b/lib/COMInterfaces/DebugStream.hpp
@@ -0,0 +1,30 @@
+#pragma once
+
+#ifndef PIO_UNIT_TESTING
+
+#include
+#include "IDebugStream.hpp"
+
+class DebugStream : public IDebugStream
+{
+ private:
+ Stream* stream;
+
+ public:
+ DebugStream(Stream* stream);
+
+ size_t printf(const char * format, ...);
+
+ size_t print(const __FlashStringHelper *ifsh);
+ size_t print(const String& s);
+ size_t print(const char c[]);
+ size_t print(char c);
+
+ size_t println(const __FlashStringHelper *ifsh);
+ size_t println(const String& s);
+ size_t println(const char c[]);
+ size_t println(char c);
+ size_t println(void);
+};
+
+#endif
\ No newline at end of file
diff --git a/lib/COMInterfaces/IDebugStream.hpp b/lib/COMInterfaces/IDebugStream.hpp
new file mode 100644
index 00000000..386935e7
--- /dev/null
+++ b/lib/COMInterfaces/IDebugStream.hpp
@@ -0,0 +1,22 @@
+#pragma once
+
+#include
+
+class IDebugStream
+{
+ public:
+ virtual ~IDebugStream() = default;
+
+ virtual size_t printf(const char * format, ...) = 0;
+
+ virtual size_t print(const __FlashStringHelper *ifsh) = 0;
+ virtual size_t print(const String& s) = 0;
+ virtual size_t print(const char c[]) = 0;
+ virtual size_t print(char c) = 0;
+
+ virtual size_t println(const __FlashStringHelper *ifsh) = 0;
+ virtual size_t println(const String& s) = 0;
+ virtual size_t println(const char c[]) = 0;
+ virtual size_t println(char c) = 0;
+ virtual size_t println(void) = 0;
+};
\ No newline at end of file
diff --git a/lib/COMInterfaces/IX10ASerial.hpp b/lib/COMInterfaces/IX10ASerial.hpp
new file mode 100644
index 00000000..53e58e5c
--- /dev/null
+++ b/lib/COMInterfaces/IX10ASerial.hpp
@@ -0,0 +1,21 @@
+#pragma once
+
+#include
+
+class IX10ASerial
+{
+ public:
+ virtual ~IX10ASerial() = default;
+
+ virtual void begin(uint64_t baud, int8_t rxPin, int8_t txPin) = 0;
+ virtual void end() = 0;
+
+ virtual void flush() = 0;
+
+ virtual void write(const uint8_t *, size_t) = 0;
+
+ virtual bool available() = 0;
+ virtual int read() = 0;
+
+ virtual operator bool() const = 0;
+};
\ No newline at end of file
diff --git a/lib/COMInterfaces/X10ASerial.cpp b/lib/COMInterfaces/X10ASerial.cpp
new file mode 100644
index 00000000..6c5b3e36
--- /dev/null
+++ b/lib/COMInterfaces/X10ASerial.cpp
@@ -0,0 +1,42 @@
+#include "X10ASerial.hpp"
+
+#ifndef PIO_UNIT_TESTING
+
+DEFINE_SerialX10A;
+
+void X10ASerial::begin(uint64_t baud, int8_t rxPin, int8_t txPin)
+{
+ SerialX10A.begin(baud, SERIAL_CONFIG, rxPin, txPin);
+}
+
+void X10ASerial::end()
+{
+ SerialX10A.end();
+}
+
+void X10ASerial::flush()
+{
+ SerialX10A.flush(SERIAL_FLUSH_TX_ONLY);
+}
+
+void X10ASerial::write(const uint8_t * data, size_t length)
+{
+ SerialX10A.write(data, length);
+}
+
+bool X10ASerial::available()
+{
+ return SerialX10A.available();
+}
+
+int X10ASerial::read()
+{
+ return SerialX10A.read();
+}
+
+X10ASerial::operator bool() const
+{
+ return SerialX10A;
+}
+
+#endif
\ No newline at end of file
diff --git a/lib/COMInterfaces/X10ASerial.hpp b/lib/COMInterfaces/X10ASerial.hpp
new file mode 100644
index 00000000..1b6627f9
--- /dev/null
+++ b/lib/COMInterfaces/X10ASerial.hpp
@@ -0,0 +1,37 @@
+#pragma once
+
+#ifndef PIO_UNIT_TESTING
+
+#include "IX10ASerial.hpp"
+
+#ifdef ARDUINO_ARCH_ESP8266
+#include
+#define SERIAL_TYPE SoftwareSerial
+#define SERIAL_CONFIG (SWSERIAL_8E1)
+#define SERIAL_FLUSH_TX_ONLY // empty, as SoftwareSerial.flush() takes no parameter
+#define DEFINE_SerialX10A SERIAL_TYPE SerialX10A
+#else
+#include
+#define SERIAL_TYPE HardwareSerial
+#define SERIAL_CONFIG (SERIAL_8E1)
+#define SERIAL_FLUSH_TX_ONLY false
+#define DEFINE_SerialX10A SERIAL_TYPE SerialX10A(1)
+#endif
+
+class X10ASerial : public IX10ASerial
+{
+ public:
+ void begin(uint64_t baud, int8_t rxPin, int8_t txPin);
+ void end();
+
+ void flush();
+
+ void write(const uint8_t * data, size_t length);
+
+ bool available();
+ int read();
+
+ operator bool() const;
+};
+
+#endif
\ No newline at end of file
diff --git a/lib/X10A/config.cpp b/lib/X10A/config.cpp
new file mode 100644
index 00000000..5f4d3c32
--- /dev/null
+++ b/lib/X10A/config.cpp
@@ -0,0 +1,11 @@
+#include "config.hpp"
+
+X10A_Config::~X10A_Config()
+{
+ if(PARAMETERS_LENGTH) {
+ for (size_t i = 0; i < PARAMETERS_LENGTH; i++) {
+ delete PARAMETERS[i];
+ }
+ delete[] PARAMETERS;
+ }
+}
\ No newline at end of file
diff --git a/lib/X10A/config.hpp b/lib/X10A/config.hpp
new file mode 100644
index 00000000..29025e7d
--- /dev/null
+++ b/lib/X10A/config.hpp
@@ -0,0 +1,22 @@
+#pragma once
+
+#include
+#include "parameterDef.hpp"
+
+enum class X10AProtocol : uint8_t {
+ I,
+ S
+};
+
+struct X10A_Config
+{
+ uint8_t PIN_RX;
+ uint8_t PIN_TX;
+ uint32_t FREQUENCY;
+ X10AProtocol X10A_PROTOCOL;
+ size_t PARAMETERS_LENGTH;
+ ParameterDef** PARAMETERS;
+ String WEBUI_SELECTION_VALUES;
+
+ ~X10A_Config();
+};
\ No newline at end of file
diff --git a/include/converters.h b/lib/X10A/converters.cpp
similarity index 55%
rename from include/converters.h
rename to lib/X10A/converters.cpp
index 640f6406..28791751 100644
--- a/include/converters.h
+++ b/lib/X10A/converters.cpp
@@ -1,79 +1,26 @@
-// convert read registry value to the expected format based on convID
-#include
-char buff[64];
-class Converter
-{
-public:
- void getLabels(char registryID, LabelDef *ret[], int &num)
- {
- num = 0;
- for (auto &&label : labelDefs)
- {
- if (label.registryID == registryID)
- {
- ret[num++] = &label;
- }
- }
- }
+#include "converters.hpp"
- // Extract all values from the registry data response
- void readRegistryValues(unsigned char *data, unsigned char protocol)
- {
- if (protocol == 'S')
- {
- // Registry ID is first byte
- readRegistryValues(data[0], data, 1);
- }
- else
- {
- readRegistryValues(data[1], data, 3);
- }
- }
+using X10A::Converter;
+using namespace X10A;
- void readRegistryValues(char registryID, unsigned char *data, unsigned int offset)
- {
- // Serial.printf("For registry %d, we have these labels:\n", registryID);
- int num = 0;
- LabelDef *labels[128];
- getLabels(registryID, labels, num);
+Converter converter;
- for (int i = 0; i < num; i++)
- {
- unsigned char *input = data;
- input += labels[i]->offset + offset;
- convert(labels[i], input);
- }
- }
+void Converter::convert(IDebugStream* debugStream, ParameterDef *def, byte *data)
+{
+ def->asString[0] = {0};
+ int convId = def->convid;
+ int num = def->dataSize;
+ double dblData = NAN;
- double convertPress2Temp(double data){//assuming R32 gaz
- double num = -2.6989493795556E-07 * data * data * data * data * data * data;
- double num2 = 4.26383417104661E-05 * data * data * data * data * data;
- double num3 = -0.00262978346547749 * data * data * data * data;
- double num4 = 0.0805858127503585 * data * data * data;
- double num5 = -1.31924457284073 * data * data;
- double num6 = 13.4157368435437 * data;
- double num7 = -51.1813342993155;
- return num + num2 + num3 + num4 + num5 + num6 + num7;
+ debugStream->print("Converting from:");
+ for (uint8_t i = 0; i < num; i++) {
+ debugStream->printf(" 0x%02x ", data[i]);
}
-
-
- void convert(LabelDef *def, unsigned char *data)
+ switch (convId)
{
- def->asString[0] = {0};
- int convId = def->convid;
- int num = def->dataSize;
- double dblData = NAN;
- Serial.print("Converting from:");
- for (int i = 0; i < num; i++)
- {
- Serial.printf(" 0x%02x ", data[i]);
- }
-
- switch (convId)
- {
case 100:
- strlcat(def->asString, (char*)data, num);
+ strCopy(def->asString, (char*)data, num);
return;
case 101:
dblData = (double)getSignedValue(data, num, 0);
@@ -89,7 +36,7 @@ class Converter
break;
case 105:
dblData = (double)getSignedValue(data, num, 0) * 0.1;
- // Serial.printf("%f\n", dblData);
+ // debugStream->printf("%f\n", dblData);
break;
case 106:
dblData = (double)getSignedValue(data, num, 1) * 0.1;
@@ -127,22 +74,19 @@ class Converter
break;
case 114:
{
- if (data[0] == 0 && data[1] == 128)
- {
+ if (data[0] == 0 && data[1] == 128) {
strcat(def->asString, "---");
return;
}
unsigned short num2 = (unsigned short)((int)data[1] * 256);
num2 |= (unsigned short)data[0];
- if ((data[1] & 128) != 0)
- {
+ if ((data[1] & 128) != 0) {
num2 = ~(num2 - 1);
}
dblData = (double)((num2 & 65280) / 256);
dblData += (double)(num2 & 255) / 256.0;
dblData *= 10.0;
- if ((data[1] & 128) != 0)
- {
+ if ((data[1] & 128) != 0) {
dblData *= -1.0;
}
break;
@@ -228,16 +172,16 @@ class Converter
}
else
{
- dblData = (uint)(double)data[0];
+ dblData = (uint32_t)(double)data[0];
break;
}
case 215:
case 216:
{
- int num = data[0] >> 4;
- int num2 = (int)(data[0] & 15);
- sprintf(def->asString,"{0:%d}{1:%d}", num, num2);
+ byte num = data[0] >> 4;
+ byte num2 = (int)(data[0] & 0x0F);
+ sprintf(def->asString, "{0:%d}{1:%d}", num, num2);
return;
}
@@ -253,7 +197,7 @@ class Converter
case 305:
case 306:
case 307:
- convertTable300(data, def->convid, def->asString);
+ convertTable300(debugStream, data, def->convid, def->asString);
return;
case 312:
dblData = convertTable312(data);
@@ -295,35 +239,31 @@ class Converter
// conversion is not available
sprintf(def->asString, "Conv %d not avail.", convId);
return;
- }
- if (dblData != NAN)
- {
- sprintf(def->asString, "%g", dblData);
- }
- Serial.printf("-> %s\n", def->asString);
}
-private:
- void convertTable300(unsigned char *data, int tableID, char *ret)
- {
- Serial.printf("Bin Conv %02x with tableID %d \n", data[0], tableID);
- char b = 1;
- b = (char)(b << tableID % 10);
- if ((data[0] & b) > 0)
- {
- strcat(ret, "ON");
- }
- else
- {
- strcat(ret, "OFF");
- }
- return;
+ if (dblData != NAN) {
+ sprintf(def->asString, "%g", dblData);
}
- void convertTable203(unsigned char *data, char *ret)
- {
- switch (data[0])
- {
+ debugStream->printf("-> %s\n", def->asString);
+}
+
+void Converter::convertTable300(IDebugStream* debugStream, byte *data, int tableID, char *ret)
+{
+ debugStream->printf("Bin Conv %02x with tableID %d \n", data[0], tableID);
+ char b = 1;
+ b = (char)(b << tableID % 10);
+ if ((data[0] & b) > 0) {
+ strcat(ret, "ON");
+ } else {
+ strcat(ret, "OFF");
+ }
+ return;
+}
+
+void Converter::convertTable203(byte *data, char *ret)
+{
+ switch (data[0]) {
case 0:
strcat(ret, "Normal");
break;
@@ -338,38 +278,35 @@ class Converter
break;
default:
strcat(ret, "-");
- ;
- }
}
+}
- void convertTable204(unsigned char *data, char *ret)
- {
- char array[] = " ACEHFJLPU987654";
- char array2[] = "0123456789AHCJEF";
- int num = data[0] >> 4 & 15;
- int num2 = (int)(data[0] & 15);
- ret[0] = array[num];
- ret[1] = array2[num2];
- ret[2] = 0;
- }
+void Converter::convertTable204(byte *data, char *ret)
+{
+ char array[] = " ACEHFJLPU987654";
+ char array2[] = "0123456789AHCJEF";
+ int num = data[0] >> 4 & 15;
+ int num2 = (int)(data[0] & 15);
+ ret[0] = array[num];
+ ret[1] = array2[num2];
+ ret[2] = 0;
+}
- double convertTable312(unsigned char *data)
- {
- double dblData = ((unsigned char) (7 & data[0] >> 4) + (unsigned char) (15U & data[0])) / 16.0;
- if ((128 & data[0]) > 0)
- {
- dblData *= -1.0;
- }
- // Serial.printf("convertTable312 %02x -> %f \n", data[0], dblData);
- return dblData;
+double Converter::convertTable312(byte *data)
+{
+ double dblData = ((unsigned char) (7 & data[0] >> 4) + (unsigned char) (15U & data[0])) / 16.0;
+ if ((128 & data[0]) > 0) {
+ dblData *= -1.0;
}
-
- void convertTable315(unsigned char *data, char *ret)
- {
- char b = 240 & data[0];
- b = (char)(b >> 4);
- switch (b)
- {
+ // Serial.printf("convertTable312 %02x -> %f \n", data[0], dblData);
+ return dblData;
+}
+
+void Converter::convertTable315(byte *data, char *ret)
+{
+ char b = 240 & data[0];
+ b = (char)(b >> 4);
+ switch (b) {
case 0:
strcat(ret, "Stop");
break;
@@ -393,15 +330,14 @@ class Converter
break;
default:
strcat(ret, "-");
- }
}
+}
- void convertTable316(unsigned char *data, char *ret)
- {
- char b = 240 & data[0];
- b = (char)(b >> 4);
- switch (b)
- {
+void Converter::convertTable316(byte *data, char *ret)
+{
+ char b = 240 & data[0];
+ b = (char)(b >> 4);
+ switch (b) {
case 0:
strcat(ret, "H/P only");
break;
@@ -413,72 +349,110 @@ class Converter
break;
default:
strcat(ret, "Unknown");
- }
}
+}
- void convertTable200(unsigned char *data, char *ret)
- {
- if (data[0] == 0)
- {
- strcat(ret, "OFF");
- }
- else
- {
- strcat(ret, "ON");
- }
+void Converter::convertTable200(byte *data, char *ret)
+{
+ if (data[0] == 0) {
+ strcat(ret, "OFF");
+ } else {
+ strcat(ret, "ON");
}
- // 201
- void convertTable217(unsigned char *data, char *ret)
- {
- char r217[][30] = {"Fan Only",
- "Heating",
- "Cooling",
- "Auto",
- "Ventilation",
- "Auto Cool",
- "Auto Heat",
- "Dry",
- "Aux.",
- "Cooling Storage",
- "Heating Storage",
- "UseStrdThrm(cl)1",
- "UseStrdThrm(cl)2",
- "UseStrdThrm(cl)3",
- "UseStrdThrm(cl)4",
- "UseStrdThrm(ht)1",
- "UseStrdThrm(ht)2",
- "UseStrdThrm(ht)3",
- "UseStrdThrm(ht)4"};
- sprintf(ret, r217[(int)data[0]]);
+}
+
+// 201
+void Converter::convertTable217(byte *data, char *ret)
+{
+ char r217[][30] = {"Fan Only",
+ "Heating",
+ "Cooling",
+ "Auto",
+ "Ventilation",
+ "Auto Cool",
+ "Auto Heat",
+ "Dry",
+ "Aux.",
+ "Cooling Storage",
+ "Heating Storage",
+ "UseStrdThrm(cl)1",
+ "UseStrdThrm(cl)2",
+ "UseStrdThrm(cl)3",
+ "UseStrdThrm(cl)4",
+ "UseStrdThrm(ht)1",
+ "UseStrdThrm(ht)2",
+ "UseStrdThrm(ht)3",
+ "UseStrdThrm(ht)4"};
+ sprintf(ret, r217[(int)data[0]]);
+}
+
+double Converter::convertPress2Temp(double data)
+{ // assuming R32 gaz
+ double num = -2.6989493795556E-07 * data * data * data * data * data * data;
+ double num2 = 4.26383417104661E-05 * data * data * data * data * data;
+ double num3 = -0.00262978346547749 * data * data * data * data;
+ double num4 = 0.0805858127503585 * data * data * data;
+ double num5 = -1.31924457284073 * data * data;
+ double num6 = 13.4157368435437 * data;
+ double num7 = -51.1813342993155;
+ return num + num2 + num3 + num4 + num5 + num6 + num7;
+}
+
+unsigned short Converter::getUnsignedValue(byte *data, int dataSize, int cnvflg)
+{
+ unsigned short result;
+ if (dataSize == 1) {
+ result = (unsigned short)data[0];
+ } else if (cnvflg == 0) {
+ result = ((unsigned short)(data[1] << 8) | (unsigned short)data[0]);
+ } else {
+ result = ((unsigned short)(data[0] << 8) | (unsigned short)data[1]);
}
+ return result;
+}
- unsigned short getUnsignedValue(unsigned char *data, int dataSize, int cnvflg)
- {
- unsigned short result;
- if (dataSize == 1)
- {
- result = (unsigned short)data[0];
- }
- else if (cnvflg == 0)
- {
- result = ((unsigned short)(data[1] << 8) | (unsigned short)data[0]);
- }
- else
- {
- result = ((unsigned short)(data[0] << 8) | (unsigned short)data[1]);
- }
- return result;
+short Converter::getSignedValue(byte *data, int datasize, int cnvflg)
+{
+ unsigned short num = getUnsignedValue(data, datasize, cnvflg);
+ short result = (short)num;
+ if ((num & 32768) != 0) {
+ num = ~num;
+ num += 1;
+ result = (short)((int)num * -1);
}
- short getSignedValue(unsigned char *data, int datasize, int cnvflg)
- {
- unsigned short num = getUnsignedValue(data, datasize, cnvflg);
- short result = (short)num;
- if ((num & 32768) != 0)
- {
- num = ~num;
- num += 1;
- result = (short)((int)num * -1);
- }
- return result;
+ return result;
+}
+
+
+size_t Converter::strCopy(char *dest, const char *src, size_t size) {
+ size_t dlen = 0;
+ size_t slen = 0;
+
+ // Berechne die Länge von dest
+ while (dest[dlen] != '\0' && dlen < size)
+ dlen++;
+
+ // Berechne die Länge von src
+ while (src[slen] != '\0')
+ slen++;
+
+ // Stelle sicher, dass genügend Platz für src in dest vorhanden ist
+ if (dlen >= size)
+ return dlen + slen;
+
+ size_t remaining = size - dlen - 1; // -1 für das Nullzeichen
+ size_t copied = 0;
+
+ // Kopiere src in dest
+ while (*src != '\0' && copied < remaining) {
+ dest[dlen + copied] = *src;
+ src++;
+ copied++;
}
-};
+
+ // Füge das Nullzeichen hinzu
+ dest[dlen + copied] = '\0';
+
+ // Rückgabe der Gesamtlänge
+ return dlen + slen;
+}
\ No newline at end of file
diff --git a/lib/X10A/converters.hpp b/lib/X10A/converters.hpp
new file mode 100644
index 00000000..e18f589c
--- /dev/null
+++ b/lib/X10A/converters.hpp
@@ -0,0 +1,42 @@
+#pragma once
+
+#include
+#include
+#include "parameterDef.hpp"
+
+namespace X10A
+{
+ class Converter
+ {
+ public:
+ void convert(IDebugStream* debugStream, ParameterDef *def, byte *data);
+
+ private:
+ void convertTable300(IDebugStream* debugStream, byte *data, int tableID, char *ret);
+
+ void convertTable203(byte *data, char *ret);
+
+ void convertTable204(byte *data, char *ret);
+
+ double convertTable312(byte *data);
+
+ void convertTable315(byte *data, char *ret);
+
+ void convertTable316(byte *data, char *ret);
+
+ void convertTable200(byte *data, char *ret);
+
+ void convertTable217(byte *data, char *ret);
+
+ double convertPress2Temp(double data);
+
+ unsigned short getUnsignedValue(byte *data, int dataSize, int cnvflg);
+
+ short getSignedValue(byte *data, int datasize, int cnvflg);
+
+ size_t strCopy(char *dest, const char *src, size_t size);
+ };
+
+}
+
+extern X10A::Converter converter;
\ No newline at end of file
diff --git a/lib/X10A/parameterDef.cpp b/lib/X10A/parameterDef.cpp
new file mode 100644
index 00000000..faf669b3
--- /dev/null
+++ b/lib/X10A/parameterDef.cpp
@@ -0,0 +1,6 @@
+#include "parameterDef.hpp"
+
+ParameterDef::ParameterDef(int registryIDp, int offsetp, int convidp, int dataSizep, int dataTypep, String labelp) : registryID(registryIDp), offset(offsetp), convid(convidp), dataSize(dataSizep), dataType(dataTypep), label(labelp)
+{
+
+};
\ No newline at end of file
diff --git a/lib/X10A/parameterDef.hpp b/lib/X10A/parameterDef.hpp
new file mode 100644
index 00000000..f7710871
--- /dev/null
+++ b/lib/X10A/parameterDef.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include
+
+struct ParameterDef
+{
+ const uint8_t registryID;
+ const uint8_t offset;
+ const uint16_t convid;
+ const int8_t dataSize;
+ const int8_t dataType;
+ const String label;
+ char asString[32] = "";
+
+ ParameterDef(int registryIDp, int offsetp, int convidp, int dataSizep, int dataTypep, String labelp);
+};
\ No newline at end of file
diff --git a/lib/X10A/registryBuffer.hpp b/lib/X10A/registryBuffer.hpp
new file mode 100644
index 00000000..54514d41
--- /dev/null
+++ b/lib/X10A/registryBuffer.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include
+
+#define MAX_BUFFER_SIZE 32 //max bytes returned from X10A Port
+
+struct RegistryBuffer {
+ char RegistryID;
+ byte Buffer[MAX_BUFFER_SIZE];
+ bool Success;
+ char CRC;
+};
\ No newline at end of file
diff --git a/lib/X10A/x10a.cpp b/lib/X10A/x10a.cpp
new file mode 100644
index 00000000..c4af5d57
--- /dev/null
+++ b/lib/X10A/x10a.cpp
@@ -0,0 +1,291 @@
+#include "x10a.hpp"
+
+using namespace X10A;
+
+std::function callbackX10A_wait;
+std::function callbackX10A_sendValues;
+std::function callbackX10A_updateValues;
+
+IX10ASerial* X10ASerial = nullptr;
+IDebugStream* debugStream = nullptr;
+
+static X10A_Config* X10AConfig = nullptr;
+bool disableMQTTLogMessages;
+size_t registryBufferSize;
+RegistryBuffer *registryBuffers; // holds the registries to query and the last returned
+uint64_t lastTimeRunned = 0;
+HandleState handleState = HandleState::Stopped;
+
+bool contains(uint8_t *array, size_t size, uint8_t value)
+{
+ for (size_t i = 0; i < size; i++) {
+ if (array[i] == value) {
+ return true;
+ }
+ }
+ return false;
+}
+
+byte getCRC(byte *src, int len)
+{
+ byte b = 0;
+ for (int i = 0; i < len; i++) {
+ b += src[i];
+ }
+ return ~b;
+}
+
+void logBuffer(byte *buffer, size_t len)
+{
+ char bufflog[MAX_BUFFER_SIZE * 5] = {0};
+ for (size_t i = 0; i < len; i++) {
+ sprintf(bufflog + i * 5, "0x%02x ", buffer[i]);
+ }
+ debugStream->print(bufflog);
+}
+
+int get_reply_len(char regID, X10AProtocol protocol)
+{
+ if (protocol == X10AProtocol::I) {
+ // Backward compatible behavior. Actual length is dynamic and returned
+ // on 3rd byte of the response.
+ return 12;
+ } else {
+ // Protocol S has hard-coded values based on the requested registry
+ switch (regID) {
+ case 0x50:
+ return 6;
+ case 0x56:
+ return 4;
+ default:
+ return 18;
+ }
+ }
+}
+
+bool queryRegistry(RegistryBuffer *registryBuffer, X10AProtocol protocol)
+{
+ // clear buffer first
+ memset(registryBuffer->Buffer, 0, sizeof(registryBuffer->Buffer));
+ registryBuffer->CRC = 0;
+ registryBuffer->Success = false;
+
+ // preparing command:
+ byte prep[4];
+ uint8_t queryLength;
+ if (protocol == X10AProtocol::S) {
+ prep[0] = 0x02;
+ prep[1] = registryBuffer->RegistryID;
+ prep[2] = getCRC(prep, 2);
+ prep[3] = 0x00;
+ queryLength = 3;
+ } else {
+ prep[0] = 0x03;
+ prep[1] = 0x40;
+ prep[2] = registryBuffer->RegistryID;
+ prep[3] = 0x00;
+ prep[3] = getCRC(prep, 3);
+ queryLength = 4;
+ }
+
+ // sending command to serial
+ debugStream->printf("Querying register 0x%02x... ", registryBuffer->RegistryID);
+ X10ASerial->flush(); // prevent possible pending info on the read
+ X10ASerial->write((uint8_t*)prep, queryLength);
+ uint64_t start = millis();
+
+ int len = 0;
+ int replyLen = get_reply_len(registryBuffer->RegistryID, protocol);
+ while ((len < replyLen) && (millis() < (start + SER_TIMEOUT))) {
+ if (X10ASerial->available()) {
+ registryBuffer->Buffer[len++] = X10ASerial->read();
+ if (protocol == X10AProtocol::I && len == 3) {
+ // Override reply length with the actual one (not counting already read bytes, see doc/Daikin I protocol.md)
+ replyLen = registryBuffer->Buffer[2] + 2;
+ }
+ if (len == 2 && registryBuffer->Buffer[0] == 0x15 && registryBuffer->Buffer[1] == 0xEA) {
+ // HP didn't understand the command
+ debugStream->println("Error 0x15 0xEA returned from HP");
+ delay(500);
+ return false;
+ }
+ }
+ }
+ if (millis() >= (start + SER_TIMEOUT)) {
+ if (len == 0) {
+ debugStream->printf("Time out! Check connection\n");
+ } else {
+ debugStream->printf("ERR: Time out on register 0x%02x! got %d/%d bytes\n", registryBuffer->RegistryID, len, replyLen);
+ logBuffer(registryBuffer->Buffer, len);
+ }
+ delay(500);
+ return false;
+ }
+
+ registryBuffer->CRC = getCRC(registryBuffer->Buffer, len - 1);
+ logBuffer(registryBuffer->Buffer, len);
+ if (registryBuffer->CRC != registryBuffer->Buffer[len - 1]) {
+ debugStream->println("Wrong CRC!");
+ debugStream->printf("ERROR: Wrong CRC on register 0x%02x!", registryBuffer->RegistryID);
+ debugStream->printf("Calculated 0x%2x but got 0x%2x\nnBuffer: ", registryBuffer->CRC, registryBuffer->Buffer[len - 1]);
+ logBuffer(registryBuffer->Buffer, len);
+ return false;
+ } else {
+ debugStream->println(".. CRC OK!");
+ registryBuffer->Success = true;
+ return true;
+ }
+}
+
+void x10a_end()
+{
+ if(X10ASerial) {
+ X10ASerial->end();
+ }
+
+ if(X10ASerial != nullptr) {
+ delete X10ASerial;
+ }
+
+ if(X10AConfig != nullptr) {
+ delete X10AConfig;
+ }
+}
+
+void x10a_initRegistries(RegistryBuffer** buffer, size_t& bufferSize)
+{
+ // getting the list of registries to query from the selected values
+ bufferSize = 0;
+ uint8_t* tempRegistryIDs = new uint8_t[X10AConfig->PARAMETERS_LENGTH]();
+
+ size_t i;
+ for (i = 0; i < X10AConfig->PARAMETERS_LENGTH; i++) {
+ auto &&label = *X10AConfig->PARAMETERS[i];
+
+ if (!contains(tempRegistryIDs, X10AConfig->PARAMETERS_LENGTH, label.registryID)) {
+ debugStream->printf("Adding registry 0x%2x to be queried.\n", label.registryID);
+ tempRegistryIDs[bufferSize++] = label.registryID;
+ }
+ }
+
+ *buffer = new RegistryBuffer[bufferSize];
+
+ for(i = 0; i < bufferSize; i++) {
+ (*buffer)[i].RegistryID = tempRegistryIDs[i];
+ }
+
+ delete[] tempRegistryIDs;
+
+ lastTimeRunned = -(X10AConfig->FREQUENCY);
+}
+
+void x10a_handle(RegistryBuffer* buffer, const size_t& bufferSize, const bool sendValuesViaMQTT)
+{
+ // querying all registries and store results
+ for (size_t i = 0; i < bufferSize; i++) {
+ uint8_t tries = 0;
+ while (tries++ < 3 && !queryRegistry(&buffer[i], X10AConfig->X10A_PROTOCOL)) {
+ debugStream->println("Retrying...");
+ callbackX10A_wait(1000);
+ }
+ }
+
+ x10a_convert_values(buffer, bufferSize, sendValuesViaMQTT);
+
+ if(sendValuesViaMQTT && !disableMQTTLogMessages) {
+ callbackX10A_sendValues(); // send the full json message
+ }
+}
+
+void x10a_convert_values(RegistryBuffer* buffer, const size_t& bufferSize, const bool sendValuesViaMQTT) {
+ for (size_t i = 0; i < X10AConfig->PARAMETERS_LENGTH; i++) {
+ auto&& label = *X10AConfig->PARAMETERS[i];
+
+ for (size_t j = 0; j < bufferSize; j++) {
+ byte receivedRegistryID;
+ uint8_t offset;
+ if (X10AConfig->X10A_PROTOCOL == X10AProtocol::S) {
+ receivedRegistryID = buffer[j].Buffer[0];
+ offset = 1;
+ } else {
+ receivedRegistryID = buffer[j].Buffer[1];
+ offset = 3;
+ }
+
+ if (buffer[j].Success && label.registryID == receivedRegistryID) {
+ byte* input = buffer[j].Buffer;
+ input += label.offset + offset;
+
+ converter.convert(debugStream, &label, input); // convert buffer result of label offset to correct/usabel value
+
+ if (sendValuesViaMQTT) {
+ callbackX10A_updateValues(&label); // send them in mqtt
+ callbackX10A_wait(500); // wait .5sec between registries
+ }
+
+ break;
+ }
+ }
+ }
+}
+
+void x10a_set_serial(IX10ASerial* serial)
+{
+ X10ASerial = serial;
+}
+
+void x10a_init(IDebugStream* stream, X10A_Config* X10AConfigToInit, const bool disableMQTTLogMessagesToInit)
+{
+ if(stream != nullptr) {
+ debugStream = stream;
+ }
+
+ x10a_end();
+ X10AConfig = X10AConfigToInit;
+ disableMQTTLogMessages = disableMQTTLogMessagesToInit;
+ X10ASerial->begin(9600, X10AConfig->PIN_RX, X10AConfig->PIN_TX);
+}
+
+void x10a_loop()
+{
+ if(handleState == HandleState::Running)
+ return;
+
+ // TODO should be catched from main loop run
+ uint64_t loopStart = millis();
+
+ if(loopStart - lastTimeRunned >= X10AConfig->FREQUENCY) {
+ handleState = HandleState::Running;
+ debugStream->printf("X10A started reading: %lu\n", loopStart);
+
+ x10a_handle(registryBuffers, registryBufferSize, true);
+
+ uint64_t loopEnd = X10AConfig->FREQUENCY - millis() + loopStart;
+
+ debugStream->printf("X10A Done. Waiting %.2f sec...\n", (float)loopEnd / 1000);
+ lastTimeRunned = loopStart;
+ handleState = HandleState::Stopped;
+ }
+}
+
+void x10a_fill_config(JsonObject &jsonObject, X10A_Config *config) {
+ JsonArray parameters = jsonObject["PARAMETERS"].as();
+ config->PARAMETERS_LENGTH = parameters.size();
+ config->PARAMETERS = new ParameterDef *[config->PARAMETERS_LENGTH];
+
+ for (size_t i = 0; i < config->PARAMETERS_LENGTH; i++) {
+ JsonArray parameter = parameters[i];
+ config->PARAMETERS[i] = new ParameterDef(
+ parameter[0].as(),
+ parameter[1].as(),
+ parameter[2].as(),
+ parameter[3].as(),
+ parameter[4].as(),
+ parameter[5].as());
+ }
+}
+
+bool x10a_got_inited()
+{
+ return X10ASerial;
+}
\ No newline at end of file
diff --git a/lib/X10A/x10a.hpp b/lib/X10A/x10a.hpp
new file mode 100644
index 00000000..b0ec6fac
--- /dev/null
+++ b/lib/X10A/x10a.hpp
@@ -0,0 +1,42 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include "registryBuffer.hpp"
+#include "parameterDef.hpp"
+#include "converters.hpp"
+#include "config.hpp"
+
+#define SER_TIMEOUT 300 // leave 300ms for the machine to answer
+
+extern std::function callbackX10A_wait;
+extern std::function callbackX10A_sendValues;
+extern std::function callbackX10A_updateValues;
+
+extern size_t registryBufferSize;
+extern RegistryBuffer *registryBuffers;
+
+enum HandleState : uint8_t {
+ Stopped,
+ Running
+};
+
+void x10a_end();
+
+void x10a_initRegistries(RegistryBuffer** buffer, size_t& bufferSize);
+
+void x10a_handle(RegistryBuffer* buffer, const size_t& bufferSize, const bool sendValuesViaMQTT);
+
+void x10a_convert_values(RegistryBuffer* buffer, const size_t& bufferSize, const bool sendValuesViaMQTT);
+
+void x10a_set_serial(IX10ASerial* serial);
+
+void x10a_init(IDebugStream* stream, X10A_Config* X10AConfig, const bool disableMQTTLogMessagesToInit);
+
+void x10a_fill_config(JsonObject &jsonObject, X10A_Config *X10AConfig);
+
+bool x10a_got_inited();
+
+void x10a_loop();
\ No newline at end of file
diff --git a/min_spiffs.csv b/min_spiffs.csv
new file mode 100644
index 00000000..080f491d
--- /dev/null
+++ b/min_spiffs.csv
@@ -0,0 +1,7 @@
+# Name, Type, SubType, Offset, Size, Flags
+nvs, data, nvs, 0x9000, 0x5000,
+otadata, data, ota, 0xe000, 0x2000,
+app0, app, ota_0, 0x10000, 0x1E0000,
+app1, app, ota_1, 0x1F0000,0x1E0000,
+spiffs, data, spiffs, 0x3D0000,0x20000,
+coredump, data, coredump,0x3F0000,0x10000,
\ No newline at end of file
diff --git a/platformio.ini b/platformio.ini
index 379b26ac..94f9a31c 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -8,84 +8,115 @@
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
-
[platformio]
default_envs = esp32
-[env:nodemcuv2]
-platform = espressif8266
-framework = arduino
-board = nodemcuv2
+[common]
+platform = espressif32
+framework = arduino, espidf
monitor_speed = 115200
upload_speed = 921600
-build_flags = -D_GNU_SOURCE
+board_build.partitions = min_spiffs.csv
+board_build.filesystem = littlefs
+lib_ldf_mode = chain+
+extra_scripts =
+ pre:scripts/prep_webui_folder.py
lib_deps =
- PubSubClient
+ PubSubClient@^2.8
+ ESPAsyncWebServer@^3.1.0
+ ArduinoJson@^6.21.0
+ asjdf/WebSerialLite@^2.2.0
+ 107-Arduino-MCP2515@^1.5.0
+build_flags =
+ -Wno-error=address
[env:esp32]
-platform = espressif32
-board = esp32doit-devkit-v1
-framework = arduino
-monitor_speed = 115200
-upload_speed = 115200
-; Uncomment this line to allow for remote upgrade. If name resolution does not work for you, replace with the IP of ESPAltherma
-; upload_port = ESPAltherma.local
-; Uncomment this line if you want to define the protocol. Autodetected otherwise.
-; upload_protocol = espota
+extends = common
+board = esp32dev
+
+[env:esp32_debug]
+extends = common
+board = esp32dev
+monitor_filters = esp32_exception_decoder
+build_type = debug
+
+[env:esp32_debug_noBT]
+extends = env:esp32_debug
+build_flags =
+ ${common.build_flags}
+ -D NO_BLUETOOTH
+[env:nodemcuv2]
+extends = common
+platform = espressif8266
+framework = arduino
+board = nodemcuv2
lib_deps =
- PubSubClient
+ ${common.lib_deps}
+ vshymanskyy/Preferences@^2.1.0
+build_flags =
+ ${common.build_flags}
+ -D NO_BLUETOOTH
+
+[env:nodemcuv2_debug]
+extends = env:nodemcuv2
+monitor_filters = esp8266_exception_decoder
+build_type = debug
[env:m5stickc]
-platform = espressif32
+extends = common
board = m5stick-c
-framework = arduino
-monitor_speed = 115200
upload_speed = 115200
-; Uncomment this line to allow for remote upgrade. If name resolution does not work for you, replace with the IP of ESPAltherma
-; upload_port = ESPAltherma.local
-; Uncomment this line if you want to define the protocol. Autodetected otherwise.
-; upload_protocol = espota
-
lib_deps =
+ ${common.lib_deps}
M5StickC
- PubSubClient
+build_flags =
+ ${common.build_flags}
+ -Wno-unused-const-variable
+
+[env:m5stack-tough]
+extends = common
+board = m5stack-core2
+upload_speed = 115200
+lib_deps =
+ ${common.lib_deps}
+ https://github.com/m5stack/M5Tough.git
+build_flags =
+ ${common.build_flags}
+ -D ARDUINO_M5Stack_Tough
+ -Wno-unused-const-variable
[env:m5stickcplus]
-platform = espressif32
+extends = common
board = m5stick-c
-framework = arduino
-monitor_speed = 115200
upload_speed = 115200
-; Uncomment this line to allow for remote upgrade. If name resolution does not work for you, replace with the IP of ESPAltherma
-; upload_port = ESPAltherma.local
-; Uncomment this line if you want to define the protocol. Autodetected otherwise.
-; upload_protocol = espota
-
lib_deps =
+ ${common.lib_deps}
M5StickCPlus
- PubSubClient
-
-build_flags = "-D ARDUINO_M5Stick_C_Plus"
+build_flags =
+ ${common.build_flags}
+ -D ARDUINO_M5Stick_C_Plus
+ -Wno-unused-const-variable
[env:m5stickcplus2]
-platform = espressif32
+extends = common
board = m5stick-c
-framework = arduino
-monitor_speed = 115200
-upload_speed = 115200
-; Uncomment this line to allow for remote upgrade. If name resolution does not work for you, replace with the IP of ESPAltherma
-; upload_port = ESPAltherma.local
-; Uncomment this line if you want to define the protocol. Autodetected otherwise.
-; upload_protocol = espota
-
lib_deps =
+ ${common.lib_deps}
M5StickCPlus2
- PubSubClient
-
-build_flags = "-D ARDUINO_M5Stick_C_Plus2"
+build_flags =
+ ${common.build_flags}
+ -D ARDUINO_M5Stick_C_Plus2
+ -Wno-unused-const-variable
[env:native]
# Used to run unit test; g++ must be in PATH.
platform = native
-build_flags = "-std=c++11"
+build_type = debug
+build_flags =
+ -std=c++11
+debug_test = *
+lib_ldf_mode = chain+
+lib_deps =
+ ArduinoFake@^0.4.0
+ ArduinoJson@^6.21.0
\ No newline at end of file
diff --git a/scripts/build_can_commands.py b/scripts/build_can_commands.py
new file mode 100644
index 00000000..a9231e9b
--- /dev/null
+++ b/scripts/build_can_commands.py
@@ -0,0 +1,63 @@
+
+import json
+import os
+import shutil
+import glob
+import gzip
+
+print('Generating CAN language files...')
+
+projectRoot = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..')
+data_src_dir = os.path.join(projectRoot, 'definitions', 'CAN/')
+buildDir = os.path.join(projectRoot, 'build', 'CAN')
+
+if not os.path.exists(buildDir):
+ os.makedirs(buildDir)
+
+files_to_convert = []
+files_to_convert.extend(glob.glob(os.path.join(data_src_dir, '*.json')))
+
+language_directorys = [os.path.abspath(os.path.join(data_src_dir,name)) for name in os.listdir(os.path.join(data_src_dir, '.')) if os.path.isdir(os.path.join(data_src_dir, name))]
+
+print(' files to convert: ' + str(files_to_convert))
+print(' directorys to convert: ' + str(language_directorys))
+
+for file in files_to_convert:
+ print(' Converting file: ' + os.path.basename(file))
+
+ commandsFile = open(file, "r", encoding='utf8')
+ commands = json.load(commandsFile)["commands"]
+ commandsFile.close()
+
+ for langDirectory in language_directorys:
+ languageFilePath = os.path.join(langDirectory, os.path.basename(file))
+
+ if not os.path.isfile(languageFilePath):
+ continue
+
+ print(' Converting file: ' + languageFilePath)
+ languageFile = open(languageFilePath, "r", encoding='utf8')
+ languageDefinition = json.load(languageFile)
+ languageFile.close()
+
+ srcFile = os.path.join(data_src_dir, os.path.basename(file))
+ targetFile = os.path.join(buildDir, os.path.basename(file))
+ languageFileDir = os.path.join(buildDir, languageDefinition["Language"])
+
+ if not os.path.exists(languageFileDir):
+ os.makedirs(languageFileDir)
+
+ counter = 0
+ for definition in languageDefinition["Commands"]:
+ defName = definition["name"]
+ command = commands[defName]
+
+ for c in command:
+ languageDefinition["Commands"][counter][c] = command[c]
+
+ counter += 1
+
+ with open(os.path.join(languageFileDir, os.path.basename(file)), "w", encoding='utf8') as outfile:
+ json.dump(languageDefinition, outfile, ensure_ascii=False)
+
+print('Finished generating CAN language files!')
\ No newline at end of file
diff --git a/scripts/build_x10a_commands.py b/scripts/build_x10a_commands.py
new file mode 100644
index 00000000..37bdae80
--- /dev/null
+++ b/scripts/build_x10a_commands.py
@@ -0,0 +1,86 @@
+
+import json
+import os
+import glob
+
+print('Generating X10A language files...')
+
+projectRoot = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..')
+data_src_dir = os.path.join(projectRoot, 'definitions', 'X10A')
+buildDir = os.path.join(projectRoot, 'build', 'X10A')
+
+if not os.path.exists(buildDir):
+ os.makedirs(buildDir)
+
+files_to_convert = []
+files_to_convert.extend(glob.glob(os.path.join(data_src_dir, '*.json')))
+
+language_directorys = [os.path.abspath(os.path.join(data_src_dir,name)) for name in os.listdir(os.path.join(data_src_dir, '.')) if os.path.isdir(os.path.join(data_src_dir, name))]
+
+print(' files to convert: ' + str(files_to_convert))
+print(' directorys to convert: ' + str(language_directorys))
+
+for file in files_to_convert:
+ print(' Converting file: ' + os.path.basename(file))
+
+ modelFile = open(file, "r", encoding='utf8')
+ modelDefinition = json.load(modelFile)
+ modelFile.close()
+
+ # remove comments in file
+ if "Comment" in modelDefinition:
+ del modelDefinition["Comment"]
+
+ idx = 0
+ while idx < len(modelDefinition["Parameters"]):
+ if len(modelDefinition["Parameters"][idx]) == 1:
+ modelDefinition["Parameters"].pop(idx)
+ else:
+ # remove row index number
+ del modelDefinition["Parameters"][idx][0]
+ idx += 1
+
+ modelFileLanguageDir = os.path.join(buildDir, modelDefinition["Language"])
+
+ if not os.path.exists(modelFileLanguageDir):
+ os.makedirs(modelFileLanguageDir)
+
+ newModelFileLocation = os.path.join(modelFileLanguageDir, os.path.basename(file))
+
+ # compress json file
+ with open(newModelFileLocation, "w", encoding='utf8') as outfile:
+ json.dump(modelDefinition, outfile, ensure_ascii=False)
+
+ # update language files
+ for langDirectory in language_directorys:
+ languageFilePath = os.path.join(langDirectory, os.path.basename(file))
+
+ if not os.path.isfile(languageFilePath):
+ continue
+
+ print(' Converting language file: ' + languageFilePath)
+
+ languageFile = open(languageFilePath, "r", encoding='utf8')
+ languageDefinition = json.load(languageFile)
+ languageFile.close()
+
+ modelDefinition["Language"] = languageDefinition["Language"]
+
+ languageFileDir = os.path.join(buildDir, languageDefinition["Language"])
+
+ if len(languageDefinition["Parameters"]) != len(modelDefinition["Parameters"]):
+ print('Index missmatch between file ' + languageFilePath + ': ' + str(len(languageDefinition["Parameters"])) + ' -> ' + str(len(modelDefinition["Parameters"])))
+ continue
+
+ counter = 0
+ for parameter in languageDefinition["Parameters"]:
+ modelDefinition["Parameters"][counter][5] = languageDefinition["Parameters"][counter][1]
+ counter += 1
+
+ if not os.path.exists(languageFileDir):
+ os.makedirs(languageFileDir)
+
+ with open(os.path.join(languageFileDir, os.path.basename(file)), "w", encoding='utf8') as outfile:
+ json.dump(modelDefinition, outfile, ensure_ascii=False)
+
+print('Finished generating X10A language files!')
\ No newline at end of file
diff --git a/scripts/convert_x10a_C_Array.py b/scripts/convert_x10a_C_Array.py
new file mode 100644
index 00000000..5ed79a6f
--- /dev/null
+++ b/scripts/convert_x10a_C_Array.py
@@ -0,0 +1,142 @@
+import re
+import json
+import sys
+import os
+
+def hex_to_decimal(hex_string):
+ return int(hex_string, 16)
+
+def parse_c_array(filename):
+ label_defs = []
+ match_count = 0
+ with open(filename, 'r', encoding='utf-8') as file:
+ lines = file.readlines()
+ for line in lines:
+ trimedLine = line.strip()
+ matches = re.findall(r'0x([0-9a-fA-F]+),\s*(-?\d+),\s*(-?\d+),\s*(-?\d+),\s*(-?\d+),\s*"(.*?)"', trimedLine)
+ activated = not trimedLine.startswith("//")
+ for match in matches:
+ hex_value = hex_to_decimal(match[0])
+ decimal_values = [int(match[i]) for i in range(1, 5)]
+ description = match[5]
+ label_defs.append([match_count + 1] + [activated] + [hex_value] + decimal_values + ['"' + description + '"'])
+ match_count += 1
+ return label_defs, match_count
+
+def generateJson(name, language, label_defs):
+ jsonTemplateHeader = '''{{
+ "Model": "{0}",
+ "Language": "{1}",
+ "Presets": {{
+{2}
+ }},
+ "Parameters": [
+'''
+
+ presetText = ""
+ if len(label_defs[0]) > 2:
+ preset = []
+ for label_def in label_defs:
+ activated = label_def[1]
+ del label_def[1]
+
+ if activated:
+ preset.append(label_def[0])
+
+ if len(preset) > 0:
+ presetText += ' "Normal": [' + ', '.join(map(lambda x: str(x), preset)) + '],\n'
+
+ preset.clear()
+ lightValues = ["(R1T)", "(R2T)", "(R3T)", "(R4T)", "(R5T)", "(R6T)"]
+
+ for label_def in label_defs:
+ for textSearch in lightValues:
+ if textSearch in label_def[6]:
+ preset.append(label_def[0])
+
+ if len(preset) > 0:
+ presetText += ' "Light": [' + ', '.join(map(lambda x: str(x), preset)) + '],\n'
+
+ presetText = presetText[:-2]
+
+ outputContent = jsonTemplateHeader.format(name, language, presetText)
+ for label_def in label_defs:
+ outputContent += ' [ ' + ',\t'.join(map(lambda x: str(x), label_def)) + '],\n'
+
+ outputContent = outputContent[:-2]
+ outputContent += "\n ]\n}"
+
+ return outputContent
+
+def main():
+ if len(sys.argv) < 3:
+ print("Usage: python script.py [console]")
+ return
+
+ sourceDirectory = sys.argv[1]
+ targetDirectory = sys.argv[2]
+ if not os.path.isdir(sourceDirectory):
+ print("Error: Invalid source directory path.")
+ return
+
+ if not os.path.isdir(targetDirectory):
+ print("Error: Invalid target directory path.")
+ return
+
+ consoleOutput = len(sys.argv) == 4 and sys.argv[3] == "console"
+
+ founded_filenames = {}
+ total_match_count = 0
+ for root, _, files in os.walk(sourceDirectory):
+ for file in files:
+ filename = os.path.join(root, file)
+
+ if file in founded_filenames:
+ label_defs, match_count = parse_c_array(filename)
+ if len(founded_filenames[file]) != match_count:
+ print(f"Error: Missleading label defs count in file {filename}. Org count: {len(founded_filenames[file])}, language count: {match_count}")
+ print(founded_filenames[file])
+ return
+
+ for label_def in label_defs:
+ del label_def[1:7]
+
+ language = os.path.basename(os.path.normpath(root))
+
+ outputContent = generateJson(file.split('.')[0], language, label_defs)
+
+ if consoleOutput:
+ print(f"--- BEGIN Output LANGUAGE file '{filename}' ---")
+ print(outputContent)
+ print(f"--- END Output of LANGUAGE file '{filename}' ---")
+ else:
+ output_path = os.path.join(targetDirectory, language)
+ output_file = os.path.join(output_path, file.split('.')[0] + '.json')
+
+ if not os.path.exists(output_path):
+ os.makedirs(output_path)
+
+ with open(output_file, 'w', encoding='utf-8') as json_file:
+ json_file.write(outputContent)
+ else:
+ label_defs, match_count = parse_c_array(filename)
+ total_match_count += match_count
+ if label_defs:
+ outputContent = generateJson(file.split('.')[0], "English", label_defs)
+
+ if consoleOutput:
+ print(f"--- BEGIN Output of file '{filename}' ---")
+ print(outputContent)
+ print(f"--- END Output of file '{filename}' ---")
+ else:
+ output_file = os.path.join(targetDirectory, file.split('.')[0] + '.json')
+ with open(output_file, 'w', encoding='utf-8') as json_file:
+ json_file.write(outputContent)
+
+ founded_filenames[file] = label_defs
+
+ print(f"Scanned C arrays from files in '{sourceDirectory}' and saved as JSON")
+ print(f"Found and converted {total_match_count} matches.")
+
+if __name__ == "__main__":
+ main()
diff --git a/scripts/prep_webui_folder.py b/scripts/prep_webui_folder.py
new file mode 100644
index 00000000..cfcf9b2e
--- /dev/null
+++ b/scripts/prep_webui_folder.py
@@ -0,0 +1,129 @@
+Import("env")
+
+try:
+ import rcssmin
+ import htmlmin
+ from jsmin import jsmin
+ import step
+except ImportError:
+ env.Execute("$PYTHONEXE -m pip install rcssmin htmlmin jsmin step-template")
+finally:
+ import rcssmin
+ import htmlmin
+ from jsmin import jsmin
+ import step
+
+import os
+import shutil
+import glob
+import gzip
+
+cppDefines = env.ParseFlags(env['BUILD_FLAGS']).get('CPPDEFINES')
+namespace = {'platform': env['PIOPLATFORM'], 'mcu': env.get('BOARD_MCU') or ""}
+
+for idx, define, in enumerate( cppDefines):
+ namespace[define] = idx
+
+filetypes_to_gzip = ['js', 'html', 'css']
+data_src_dir = os.path.join(env.get('PROJECT_DIR'), 'webui')
+build_src_dir = os.path.join(env.get('PROJECT_DIR'), 'build', 'webui')
+
+print('Cleaning up old builded webui files...')
+
+filesToDelete = glob.glob(os.path.join(build_src_dir, '*.*'))
+
+if not filesToDelete:
+ print('NOTHING TO CLEAN!')
+
+for file in filesToDelete:
+ print(' Delete file: ' + file)
+ os.remove(file)
+
+print('Finished cleaning up webui files...')
+
+print('Generating new webui files...')
+
+minify = env.get('BUILD_TYPE') != 'debug'
+
+files_to_gzip = []
+for extension in filetypes_to_gzip:
+ files_to_gzip.extend(glob.glob(os.path.join(data_src_dir, '*.' + extension)))
+
+print(' files to embedd: ' + str(files_to_gzip))
+
+if not os.path.exists(build_src_dir):
+ os.makedirs(build_src_dir)
+
+filesToIncludeInHeader = []
+
+for file in files_to_gzip:
+ print(' Processing file: ' + file)
+ filename = os.path.basename(file)
+ srcFile = os.path.join(data_src_dir, filename)
+ buildDirFile = os.path.join(build_src_dir, filename)
+ tmpFile = buildDirFile + ".tmp"
+ gzFile = buildDirFile + ".gz"
+ extension = filename.split(".")[-1]
+
+ shutil.copyfile(srcFile, tmpFile)
+
+ if extension == "js":
+ with open(tmpFile, 'r') as js_file:
+ parsedJSFile = step.Template(js_file.read()).expand(namespace)
+
+ if minify:
+ parsedJSFile = jsmin(parsedJSFile)
+
+ with open(tmpFile, 'w') as js_file:
+ js_file.write(parsedJSFile)
+ elif extension == "html":
+ with open(tmpFile,'r') as fileHandler:
+ parsedHTMLFile = step.Template(fileHandler.read()).expand(namespace)
+
+ if minify:
+ parsedHTMLFile = htmlmin.minify(parsedHTMLFile)
+
+ with open(tmpFile,'w') as fileHandler:
+ fileHandler.write(parsedHTMLFile)
+ elif extension == "css":
+ with open(tmpFile,'r') as fileHandler:
+ parsedCSSLFile = step.Template(fileHandler.read()).expand(namespace)
+
+ if minify:
+ parsedCSSLFile = rcssmin.cssmin(parsedCSSLFile)
+
+ with open(tmpFile,'w') as fileHandler:
+ fileHandler.write(parsedCSSLFile)
+
+ with open(tmpFile, "rb") as src, gzip.open(gzFile, 'wb') as dst:
+ dst.writelines(src)
+
+ os.remove(tmpFile)
+
+ dstFile = gzFile + ".h"
+ filesToIncludeInHeader += [os.path.basename(dstFile)]
+
+ with open(gzFile, "rb") as src, open(dstFile, 'w') as dst:
+ data = src.read()
+ srcSize = src.tell()
+
+ baseName = os.path.basename(gzFile.replace('.', '_'))
+ constName = baseName + '_len'
+
+ dst.write('//\n// AUTO-Generated by prepare build script, do not change!!!\n//\n\n')
+ dst.write('#include \n\n')
+ dst.write('#define ' + constName + ' ' + str(srcSize) + '\n')
+ dst.write('const uint8_t ' + baseName + '[] PROGMEM = {')
+
+ hex_string = ', '.join([f'0x{byte:02X}' for byte in data])
+ dst.write(hex_string)
+
+ dst.write('\n};')
+
+mainHeader = os.path.join(build_src_dir, "webfileHeaders.h")
+print('Generating main header file: ' + mainHeader)
+with open(mainHeader, 'w') as dst:
+ for file in filesToIncludeInHeader:
+ dst.write('#include "' + file + '"\n')
+
+print('Finished generating webui files!')
\ No newline at end of file
diff --git a/sdkconfig.defaults b/sdkconfig.defaults
new file mode 100644
index 00000000..1f4892ed
--- /dev/null
+++ b/sdkconfig.defaults
@@ -0,0 +1,98 @@
+CONFIG_PARTITION_TABLE_CUSTOM=y
+CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="min_spiffs.csv"
+CONFIG_ESP32_REV_MIN_3=y
+CONFIG_BOOTLOADER_LOG_LEVEL_NONE=y
+CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE=y
+CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP=y
+CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
+CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
+CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
+CONFIG_AUTOSTART_ARDUINO=y
+CONFIG_ARDUHAL_ESP_LOG=y
+CONFIG_COMPILER_OPTIMIZATION_SIZE=y
+CONFIG_COMPILER_CXX_EXCEPTIONS=y
+CONFIG_COMPILER_STACK_CHECK_MODE_NORM=y
+CONFIG_COMPILER_WARN_WRITE_STRINGS=y
+CONFIG_BT_ENABLED=y
+CONFIG_BTDM_CTRL_MODE_BTDM=y
+CONFIG_BTDM_SCAN_DUPL_CACHE_SIZE=20
+CONFIG_BT_BTC_TASK_STACK_SIZE=8192
+CONFIG_BT_BTU_TASK_STACK_SIZE=8192
+CONFIG_BT_CLASSIC_ENABLED=y
+CONFIG_BT_A2DP_ENABLE=y
+CONFIG_BT_SPP_ENABLED=y
+CONFIG_BT_HFP_ENABLE=y
+CONFIG_BT_STACK_NO_LOG=y
+CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y
+CONFIG_BLE_MESH=y
+# CONFIG_SPI_MASTER_ISR_IN_IRAM is not set
+# CONFIG_SPI_SLAVE_ISR_IN_IRAM is not set
+CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC=y
+CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST=y
+CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID=y
+CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT=y
+CONFIG_ESP32_SPIRAM_SUPPORT=y
+CONFIG_SPIRAM_SPEED_80M=y
+# CONFIG_SPIRAM_BOOT_INIT is not set
+CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=4096
+CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0
+CONFIG_SPIRAM_OCCUPY_HSPI_HOST=y
+CONFIG_ESP32_ULP_COPROC_ENABLED=y
+CONFIG_ESP32_XTAL_FREQ_AUTO=y
+CONFIG_ETH_SPI_ETHERNET_DM9051=y
+CONFIG_ETH_SPI_ETHERNET_W5500=y
+CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH=y
+CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024
+CONFIG_HTTPD_WS_SUPPORT=y
+CONFIG_ESP_HTTPS_SERVER_ENABLE=y
+CONFIG_ESP_IPC_TASK_STACK_SIZE=1024
+CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2048
+CONFIG_ESP_MAIN_TASK_STACK_SIZE=4096
+CONFIG_ESP_INT_WDT_TIMEOUT_MS=300
+CONFIG_ESP_TASK_WDT_PANIC=y
+# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 is not set
+CONFIG_ESP_TIMER_TASK_STACK_SIZE=4096
+CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=8
+CONFIG_ESP32_WIFI_STATIC_TX_BUFFER_NUM=8
+CONFIG_ESP32_WIFI_CACHE_TX_BUFFER_NUM=16
+CONFIG_ESP32_WIFI_CSI_ENABLED=y
+CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
+CONFIG_FATFS_CODEPAGE_850=y
+CONFIG_FATFS_LFN_STACK=y
+CONFIG_FATFS_API_ENCODING_UTF_8=y
+# CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT is not set
+CONFIG_FMB_TIMER_PORT_ENABLED=y
+CONFIG_FREERTOS_HZ=1000
+# CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION is not set
+CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y
+CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1024
+CONFIG_FREERTOS_FPU_IN_ISR=y
+CONFIG_HEAP_POISONING_LIGHT=y
+CONFIG_LOG_DEFAULT_LEVEL_ERROR=y
+# CONFIG_LOG_COLORS is not set
+CONFIG_LWIP_MAX_SOCKETS=16
+CONFIG_LWIP_ETHARP_TRUST_IP_MAC=y
+# CONFIG_LWIP_DHCP_DOES_ARP_CHECK is not set
+CONFIG_LWIP_DHCP_RESTORE_LAST_IP=y
+CONFIG_LWIP_DHCP_OPTIONS_LEN=128
+CONFIG_LWIP_IPV6_AUTOCONFIG=y
+CONFIG_LWIP_TCP_SYNMAXRTX=6
+CONFIG_LWIP_TCP_MSS=1436
+CONFIG_LWIP_TCP_RTO_TIME=3000
+CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=2560
+CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0=y
+CONFIG_LWIP_SNTP_MAX_SERVERS=3
+CONFIG_LWIP_DHCP_GET_NTP_SRV=y
+CONFIG_LWIP_SNTP_UPDATE_DELAY=10800000
+# CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN is not set
+CONFIG_MBEDTLS_PSK_MODES=y
+CONFIG_MBEDTLS_KEY_EXCHANGE_PSK=y
+CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
+CONFIG_MBEDTLS_CAMELLIA_C=y
+CONFIG_OPENSSL_ASSERT_DO_NOTHING=y
+CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=2048
+CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=10
+CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=2
+CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=4096
+CONFIG_WIFI_PROV_BLE_BONDING=y
+CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION=y
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
new file mode 100644
index 00000000..40067ed7
--- /dev/null
+++ b/src/CMakeLists.txt
@@ -0,0 +1,6 @@
+# This file was automatically generated for projects
+# without default 'CMakeLists.txt' file.
+
+FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*)
+
+idf_component_register(SRCS ${app_sources})
\ No newline at end of file
diff --git a/src/Config/boardDefaults.hpp b/src/Config/boardDefaults.hpp
new file mode 100644
index 00000000..b79c6f0e
--- /dev/null
+++ b/src/Config/boardDefaults.hpp
@@ -0,0 +1,68 @@
+#pragma once
+
+const char* const JSON_BOARD_DEFAULTS =
+
+#if defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stack_Tough)
+ "\"Default\": {"
+ "\"pin_rx\": 36,"
+ "\"pin_tx\": 26,"
+ "\"pin_heating\": 0,"
+ "\"pin_cooling\": 0,"
+ "\"pin_sg1\": 32,"
+ "\"pin_sg2\": 33,"
+ "\"pin_safety\": 33,"
+ "\"uart\": {"
+ "\"pin_rx\": 32,"
+ "\"pin_tx\": 33"
+ "},"
+ "\"spi\": {"
+ "\"mosi\": 26,"
+ "\"miso\": 0,"
+ "\"sck\": 36,"
+ "\"cs\": 32,"
+ "\"int\": 33,"
+ "\"mhz\": 12"
+ "},"
+ "\"can_speed_kbps\": 20,"
+ "\"can_mqtt_topic_name\": \"CAN/\","
+ "\"can_autopoll_time\": 30,"
+ "\"pin_enable_config\": 39,"
+ "\"frequency\": 30000,"
+ "\"mqtt_topic_name\": \"espaltherma/\","
+ "\"mqtt_onetopic_name\": \"OneATTR/\","
+ "\"mqtt_port\": 1883"
+ "}"
+#elif defined(ESP32) || defined(ESP8266)
+ "\"Default\": {"
+ "\"pin_rx\": 16,"
+ "\"pin_tx\": 17,"
+ "\"pin_heating\": 13,"
+ "\"pin_cooling\": 14,"
+ "\"pin_sg1\": 32,"
+ "\"pin_sg2\": 33,"
+ "\"pin_safety\": 33,"
+ "\"uart\": {"
+ "\"pin_rx\": 4,"
+ "\"pin_tx\": 5"
+ "},"
+ "\"spi\": {"
+ "\"mosi\": 23,"
+ "\"miso\": 19,"
+ "\"sck\": 18,"
+ "\"cs\": 5,"
+ "\"int\": 4,"
+ "\"mhz\": 12"
+ "},"
+ "\"can_speed_kbps\": 20,"
+ "\"can_mqtt_topic_name\": \"CAN/\","
+ "\"can_autopoll_time\": 30,"
+ "\"pin_enable_config\": 27,"
+ "\"frequency\": 30000,"
+ "\"mqtt_topic_name\": \"espaltherma/\","
+ "\"mqtt_onetopic_name\": \"OneATTR/\","
+ "\"mqtt_port\": 1883"
+ "}"
+#else
+ "\"Default\": {}"
+#endif
+;
\ No newline at end of file
diff --git a/src/Config/config.cpp b/src/Config/config.cpp
new file mode 100644
index 00000000..58ce18b8
--- /dev/null
+++ b/src/Config/config.cpp
@@ -0,0 +1,260 @@
+#include "config.hpp"
+
+ESPAlthermaConfig* config = nullptr;
+
+ESPAlthermaConfig::~ESPAlthermaConfig()
+{
+ if(X10A_ENABLED) {
+ delete X10A_CONFIG;
+ }
+
+ if(CAN_ENABLED) {
+ delete CAN_CONFIG;
+ }
+}
+
+void readConfig()
+{
+ if(config != nullptr)
+ delete config;
+
+ config = new ESPAlthermaConfig();
+
+ if(!LittleFS.exists(CONFIG_FILE))
+ return;
+
+ File configFile = LittleFS.open(CONFIG_FILE, FILE_READ);
+ size_t configFileSize = configFile.size();
+ DynamicJsonDocument configDoc(MODELS_CONFIG_SIZE);
+ deserializeJson(configDoc, configFile);
+ configFile.close();
+
+ serializeJsonPretty(configDoc, Serial);
+ Serial.println();
+
+ if(configFileSize == 0)
+ return;
+
+ config->configStored = true;
+ config->STANDALONE_WIFI = configDoc["STANDALONE_WIFI"].as();
+
+ if(!config->STANDALONE_WIFI) {
+ config->SSID = (char *)configDoc["SSID"].as();
+ config->SSID_PASSWORD = (char *)configDoc["SSID_PASSWORD"].as();
+ config->SSID_STATIC_IP = configDoc["SSID_STATIC_IP"].as();
+ if(config->SSID_STATIC_IP) {
+ config->SSID_IP = (char *)configDoc["SSID_IP"].as();
+ config->SSID_SUBNET = (char *)configDoc["SSID_SUBNET"].as();
+ config->SSID_GATEWAY = (char *)configDoc["SSID_GATEWAY"].as();
+ config->SSID_PRIMARY_DNS = (char *)configDoc["SSID_PRIMARY_DNS"].as();
+ config->SSID_SECONDARY_DNS = (char *)configDoc["SSID_SECONDARY_DNS"].as();
+ }
+ }
+
+ config->MQTT_SERVER = (char *)configDoc["MQTT_SERVER"].as();
+ config->MQTT_USERNAME = (char *)configDoc["MQTT_USERNAME"].as();
+ config->MQTT_PASSWORD = (char *)configDoc["MQTT_PASSWORD"].as();
+ config->MQTT_TOPIC_NAME = (char *)configDoc["MQTT_TOPIC_NAME"].as();
+ config->MQTT_USE_JSONTABLE = configDoc["MQTT_USE_JSONTABLE"].as();
+ config->MQTT_USE_ONETOPIC = configDoc["MQTT_USE_ONETOPIC"].as();
+
+ if(config->MQTT_USE_ONETOPIC) {
+ config->MQTT_ONETOPIC_NAME = (char *)configDoc["MQTT_ONETOPIC_NAME"].as();
+ }
+
+ config->MQTT_PORT = configDoc["MQTT_PORT"].as();
+ config->MQTT_DISABLE_LOG_MESSAGES = configDoc["MQTT_DISABLE_LOG_MESSAGES"].as();
+ config->MQTT_ENCRYPTED = configDoc["MQTT_ENCRYPTED"].as();
+ config->PIN_ENABLE_CONFIG = configDoc["PIN_ENABLE_CONFIG"].as();
+ config->HEATING_ENABLED = configDoc["HEATING_ENABLED"].as();
+ config->PIN_HEATING = configDoc["PIN_HEATING"].as();
+ config->COOLING_ENABLED = configDoc["COOLING_ENABLED"].as();
+ config->PIN_COOLING = configDoc["PIN_COOLING"].as();
+ config->SG_ENABLED = configDoc["SG_ENABLED"].as();
+ config->PIN_SG1 = configDoc["PIN_SG1"].as();
+ config->PIN_SG2 = configDoc["PIN_SG2"].as();
+ config->SG_RELAY_HIGH_TRIGGER = configDoc["SG_RELAY_HIGH_TRIGGER"].as();
+ config->X10A_ENABLED = configDoc["X10A_ENABLED"].as();
+ config->CAN_ENABLED = configDoc["CAN_ENABLED"].as();
+ config->SAFETY_ENABLED = configDoc["SAFETY_ENABLED"].as();
+ config->PIN_SAFETY = configDoc["PIN_SAFETY"].as();
+
+ if(config->X10A_ENABLED) {
+ X10A_Config* X10AConfig = new X10A_Config();
+ JsonObject configX10ADoc = configDoc["X10A_CONFIG"];
+ X10AConfig->FREQUENCY = configX10ADoc["FREQUENCY"].as();
+ X10AConfig->PIN_RX = configX10ADoc["PIN_RX"].as();
+ X10AConfig->PIN_TX = configX10ADoc["PIN_TX"].as();
+ X10AConfig->X10A_PROTOCOL = (X10AProtocol)configX10ADoc["X10A_PROTOCOL"].as();
+ X10AConfig->WEBUI_SELECTION_VALUES = (char *)configX10ADoc["WEBUI_SELECTION_VALUES"].as();
+
+ x10a_fill_config(configX10ADoc, X10AConfig);
+
+ config->X10A_CONFIG = X10AConfig;
+ }
+
+ if(config->CAN_ENABLED) {
+ CAN_Config* CANConfig = new CAN_Config();
+ JsonObject configCANDoc = configDoc["CAN_CONFIG"];
+ CANConfig->CAN_IC = (CAN_ICTypes)configCANDoc["CAN_IC"].as();
+ CANConfig->CAN_BUS = (CAN_ICBus)configCANDoc["CAN_BUS"].as();
+
+ CANConfig->CAN_UART.PIN_RX = configCANDoc["UART"]["PIN_RX"].as();
+ CANConfig->CAN_UART.PIN_TX = configCANDoc["UART"]["PIN_TX"].as();
+
+ CANConfig->CAN_SPI.PIN_MISO = configCANDoc["SPI"]["MISO"].as();
+ CANConfig->CAN_SPI.PIN_MOSI = configCANDoc["SPI"]["MOSI"].as();
+ CANConfig->CAN_SPI.PIN_SCK = configCANDoc["SPI"]["SCK"].as();
+ CANConfig->CAN_SPI.PIN_CS = configCANDoc["SPI"]["CS"].as();
+ CANConfig->CAN_SPI.PIN_INT = configCANDoc["SPI"]["INT"].as();
+ CANConfig->CAN_SPI.IC_MHZ = configCANDoc["SPI"]["MHZ"].as();
+
+ CANConfig->CAN_BLUETOOTH.DEVICENAME = (char *)configCANDoc["BLUETOOTH"]["DEVICENAME"].as();
+ CANConfig->CAN_BLUETOOTH.USE_PIN = configCANDoc["BLUETOOTH"]["USE_PIN"].as();
+ CANConfig->CAN_BLUETOOTH.PIN = (char *)configCANDoc["BLUETOOTH"]["PIN"].as();
+
+ CANConfig->CAN_SPEED_KBPS = configCANDoc["CAN_SPEED_KBPS"].as();
+ CANConfig->CAN_MQTT_TOPIC_NAME = (char *)configCANDoc["CAN_MQTT_TOPIC_NAME"].as();
+ CANConfig->CAN_READONLY_ENABLED = configCANDoc["CAN_READONLY_ENABLED"].as();
+ CANConfig->CAN_SNIFFING_ENABLED = configCANDoc["CAN_SNIFFING_ENABLED"].as();
+ CANConfig->CAN_AUTOPOLL_MODE = (CAN_PollMode)configCANDoc["CAN_AUTOPOLL_MODE"].as();
+ if(CANConfig->CAN_AUTOPOLL_MODE == CAN_PollMode::Auto) {
+ CANConfig->CAN_AUTOPOLL_TIME = configCANDoc["CAN_AUTOPOLL_TIME"].as();
+ }
+
+ canBus_fill_config(configCANDoc, CANConfig);
+
+ config->CAN_CONFIG = CANConfig;
+ }
+}
+
+void saveConfig()
+{
+ DynamicJsonDocument configDoc(MODELS_CONFIG_SIZE);
+ configDoc["STANDALONE_WIFI"] = config->STANDALONE_WIFI;
+
+ if(!config->STANDALONE_WIFI) {
+ configDoc["SSID"] = config->SSID;
+ configDoc["SSID_PASSWORD"] = config->SSID_PASSWORD;
+ configDoc["SSID_STATIC_IP"] = config->SSID_STATIC_IP;
+
+ if(config->SSID_STATIC_IP) {
+ configDoc["SSID_IP"] = config->SSID_IP;
+ configDoc["SSID_SUBNET"] = config->SSID_SUBNET;
+ configDoc["SSID_GATEWAY"] = config->SSID_GATEWAY;
+ configDoc["SSID_PRIMARY_DNS"] = config->SSID_PRIMARY_DNS;
+ configDoc["SSID_SECONDARY_DNS"] = config->SSID_SECONDARY_DNS;
+ }
+ }
+
+ configDoc["MQTT_SERVER"] = config->MQTT_SERVER;
+ configDoc["MQTT_USERNAME"] = config->MQTT_USERNAME;
+ configDoc["MQTT_PASSWORD"] = config->MQTT_PASSWORD;
+ configDoc["MQTT_TOPIC_NAME"] = config->MQTT_TOPIC_NAME;
+ configDoc["MQTT_USE_JSONTABLE"] = config->MQTT_USE_JSONTABLE;
+ configDoc["MQTT_USE_ONETOPIC"] = config->MQTT_USE_ONETOPIC;
+
+ if(config->MQTT_USE_ONETOPIC) {
+ configDoc["MQTT_ONETOPIC_NAME"] = config->MQTT_ONETOPIC_NAME;
+ }
+
+ configDoc["MQTT_PORT"] = config->MQTT_PORT;
+ configDoc["MQTT_DISABLE_LOG_MESSAGES"] = config->MQTT_DISABLE_LOG_MESSAGES;
+ configDoc["MQTT_ENCRYPTED"] = config->MQTT_ENCRYPTED;
+ configDoc["PIN_ENABLE_CONFIG"] = config->PIN_ENABLE_CONFIG;
+ configDoc["HEATING_ENABLED"] = config->HEATING_ENABLED;
+ configDoc["PIN_HEATING"] = config->PIN_HEATING;
+ configDoc["COOLING_ENABLED"] = config->COOLING_ENABLED;
+ configDoc["PIN_COOLING"] = config->PIN_COOLING;
+ configDoc["SG_ENABLED"] = config->SG_ENABLED;
+ configDoc["PIN_SG1"] = config->PIN_SG1;
+ configDoc["PIN_SG2"] = config->PIN_SG2;
+ configDoc["SG_RELAY_HIGH_TRIGGER"] = config->SG_RELAY_HIGH_TRIGGER;
+ configDoc["X10A_ENABLED"] = config->X10A_ENABLED;
+ configDoc["CAN_ENABLED"] = config->CAN_ENABLED;
+ configDoc["SAFETY_ENABLED"] = config->SAFETY_ENABLED;
+ configDoc["PIN_SAFETY"] = config->PIN_SAFETY;
+
+ if(config->X10A_ENABLED) {
+ JsonObject X10AConfig = configDoc.createNestedObject("X10A_CONFIG");
+ X10AConfig["FREQUENCY"] = config->X10A_CONFIG->FREQUENCY;
+ X10AConfig["PIN_RX"] = config->X10A_CONFIG->PIN_RX;
+ X10AConfig["PIN_TX"] = config->X10A_CONFIG->PIN_TX;
+ X10AConfig["X10A_PROTOCOL"] = (uint8_t)config->X10A_CONFIG->X10A_PROTOCOL;
+ X10AConfig["WEBUI_SELECTION_VALUES"] = config->X10A_CONFIG->WEBUI_SELECTION_VALUES;
+
+ JsonArray parameters = X10AConfig.createNestedArray("PARAMETERS");
+ for(size_t i = 0; i < config->X10A_CONFIG->PARAMETERS_LENGTH; i++) {
+ JsonArray parameter = parameters.createNestedArray();
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->registryID);
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->offset);
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->convid);
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->dataSize);
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->dataType);
+ parameter.add(config->X10A_CONFIG->PARAMETERS[i]->label);
+ }
+ }
+
+ if(config->CAN_ENABLED) {
+ JsonObject CANConfig = configDoc.createNestedObject("CAN_CONFIG");
+ CANConfig["CAN_IC"] = (uint8_t)config->CAN_CONFIG->CAN_IC;
+ CANConfig["CAN_BUS"] = (uint8_t)config->CAN_CONFIG->CAN_BUS;
+
+ JsonObject canUART = CANConfig.createNestedObject("UART");
+ canUART["PIN_RX"] = config->CAN_CONFIG->CAN_UART.PIN_RX;
+ canUART["PIN_TX"] = config->CAN_CONFIG->CAN_UART.PIN_TX;
+
+ JsonObject canSPI = CANConfig.createNestedObject("SPI");
+ canSPI["MISO"] = config->CAN_CONFIG->CAN_SPI.PIN_MISO;
+ canSPI["MOSI"] = config->CAN_CONFIG->CAN_SPI.PIN_MOSI;
+ canSPI["SCK"] = config->CAN_CONFIG->CAN_SPI.PIN_SCK;
+ canSPI["CS"] = config->CAN_CONFIG->CAN_SPI.PIN_CS;
+ canSPI["INT"] = config->CAN_CONFIG->CAN_SPI.PIN_INT;
+ canSPI["MHZ"] = config->CAN_CONFIG->CAN_SPI.IC_MHZ;
+
+ JsonObject canBT = CANConfig.createNestedObject("BLUETOOTH");
+ canBT["DEVICENAME"] = config->CAN_CONFIG->CAN_BLUETOOTH.DEVICENAME;
+ canBT["USE_PIN"] = config->CAN_CONFIG->CAN_BLUETOOTH.USE_PIN;
+ canBT["PIN"] = config->CAN_CONFIG->CAN_BLUETOOTH.PIN;
+
+ CANConfig["CAN_SPEED_KBPS"] = config->CAN_CONFIG->CAN_SPEED_KBPS;
+ CANConfig["CAN_MQTT_TOPIC_NAME"] = config->CAN_CONFIG->CAN_MQTT_TOPIC_NAME;
+ CANConfig["CAN_READONLY_ENABLED"] = config->CAN_CONFIG->CAN_READONLY_ENABLED;
+ CANConfig["CAN_SNIFFING_ENABLED"] = config->CAN_CONFIG->CAN_SNIFFING_ENABLED;
+ CANConfig["CAN_AUTOPOLL_MODE"] = (uint8_t)config->CAN_CONFIG->CAN_AUTOPOLL_MODE;
+ if(config->CAN_CONFIG->CAN_AUTOPOLL_MODE == CAN_PollMode::Auto) {
+ CANConfig["CAN_AUTOPOLL_TIME"] = config->CAN_CONFIG->CAN_AUTOPOLL_TIME;
+ }
+
+ JsonArray commands = CANConfig.createNestedArray("COMMANDS");
+ for(size_t i = 0; i < config->CAN_CONFIG->COMMANDS_LENGTH; i++) {
+ JsonArray command = commands.createNestedArray();
+ command.add(config->CAN_CONFIG->COMMANDS[i]->name);
+ command.add(config->CAN_CONFIG->COMMANDS[i]->label);
+
+ JsonArray commandBytes = command.createNestedArray();
+ for (uint8_t j = 0; j < CAN_COMMAND_BYTE_LENGTH; j++) {
+ commandBytes.add(config->CAN_CONFIG->COMMANDS[i]->command[j]);
+ }
+
+ command.add(config->CAN_CONFIG->COMMANDS[i]->id);
+ command.add(config->CAN_CONFIG->COMMANDS[i]->divisor);
+ command.add(config->CAN_CONFIG->COMMANDS[i]->writable);
+ command.add(config->CAN_CONFIG->COMMANDS[i]->unit);
+ command.add(config->CAN_CONFIG->COMMANDS[i]->type);
+
+ if(config->CAN_CONFIG->COMMANDS[i]->valueCodeSize > 0) {
+ JsonObject valueCodeObject = command.createNestedObject();
+
+ for(uint8_t j = 0; j < config->CAN_CONFIG->COMMANDS[i]->valueCodeSize; j++) {
+ valueCodeObject[config->CAN_CONFIG->COMMANDS[i]->valueCode[j]->key] = config->CAN_CONFIG->COMMANDS[i]->valueCode[j]->value;
+ }
+ }
+ }
+ }
+
+ File configFile = LittleFS.open(CONFIG_FILE, FILE_WRITE);
+ serializeJsonPretty(configDoc, Serial);
+ serializeJson(configDoc, configFile);
+ configFile.close();
+}
\ No newline at end of file
diff --git a/src/Config/config.hpp b/src/Config/config.hpp
new file mode 100644
index 00000000..8781b7d5
--- /dev/null
+++ b/src/Config/config.hpp
@@ -0,0 +1,63 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include
+
+#ifdef ARDUINO_ARCH_ESP8266
+#define FILE_READ "r"
+#define FILE_WRITE "w"
+#define FILE_APPEND "a"
+#endif
+
+#define CONFIG_FILE "/config.json"
+#define MODELS_CONFIG_SIZE 1024*10
+
+struct ESPAlthermaConfig
+{
+ bool configStored;
+ bool STANDALONE_WIFI;
+ String SSID;
+ String SSID_PASSWORD;
+ bool SSID_STATIC_IP;
+ String SSID_IP;
+ String SSID_SUBNET;
+ String SSID_GATEWAY;
+ String SSID_PRIMARY_DNS;
+ String SSID_SECONDARY_DNS;
+ String MQTT_SERVER;
+ String MQTT_USERNAME;
+ String MQTT_PASSWORD;
+ bool MQTT_USE_JSONTABLE;
+ bool MQTT_USE_ONETOPIC;
+ String MQTT_TOPIC_NAME;
+ String MQTT_ONETOPIC_NAME;
+ uint16_t MQTT_PORT;
+ bool MQTT_DISABLE_LOG_MESSAGES;
+ bool MQTT_ENCRYPTED;
+ uint8_t PIN_ENABLE_CONFIG;
+ bool X10A_ENABLED;
+ X10A_Config* X10A_CONFIG;
+ bool HEATING_ENABLED;
+ uint8_t PIN_HEATING;
+ bool COOLING_ENABLED;
+ uint8_t PIN_COOLING;
+ bool SG_ENABLED;
+ uint8_t PIN_SG1;
+ uint8_t PIN_SG2;
+ bool SG_RELAY_HIGH_TRIGGER;
+ bool CAN_ENABLED;
+ bool SAFETY_ENABLED;
+ uint8_t PIN_SAFETY;
+ CAN_Config* CAN_CONFIG;
+
+ ~ESPAlthermaConfig();
+};
+
+extern ESPAlthermaConfig* config;
+
+void readConfig();
+
+void saveConfig();
\ No newline at end of file
diff --git a/src/MQTT/mqtt.cpp b/src/MQTT/mqtt.cpp
new file mode 100644
index 00000000..fe6eeb34
--- /dev/null
+++ b/src/MQTT/mqtt.cpp
@@ -0,0 +1,292 @@
+#include "mqtt.hpp"
+
+WiFiClient* espClient;
+PubSubClient* client;
+
+String subscribeHeatingTopic = "";
+String subscribeCoolingTopic = "";
+String subscribeSGTopic = "";
+String subscribeCANTopic = "";
+String subscribeSafetyTopic = "";
+String subscribePowerTopic = "";
+
+String publishHeatingTopic = "";
+String publishCoolingTopic = "";
+String publishSGTopic = "";
+String publishCANTopic = "";
+String publishSafetyTopic = "";
+String publishPowerTopic = "";
+String publishAttrTopic = "";
+String publishLWTTopic = "";
+
+int canTopicLength;
+char jsonbuff[MAX_MSG_SIZE];
+bool blockReconnects;
+uint8_t reconnectionAtempts;
+bool reconnectionInProgress = false;
+unsigned long reconnectStartMillis;
+uint8_t SG_RELAY_ACTIVE_STATE;
+uint8_t SG_RELAY_INACTIVE_STATE;
+
+void initMQTT()
+{
+ if(config->MQTT_ENCRYPTED) {
+ WiFiClientSecure* espClientSecure = new WiFiClientSecure();
+
+ // allow invalid SSL certificates on MQTT
+ espClientSecure->setInsecure();
+ espClientSecure->setTimeout(5);
+
+ espClient = espClientSecure;
+ } else {
+ espClient = new WiFiClient();
+ }
+
+ client = new PubSubClient(*espClient);
+
+ client->setServer(config->MQTT_SERVER.c_str(), config->MQTT_PORT);
+ client->setBufferSize(MAX_MSG_SIZE); // to support large json message
+
+ createEmptyJSONBuffer();
+
+ SG_RELAY_ACTIVE_STATE = (config->SG_RELAY_HIGH_TRIGGER == true) ? HIGH : LOW;
+ SG_RELAY_INACTIVE_STATE = SG_RELAY_ACTIVE_STATE == HIGH ? LOW : HIGH;
+
+ debugSerial.printf("SG Active State: %u\n", SG_RELAY_ACTIVE_STATE);
+ debugSerial.printf("SG Inactive State: %u\n", SG_RELAY_INACTIVE_STATE);
+}
+
+void createEmptyJSONBuffer()
+{
+ if(config->MQTT_USE_JSONTABLE)
+ strcpy(jsonbuff, "[{\0");
+ else
+ strcpy(jsonbuff, "{\0");
+}
+
+// converts to string and add the value to the JSON message
+void updateValues(ParameterDef *labelDef)
+{
+ bool alpha = false;
+ for (size_t j = 0; j < strlen(labelDef->asString); j++) {
+ char c = labelDef->asString[j];
+ if (!isdigit(c) && c!='.' && !(c=='-' && j==0)) {
+ alpha = true;
+ break;
+ }
+ }
+
+ if(config->MQTT_USE_ONETOPIC) {
+ client->publish((config->MQTT_TOPIC_NAME + config->MQTT_ONETOPIC_NAME + labelDef->label).c_str(), labelDef->asString);
+ return;
+ }
+
+ if(alpha) {
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%s\",", labelDef->label.c_str(), labelDef->asString);
+ } else { // number, no quotes
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":%s,", labelDef->label.c_str(), labelDef->asString);
+ }
+}
+
+void sendValues()
+{
+ debugSerial.printf("Sending values in MQTT.\n");
+#ifdef ARDUINO_M5Stick_C_Plus2
+ //Add Power values
+ // getBatteryVoltage returns battery voltage [mV] as an int16_t
+ float batteryVoltage = (float) M5.Power.getBatteryVoltage() / 1000; // convert to V as a float
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%.3gV\",", "M5BatV", batteryVoltage);
+#elif ARDUINO_M5Stick_C
+ // add M5 APX values
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%.3gV\",\"%s\":\"%gmA\",", "M5VIN", M5.Axp.GetVinVoltage(),"M5AmpIn", M5.Axp.GetVinCurrent());
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%.3gV\",\"%s\":\"%gmA\",", "M5BatV", M5.Axp.GetBatVoltage(),"M5BatCur", M5.Axp.GetBatCurrent());
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%.3gmW\",", "M5BatPwr", M5.Axp.GetBatPower());
+#endif
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%ddBm\",", "WifiRSSI", WiFi.RSSI());
+ snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%d\",", "FreeMem", ESP.getFreeHeap());
+
+ jsonbuff[strlen(jsonbuff) - 1] = '}';
+
+ if(config->MQTT_USE_JSONTABLE)
+ strcat(jsonbuff,"]");
+
+ client->publish(publishAttrTopic.c_str(), jsonbuff);
+
+ createEmptyJSONBuffer();
+}
+
+void connectMqtt()
+{
+ if(config->MQTT_SERVER.compareTo("127.0.0.1") == 0 || config->MQTT_SERVER.compareTo("localhost") == 0) {
+ blockReconnects = true;
+ debugSerial.print("Found loopback MQTT server, skiping connection...\n");
+ return;
+ }
+
+ subscribeHeatingTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_SUB_HEATING;
+ subscribeCoolingTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_SUB_COOLING;
+ subscribeSGTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_SUB_SG;
+ subscribePowerTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_SUB_POWER;
+ subscribeSafetyTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_SUB_SAFETY;
+
+ publishHeatingTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_HEATING;
+ publishCoolingTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_COOLING;
+ publishSGTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_SG;
+ publishSafetyTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_SAFETY;
+ publishPowerTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_POWER;
+ publishAttrTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_ATTR;
+ publishLWTTopic = config->MQTT_TOPIC_NAME + MQTT_TOPIC_PUB_LWT;
+
+ if(config->CAN_ENABLED) {
+ subscribeCANTopic = config->MQTT_TOPIC_NAME + "SET/" + config->CAN_CONFIG->CAN_MQTT_TOPIC_NAME;
+ canTopicLength = subscribeCANTopic.length();
+
+ if(config->MQTT_USE_ONETOPIC) {
+ publishCANTopic = config->MQTT_TOPIC_NAME + config->MQTT_ONETOPIC_NAME + config->CAN_CONFIG->CAN_MQTT_TOPIC_NAME;
+ } else {
+ publishCANTopic = config->MQTT_TOPIC_NAME + config->CAN_CONFIG->CAN_MQTT_TOPIC_NAME;
+ }
+ }
+
+ reconnectMqtt();
+}
+
+void reconnectMqtt()
+{
+ //in case loopback as server is set, skip connecting (debug purpose)
+ if(blockReconnects) {
+ return;
+ }
+
+ if(reconnectionInProgress) {
+ if(millis() - reconnectStartMillis >= 5000) {
+ reconnectionInProgress = false;
+ if (reconnectionAtempts++ == 100) {
+ debugSerial.printf("Tried for 500 sec, rebooting now.");
+ restart_board();
+ }
+ }
+ return;
+ }
+
+ // debug wifi connection info
+ String id = "Attempting MQTT connection with ID: ESPAltherma-";
+ id += WiFi.macAddress().substring(6);
+ debugSerial.println(id);
+
+ // try to connect
+ if (client->connect(id.c_str(), config->MQTT_USERNAME.c_str(), config->MQTT_PASSWORD.c_str(), publishLWTTopic.c_str(), 0, true, "Offline")) {
+ reconnectionInProgress = false;
+ reconnectionAtempts = 0;
+ debugSerial.println("connected!");
+
+ // TODO update homeassistant config to publish correct informations
+ client->publish("homeassistant/sensor/espAltherma/config", "{\"name\":\"AlthermaSensors\",\"stat_t\":\"~/STATESENS\",\"avty_t\":\"~/LWT\",\"pl_avail\":\"Online\",\"pl_not_avail\":\"Offline\",\"uniq_id\":\"espaltherma\",\"device\":{\"identifiers\":[\"ESPAltherma\"]}, \"~\":\"espaltherma\",\"json_attr_t\":\"~/ATTR\"}", true);
+ client->publish(publishLWTTopic.c_str(), "Online", true);
+ client->publish("homeassistant/switch/espAltherma/config", "{\"name\":\"Altherma Heating\",\"cmd_t\":\"~/SET/HEATING\",\"stat_t\":\"~/STATE/HEATING\",\"pl_off\":\"OFF\",\"pl_on\":\"ON\",\"~\":\"espaltherma\"}", true);
+ client->publish("homeassistant/switch/espAltherma/config", "{\"name\":\"Altherma Cooling\",\"cmd_t\":\"~/SET/COOLING\",\"stat_t\":\"~/STATE/COOLING\",\"pl_off\":\"OFF\",\"pl_on\":\"ON\",\"~\":\"espaltherma\"}", true);
+ client->publish("homeassistant/switch/espAltherma/config", "{\"name\":\"Altherma SmartGrid\",\"cmd_t\":\"~/SET/SG\",\"stat_t\":\"~/STATE/SG\",\"pl_off\":\"OFF\",\"pl_on\":\"ON\",\"~\":\"espaltherma\"}", true);
+
+ // subscribe
+ client->subscribe(subscribeHeatingTopic.c_str());
+ client->subscribe(subscribeCoolingTopic.c_str());
+ client->subscribe(subscribePowerTopic.c_str());
+
+ debugSerial.println("Subscribed to following topics:");
+ debugSerial.println(subscribeHeatingTopic);
+ debugSerial.println(subscribeCoolingTopic);
+ debugSerial.println(subscribePowerTopic);
+
+ if(config->SG_ENABLED) {
+ // Smart Grid
+ client->publish("homeassistant/select/espAltherma/sg/config", "{\"availability\":[{\"topic\":\"espaltherma/LWT\",\"payload_available\":\"Online\",\"payload_not_available\":\"Offline\"}],\"availability_mode\":\"all\",\"unique_id\":\"espaltherma_sg\",\"device\":{\"identifiers\":[\"ESPAltherma\"],\"manufacturer\":\"ESPAltherma\",\"model\":\"M5StickC PLUS ESP32-PICO\",\"name\":\"ESPAltherma\"},\"icon\":\"mdi:solar-power\",\"name\":\"EspAltherma Smart Grid\",\"command_topic\":\"espaltherma/sg/set\",\"command_template\":\"{% if value == 'Free Running' %} 0 {% elif value == 'Forced Off' %} 1 {% elif value == 'Recommended On' %} 2 {% elif value == 'Forced On' %} 3 {% else %} 0 {% endif %}\",\"options\":[\"Free Running\",\"Forced Off\",\"Recommended On\",\"Forced On\"],\"state_topic\":\"espaltherma/sg/state\",\"value_template\":\"{% set mapper = { '0':'Free Running', '1':'Forced Off', '2':'Recommended On', '3':'Forced On' } %} {% set word = mapper[value] %} {{ word }}\"}", true);
+ client->subscribe(subscribeSGTopic.c_str());
+
+ debugSerial.println(subscribeSGTopic);
+ } else {
+ // Publish empty retained message so discovered entities are removed from HA
+ client->publish("homeassistant/select/espAltherma/sg/config", "", true);
+ }
+
+ if(config->CAN_ENABLED) {
+ client->subscribe((subscribeCANTopic + "#").c_str());
+ debugSerial.println(subscribeCANTopic);
+ }
+
+ if(config->SAFETY_ENABLED) {
+ client->publish("homeassistant/switch/espAltherma/safety/config", "{\"name\":\"Altherma Safety\",\"cmd_t\":\"~/SET/SAFETY\",\"stat_t\":\"~/STATE/SAFETY\",\"pl_off\":\"0\",\"pl_on\":\"1\",\"~\":\"espaltherma\"}", true);
+ client->subscribe(subscribeSafetyTopic.c_str());
+ debugSerial.println(subscribeSafetyTopic);
+ }
+ } else {
+ debugSerial.printf("failed, rc=%d, try again in 5 seconds", client->state());
+ reconnectionInProgress = true;
+ reconnectStartMillis = millis();
+ }
+}
+
+MQTTSubscribeTopic getTopic(const char* topic)
+{
+ if (config->HEATING_ENABLED && subscribeHeatingTopic == topic) {
+ return MQTTSubscribeTopic::Heating;
+ } else if (config->COOLING_ENABLED && subscribeCoolingTopic == topic) {
+ return MQTTSubscribeTopic::Cooling;
+ } else if (subscribePowerTopic == topic) {
+ return MQTTSubscribeTopic::Power;
+ } else if (config->SG_ENABLED && subscribeSGTopic == topic) {
+ return MQTTSubscribeTopic::SmartGrid;
+ } else if (config->CAN_ENABLED && String(topic).startsWith(subscribeCANTopic)) {
+ return MQTTSubscribeTopic::CAN;
+ } else if (config->SAFETY_ENABLED && subscribeSafetyTopic == topic) {
+ return MQTTSubscribeTopic::Safety;
+ }
+
+ return MQTTSubscribeTopic(0);
+}
+
+void mqttPublish(const MQTTPublishTopic topic, const char* payload)
+{
+ mqttPublish(topic, payload, nullptr, false);
+}
+
+void mqttPublish(const MQTTPublishTopic topic, const char* payload, const boolean retained)
+{
+ mqttPublish(topic, payload, nullptr, retained);
+}
+
+void mqttPublish(const MQTTPublishTopic topic, const char* payload, const char* label, const boolean retained)
+{
+ if (config->HEATING_ENABLED && MQTTPublishTopic::Heating == topic) {
+ client->publish(publishHeatingTopic.c_str(), payload, retained);
+ } else if (config->COOLING_ENABLED && MQTTPublishTopic::Cooling == topic) {
+ client->publish(publishCoolingTopic.c_str(), payload, retained);
+ } else if (MQTTPublishTopic::Power == topic) {
+ client->publish(publishPowerTopic.c_str(), payload, retained);
+ } else if (config->SG_ENABLED && MQTTPublishTopic::SmartGrid == topic) {
+ client->publish(publishSGTopic.c_str(), payload, retained);
+ } else if (config->SAFETY_ENABLED && MQTTPublishTopic::Safety == topic) {
+ client->publish(publishSafetyTopic.c_str(), payload, retained);
+ } else if (config->CAN_ENABLED && MQTTPublishTopic::CAN == topic) {
+ client->publish((publishCANTopic + label).c_str(), payload);
+ }
+}
+
+int mqttCANTopicLength()
+{
+ return canTopicLength;
+}
+
+bool mqttConnected()
+{
+ return client->connected();
+}
+
+void mqttLoop()
+{
+ client->loop();
+}
+
+void mqttSetCallback(MQTT_CALLBACK_SIGNATURE)
+{
+ client->setCallback(callback);
+}
\ No newline at end of file
diff --git a/src/MQTT/mqtt.hpp b/src/MQTT/mqtt.hpp
new file mode 100644
index 00000000..feb7fa88
--- /dev/null
+++ b/src/MQTT/mqtt.hpp
@@ -0,0 +1,76 @@
+#pragma once
+
+#include
+#include
+#include "Config/config.hpp"
+#include "persistence.hpp"
+#include "restart.hpp"
+
+#define MQTT_TOPIC_SUB_HEATING "SET/HEATING"
+#define MQTT_TOPIC_SUB_COOLING "SET/COOLING"
+#define MQTT_TOPIC_SUB_SAFETY "SET/SAFETY"
+#define MQTT_TOPIC_SUB_SG "SET/SG"
+#define MQTT_TOPIC_SUB_POWER "SET/POWER"
+
+#define MQTT_TOPIC_PUB_HEATING "STATE/HEATING"
+#define MQTT_TOPIC_PUB_COOLING "STATE/COOLING"
+#define MQTT_TOPIC_PUB_SAFETY "STATE/SAFETY"
+#define MQTT_TOPIC_PUB_SG "STATE/SG"
+#define MQTT_TOPIC_PUB_POWER "STATE/POWER"
+#define MQTT_TOPIC_PUB_ATTR "ATTR"
+#define MQTT_TOPIC_PUB_LWT "LWT"
+
+#define EEPROM_CHK 1
+#define EEPROM_STATE 0
+
+#define MAX_MSG_SIZE 7120 // max size of the json message sent in mqtt
+
+extern char jsonbuff[MAX_MSG_SIZE];
+extern uint8_t SG_RELAY_ACTIVE_STATE;
+extern uint8_t SG_RELAY_INACTIVE_STATE;
+
+enum class MQTTSubscribeTopic : uint8_t
+{
+ Heating = 1,
+ Cooling,
+ SmartGrid,
+ CAN,
+ Safety,
+ Power
+};
+
+enum class MQTTPublishTopic : uint8_t
+{
+ Heating = 1,
+ Cooling,
+ SmartGrid,
+ CAN,
+ Safety,
+ Power
+};
+
+void initMQTT();
+
+void createEmptyJSONBuffer();
+
+void updateValues(ParameterDef *labelDef);
+
+void sendValues();
+
+void connectMqtt();
+
+void reconnectMqtt();
+
+bool mqttConnected();
+
+void mqttLoop();
+
+MQTTSubscribeTopic getTopic(const char* topic);
+
+void mqttPublish(const MQTTPublishTopic topic, const char* payload);
+void mqttPublish(const MQTTPublishTopic topic, const char* payload, const boolean retained);
+void mqttPublish(const MQTTPublishTopic topic, const char* payload, const char* label, const boolean retained);
+
+int mqttCANTopicLength();
+
+void mqttSetCallback(MQTT_CALLBACK_SIGNATURE);
\ No newline at end of file
diff --git a/src/MQTT/mqttCallbacks.cpp b/src/MQTT/mqttCallbacks.cpp
new file mode 100644
index 00000000..9a914712
--- /dev/null
+++ b/src/MQTT/mqttCallbacks.cpp
@@ -0,0 +1,148 @@
+#include "mqttCallbacks.hpp"
+
+std::function callbackCAN;
+
+void callbackHeating(byte *payload, unsigned int length)
+{
+ payload[length] = '\0';
+
+ // is it ON or OFF?
+ // ok I'm not super proud of this, but it works :p
+ if (payload[1] == 'F') {
+ // turn off
+ digitalWrite(config->PIN_HEATING, HIGH);
+ savePersistence();
+ mqttPublish(MQTTPublishTopic::Heating, "OFF", true);
+ debugSerial.println("Heating turned OFF");
+ } else if (payload[1] == 'N') {
+ // turn on
+ digitalWrite(config->PIN_HEATING, LOW);
+ savePersistence();
+ mqttPublish(MQTTPublishTopic::Heating, "ON", true);
+ debugSerial.println("Heating turned ON");
+ } else {
+ debugSerial.printf("Unknown message: %s\n", payload);
+ }
+}
+
+void callbackPower(byte *payload, unsigned int length)
+{
+ payload[length] = '\0';
+
+ if (payload[0] == 'R') {
+ // R(eset/eboot)
+ debugSerial.println("Rebooting");
+ delay(100);
+ restart_board();
+ } else {
+ debugSerial.printf("Unknown message: %s\n", payload);
+ }
+}
+
+void callbackCooling(byte *payload, unsigned int length)
+{
+ payload[length] = '\0';
+
+ // is it ON or OFF?
+ // ok I'm not super proud of this, but it works :p
+ if (payload[1] == 'F') {
+ // turn off
+ digitalWrite(config->PIN_COOLING, HIGH);
+ savePersistence();
+ mqttPublish(MQTTPublishTopic::Cooling, "OFF", true);
+ debugSerial.println("Cooling turned OFF");
+ } else if (payload[1] == 'N') {
+ //turn on
+ digitalWrite(config->PIN_COOLING, LOW);
+ savePersistence();
+ mqttPublish(MQTTPublishTopic::Cooling, "ON", true);
+ debugSerial.println("Cooling turned ON");
+ } else {
+ debugSerial.printf("Unknown message: %s\n", payload);
+ }
+}
+
+// Smartgrid callbacks
+void callbackSg(byte *payload, unsigned int length)
+{
+ payload[length] = '\0';
+
+ if (payload[0] == '0') {
+ // set SG 0 mode => SG1 = INACTIVE, SG2 = INACTIVE
+ digitalWrite(config->PIN_SG1, SG_RELAY_INACTIVE_STATE);
+ digitalWrite(config->PIN_SG2, SG_RELAY_INACTIVE_STATE);
+ mqttPublish(MQTTPublishTopic::SmartGrid, "0");
+ debugSerial.println("Set SG mode to 0 - Normal operation");
+ } else if (payload[0] == '1') {
+ // set SG 1 mode => SG1 = INACTIVE, SG2 = ACTIVE
+ digitalWrite(config->PIN_SG1, SG_RELAY_INACTIVE_STATE);
+ digitalWrite(config->PIN_SG2, SG_RELAY_ACTIVE_STATE);
+ mqttPublish(MQTTPublishTopic::SmartGrid, "1");
+ debugSerial.println("Set SG mode to 1 - Forced OFF");
+ } else if (payload[0] == '2') {
+ // set SG 2 mode => SG1 = ACTIVE, SG2 = INACTIVE
+ digitalWrite(config->PIN_SG1, SG_RELAY_ACTIVE_STATE);
+ digitalWrite(config->PIN_SG2, SG_RELAY_INACTIVE_STATE);
+ mqttPublish(MQTTPublishTopic::SmartGrid, "2");
+ debugSerial.println("Set SG mode to 2 - Recommended ON");
+ } else if (payload[0] == '3') {
+ // set SG 3 mode => SG1 = ACTIVE, SG2 = ACTIVE
+ digitalWrite(config->PIN_SG1, SG_RELAY_ACTIVE_STATE);
+ digitalWrite(config->PIN_SG2, SG_RELAY_ACTIVE_STATE);
+ mqttPublish(MQTTPublishTopic::SmartGrid, "3");
+ debugSerial.println("Set SG mode to 3 - Forced ON");
+ } else {
+ debugSerial.printf("Unknown message: %s\n", payload);
+ }
+}
+
+void callbackSafety(byte *payload, unsigned int length)
+{
+ payload[length] = '\0';
+
+ if (payload[0] == '0') {
+ // Set Safety relay to OFF
+ digitalWrite(config->PIN_SAFETY, LOW);
+ mqttPublish(MQTTPublishTopic::Safety, "0", true);
+ } else if (payload[0] == '1') {
+ // Set Safety relay to ON
+ digitalWrite(config->PIN_SAFETY, HIGH);
+ mqttPublish(MQTTPublishTopic::Safety, "1", true);
+ } else {
+ Serial.printf("Unknown message: %s\n", payload);
+ }
+}
+
+void callback(char *topic, byte *payload, unsigned int length)
+{
+ char payloadText[length+1];
+ for (int i=0;i callbackCAN;
+
+void mqttInitCallbacks();
\ No newline at end of file
diff --git a/src/WebUI/semanticVersion.cpp b/src/WebUI/semanticVersion.cpp
new file mode 100644
index 00000000..6376a7dd
--- /dev/null
+++ b/src/WebUI/semanticVersion.cpp
@@ -0,0 +1,74 @@
+#include "semanticVersion.hpp"
+
+void SemanticVersion::parseVersion()
+{
+ int8_t indexEnd = version.indexOf('.', index);
+
+ while(index < indexEnd) {
+ if(isdigit(version[index])) {
+ break;
+ }
+ index++;
+ }
+
+ Major = version.substring(index, indexEnd).toInt();
+
+ index = indexEnd + 1;
+ indexEnd = version.indexOf('.', index);
+ Minor = version.substring(index, indexEnd).toInt();
+
+ index = indexEnd + 1;
+ indexEnd = version.indexOf('-', index);
+
+ if(indexEnd == -1) {
+ indexEnd = versionLength - 1;
+ hasBuildNr = false;
+ hasCommitNr = false;
+ }
+
+ Patch = version.substring(index, indexEnd).toInt();
+
+ index = indexEnd + 1;
+}
+
+void SemanticVersion::parseBuild()
+{
+ int8_t indexEnd = version.indexOf('-', index);
+
+ if(indexEnd == -1) {
+ indexEnd = versionLength - 1;
+ hasCommitNr = false;
+ }
+
+ Build = version.substring(index, indexEnd).toInt();
+
+ index = indexEnd + 1;
+}
+
+void SemanticVersion::parseExtra()
+{
+ version.substring(index).toCharArray(Extra, sizeof(Extra));
+}
+
+// v1.0.4-14-g2414721
+SemanticVersion::SemanticVersion(const String _version) : version(_version), versionLength(_version.length())
+{
+ if(versionLength == 0 || version[0] != 'v') {
+ hasVersionNr = false;
+ hasBuildNr = false;
+ parseExtra();
+ return;
+ }
+
+ parseVersion();
+
+ if(!hasBuildNr)
+ return;
+
+ parseBuild();
+
+ if(!hasCommitNr)
+ return;
+
+ parseExtra();
+}
\ No newline at end of file
diff --git a/src/WebUI/semanticVersion.hpp b/src/WebUI/semanticVersion.hpp
new file mode 100644
index 00000000..04036855
--- /dev/null
+++ b/src/WebUI/semanticVersion.hpp
@@ -0,0 +1,28 @@
+#pragma once
+
+#include "arduinoC.hpp"
+
+class SemanticVersion
+{
+private:
+ uint8_t index = 0;
+ const String version;
+ const uint8_t versionLength;
+
+ void parseVersion();
+ void parseBuild();
+ void parseExtra();
+
+public:
+ uint8_t Major = 0;
+ uint8_t Minor = 0;
+ uint16_t Patch = 0;
+ uint16_t Build = 0;
+ char Extra[16] = "";
+
+ bool hasVersionNr = true;
+ bool hasBuildNr = true;
+ bool hasCommitNr = true;
+
+ SemanticVersion(const String version);
+};
\ No newline at end of file
diff --git a/src/WebUI/webui.cpp b/src/WebUI/webui.cpp
new file mode 100644
index 00000000..ca21922a
--- /dev/null
+++ b/src/WebUI/webui.cpp
@@ -0,0 +1,1120 @@
+#include "webui.hpp"
+
+String lastUploadFileName;
+bool webOTAIsBusy = false;
+bool updateVersionValid = false;
+LoopRunStatus mainLoopStatus = LoopRunStatus::Running;
+
+// Set web server port number to 80
+AsyncWebServer server(80);
+
+bool formatDefaultFS()
+{
+ LittleFS.end();
+ bool result = LittleFS.format();
+
+ if(!result)
+ return false;
+
+ LittleFS.begin();
+ File file = LittleFS_open(MODELS_FILE, FILE_WRITE);
+ file.print("[]");
+ file.close();
+
+ file = LittleFS_open(CAN_COMMANDS_FILE, FILE_WRITE);
+ file.print("[]");
+ file.close();
+
+ resetPersistence();
+
+ return true;
+}
+
+void onWifiLoadNetworks(AsyncWebServerRequest *request)
+{
+ if(wifiLoadState != NotLoading) {
+ request->send(202, "text/plain", "Wifi scan in progress");
+ return;
+ }
+
+ wifiLoadState = Pending;
+
+ request->send(200, "application/json", "OK");
+}
+
+void onWifiLoadFinished(AsyncWebServerRequest *request)
+{
+ if(wifiLoadState == NotLoading) {
+ request->send(503, "text/plain", "No scan in progress");
+ return;
+ }
+
+ if(wifiLoadState == Loading || wifiLoadState == Pending) {
+ request->send(503, "text/plain", "Wifi scan not finished");
+ return;
+ }
+
+ request->send(200, "application/json", wifiLoadResponse);
+ wifiLoadResponse = "";
+
+ wifiLoadState = NotLoading;
+}
+
+void onLoadBoardInfo(AsyncWebServerRequest *request)
+{
+ String response = "{";
+ response.concat(JSON_BOARD_DEFAULTS);
+ response += ",\"Version\": \"";
+
+ #ifdef ARDUINO_ARCH_ESP32
+ esp_app_desc_t app_info;
+ esp_ota_get_partition_description(esp_ota_get_running_partition(), &app_info);
+
+ SemanticVersion version(app_info.version);
+
+ char versionText[48] = "";
+
+ if(version.hasVersionNr) {
+ snprintf(versionText + strlen(versionText), sizeof(versionText) - strlen(versionText), "%i.%i.%i", version.Major, version.Minor, version.Patch);
+
+ if(version.hasBuildNr || version.hasCommitNr) {
+ strncat(versionText, "-", sizeof(versionText) - strlen(versionText));
+ }
+ }
+
+ if(version.hasBuildNr) {
+ snprintf(versionText + strlen(versionText), sizeof(versionText) - strlen(versionText), "%i-", version.Build);
+
+ if(version.hasCommitNr) {
+ strncat(versionText, "-", sizeof(versionText) - strlen(versionText));
+ }
+ }
+
+ if(version.hasCommitNr) {
+ snprintf(versionText + strlen(versionText), sizeof(versionText) - strlen(versionText), "%s", version.Extra);
+ }
+
+ response.concat(versionText);
+ #endif
+
+ response += "\"}";
+
+ request->send(200, "application/json", response);
+}
+
+void onIndex(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response = request->beginResponse_P(200, "text/html", index_html_gz, index_html_gz_len);
+ response->addHeader("Content-Encoding", "gzip");
+ request->send(response);
+}
+
+void onRequestPicoCSS(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response = request->beginResponse_P(200, "text/css", pico_min_css_gz, pico_min_css_gz_len);
+ response->addHeader("Content-Encoding", "gzip");
+ request->send(response);
+}
+
+void onRequestMainCSS(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response = request->beginResponse_P(200, "text/css", main_css_gz, main_css_gz_len);
+ response->addHeader("Content-Encoding", "gzip");
+ request->send(response);
+}
+
+void onRequestMainJS(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response = request->beginResponse_P(200, "text/javascript", main_js_gz, main_js_gz_len);
+ response->addHeader("Content-Encoding", "gzip");
+ request->send(response);
+}
+
+void onRequestMD5JS(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response = request->beginResponse_P(200, "text/javascript", md5_min_js_gz, md5_min_js_gz_len);
+ response->addHeader("Content-Encoding", "gzip");
+ request->send(response);
+}
+
+void onFormat(AsyncWebServerRequest *request)
+{
+ bool result = formatDefaultFS();
+
+ request->onDisconnect([]()
+ {
+ restart_board();
+ });
+
+ request->send(200, "text/javascript", String(result ? "OK" : "FAILED"));
+}
+
+void onLoadModels(AsyncWebServerRequest *request)
+{
+ request->send(LittleFS, MODELS_FILE, "text/json");
+}
+
+void onLoadCommands(AsyncWebServerRequest *request)
+{
+ request->send(LittleFS, CAN_COMMANDS_FILE, "text/json");
+}
+
+void handleFileUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t* data, size_t len, bool final)
+{
+ String fsFilename;
+
+ if (!index)
+ {
+ do
+ {
+ fsFilename = "/P" + String(millis()) + ".json";
+ } while (LittleFS.exists(fsFilename));
+
+ // open the file on first call and store the file handle in the request object
+ request->_tempFile = LittleFS.open(fsFilename, "w");
+ debugSerial.printf("Upload Start: %s\n", filename.c_str());
+ }
+
+ if (len)
+ {
+ // stream the incoming chunk to the opened file
+ request->_tempFile.write(data, len);
+ debugSerial.printf("Writing file: %s index=%i len=%i\n", filename.c_str(), index, len);
+ }
+
+ if (final)
+ {
+ lastUploadFileName = "/" + String(request->_tempFile.name());
+ debugSerial.printf("Upload Complete: %s, size: %i\n", filename.c_str(), index + len);
+
+ // close the file handle as the upload is now done
+ request->_tempFile.close();
+
+ // minimize json file
+ File modelsFile = LittleFS.open(lastUploadFileName, FILE_READ);
+ DynamicJsonDocument modelsDoc(MODEL_DEFINITION_UPLOAD_SIZE);
+ deserializeJson(modelsDoc, modelsFile);
+ modelsFile.close();
+
+ modelsFile = LittleFS.open(lastUploadFileName, FILE_WRITE);
+ serializeJson(modelsDoc, modelsFile);
+ size_t newFileSize = modelsFile.size();
+ modelsFile.close();
+
+ debugSerial.printf("JSON Minify Complete: %s, new size: %i\n", lastUploadFileName.c_str(), newFileSize);
+ }
+}
+
+void onUploadX10AFile(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("file", true, true))
+ {
+ request->send(422, "text/plain", "Missing X10A file");
+ return;
+ }
+
+ String fsFilename = lastUploadFileName;
+ debugSerial.printf("Found LittleFS Filename: %s\n", fsFilename.c_str());
+
+ File modelsFile = LittleFS.open(MODELS_FILE, FILE_READ);
+ DynamicJsonDocument modelsDoc(MODELS_DOC_SIZE);
+ deserializeJson(modelsDoc, modelsFile);
+ JsonArray modelsDocArr = modelsDoc.as();
+ modelsFile.close();
+
+ File uploadFileFS = LittleFS.open(fsFilename, FILE_READ);
+ DynamicJsonDocument uploadDoc(MODEL_DEFINITION_DOC_SIZE);
+ deserializeJson(uploadDoc, uploadFileFS);
+ uploadFileFS.close();
+
+ bool newModel = true;
+ for (JsonObject model : modelsDocArr)
+ {
+ if(strcmp(model["Model"].as(), uploadDoc["Model"].as()) == 0)
+ {
+ debugSerial.printf("Found existing Model: %s\n", model["Model"].as());
+
+ newModel = false;
+
+ bool existingLanguage = false;
+ for (JsonPair kv : model["Files"].as())
+ {
+ if(strcmp(kv.key().c_str(), uploadDoc["Language"].as()) == 0)
+ {
+ debugSerial.printf("Found existing Model file: %s\n", kv.key().c_str());
+ fsFilename = kv.value().as();
+ existingLanguage = true;
+ break;
+ }
+ }
+
+ if(!existingLanguage)
+ {
+ debugSerial.printf("add new language to existing Model file: %s\n", uploadDoc["Language"].as());
+ model["Files"][uploadDoc["Language"].as()] = fsFilename;
+ }
+ }
+ }
+
+ if(newModel)
+ {
+ debugSerial.printf("Found new Model: %s\n", uploadDoc["Model"].as());
+
+ JsonObject newModelObect = modelsDocArr.createNestedObject();
+ newModelObect["Model"] = uploadDoc["Model"].as();
+ newModelObect["Files"][uploadDoc["Language"].as()] = fsFilename;
+ }
+
+ serializeJson(modelsDoc, Serial);
+
+ modelsFile = LittleFS.open(MODELS_FILE, FILE_WRITE);
+ serializeJson(modelsDoc, modelsFile);
+ modelsFile.close();
+
+ request->send(200);
+}
+
+void onUploadConfigFile(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("file", true, true))
+ {
+ request->send(422, "text/plain", "Missing config file");
+ return;
+ }
+
+ String fsFilename = lastUploadFileName;
+ debugSerial.printf("Found LittleFS Filename: %s\n", fsFilename.c_str());
+
+ if(LittleFS.exists(CONFIG_FILE))
+ {
+ LittleFS.remove(CONFIG_FILE);
+ }
+
+ LittleFS.rename(lastUploadFileName, CONFIG_FILE);
+
+ request->onDisconnect([]()
+ {
+ restart_board();
+ });
+
+ request->send(200);
+}
+
+void onLoadValuesResult(AsyncWebServerRequest *request)
+{
+ if(valueX10ALoadState == NotLoading)
+ {
+ request->send(503, "text/plain", "No values loading in progress");
+ return;
+ }
+
+ if(valueX10ALoadState == Loading || valueX10ALoadState == Pending)
+ {
+ request->send(503, "text/plain", "Values loading not finished");
+ return;
+ }
+
+ request->send(200, "application/json", valueX10ALoadResponse);
+ valueX10ALoadResponse = "";
+
+ valueX10ALoadState = NotLoading;
+}
+
+bool handleX10A(AsyncWebServerRequest *request, X10A_Config** X10AConfigPointer)
+{
+ if(!request->hasParam("pin_rx", true) || !request->hasParam("pin_tx", true) || !request->hasParam("x10a_protocol", true) || !request->hasParam("frequency", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for X10A");
+ return false;
+ }
+
+ X10A_Config* X10AConfig = new X10A_Config();
+ *X10AConfigPointer = X10AConfig;
+
+ X10AConfig->PIN_RX = request->getParam("pin_rx", true)->value().toInt();
+ X10AConfig->PIN_TX = request->getParam("pin_tx", true)->value().toInt();
+ X10AConfig->X10A_PROTOCOL = (X10AProtocol)request->getParam("x10a_protocol", true)->value().toInt();
+ X10AConfig->FREQUENCY = request->getParam("frequency", true)->value().toInt();
+
+ if(request->hasParam("definedParameters", true))
+ {
+ DynamicJsonDocument jsonParameters(MODELS_CONFIG_SIZE);
+ deserializeJson(jsonParameters, request->getParam("definedParameters", true)->value());
+ JsonArray parametersArray = jsonParameters.as();
+
+ X10AConfig->PARAMETERS_LENGTH = parametersArray.size();
+ X10AConfig->PARAMETERS = new ParameterDef*[X10AConfig->PARAMETERS_LENGTH];
+
+ int counter = 0;
+ for (JsonArray value : parametersArray)
+ {
+ X10AConfig->PARAMETERS[counter] = new ParameterDef(
+ value[0].as(),
+ value[1].as(),
+ value[2].as(),
+ value[3].as(),
+ value[4].as(),
+ value[5]);
+ counter++;
+ }
+ }
+ else
+ {
+ X10AConfig->PARAMETERS_LENGTH = 0;
+ X10AConfig->PARAMETERS = nullptr;
+ }
+
+ StaticJsonDocument webuiSelectionValues;
+ webuiSelectionValues["model"] = (char *)request->getParam("model", true)->value().c_str();
+ webuiSelectionValues["language"] = (char *)request->getParam("language", true)->value().c_str();
+ webuiSelectionValues["presetParameters"] = (char *)request->getParam("presetParameters", true)->value().c_str();
+
+ String serializedWebuiSelectionValues;
+ serializeJson(webuiSelectionValues, serializedWebuiSelectionValues);
+ X10AConfig->WEBUI_SELECTION_VALUES = (char *)serializedWebuiSelectionValues.c_str();
+
+ return true;
+}
+
+void onLoadValues(AsyncWebServerRequest *request)
+{
+ if(valueX10ALoadState != NotLoading) {
+ request->send(202, "text/plain", "Value loading in progress");
+ return;
+ }
+
+ if(!handleX10A(request, &webuiScanX10ARegisterConfig)) {
+ return;
+ }
+
+ valueX10ALoadState = Pending;
+
+ request->send(200, "application/json", "OK");
+}
+
+void onLoadModel(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("modelFile", true))
+ {
+ request->send(422, "text/plain", "Missing model file");
+ return;
+ }
+
+ String modelFile = request->getParam("modelFile", true)->value();
+
+ debugSerial.print("Found model file: ");
+ debugSerial.println(modelFile);
+
+ if(!LittleFS.exists(modelFile))
+ {
+ request->send(400, "text/plain", "Model file not found");
+ return;
+ }
+
+ request->send(LittleFS, modelFile, "text/json");
+}
+
+void onLoadCommand(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("commandFile", true))
+ {
+ request->send(422, "text/plain", "Missing command file");
+ return;
+ }
+
+ String commandFile = request->getParam("commandFile", true)->value();
+
+ debugSerial.print("Found command file: ");
+ debugSerial.println(commandFile);
+
+ if(!LittleFS.exists(commandFile))
+ {
+ request->send(400, "text/plain", "Command file not found");
+ return;
+ }
+
+ request->send(LittleFS, commandFile, "text/json");
+}
+
+void onLoadConfig(AsyncWebServerRequest *request)
+{
+ if(!LittleFS.exists(CONFIG_FILE))
+ {
+ request->send(200, "text/json", "{}");
+ return;
+ }
+
+ File configFile = LittleFS.open(CONFIG_FILE, FILE_READ);
+ size_t configFileSize = configFile.size();
+ configFile.close();
+
+ if(configFileSize == 0)
+ {
+ request->send(200, "text/json", "{}");
+ return;
+ }
+
+ request->send(LittleFS, CONFIG_FILE, "text/json");
+}
+
+void onExportConfig(AsyncWebServerRequest *request)
+{
+ AsyncWebServerResponse *response;
+
+ if(!LittleFS.exists(CONFIG_FILE))
+ {
+ response = request->beginResponse(200, "text/json", "{}");
+ response->addHeader("Content-Disposition", "attachment; filename=\"config.json\"");
+ response->addHeader("Content-Length", "2");
+ request->send(response);
+ return;
+ }
+
+ File file = LittleFS.open(CONFIG_FILE, "r");
+ size_t filesize = file.size();
+ file.close();
+
+ response = request->beginResponse(LittleFS, CONFIG_FILE, "text/json", true);
+ response->addHeader("Content-Disposition", "attachment; filename=\"config.json\"");
+ response->addHeader("Content-Length", String(filesize));
+ request->send(response);
+}
+
+bool handleCAN(AsyncWebServerRequest *request, CAN_Config** CANConfigPointer)
+{
+ if(!request->hasParam("can_ic_type", true) || !request->hasParam("can_speed_kbps", true)) {
+ request->send(422, "text/plain", "Missing parameter(s) for CAN-Bus IC Type or CAN-Speed");
+ return false;
+ }
+
+ CAN_ICBus canICBus = CAN_ICBus::None;
+ CAN_ICTypes canICTypes = CAN_ICTypes::None;
+
+ String ICType = request->getParam("can_ic_type", true)->value();
+
+ if(ICType.startsWith("uart_")) {
+ canICBus = CAN_ICBus::UART;
+ } else if(ICType.startsWith("spi_")) {
+ canICBus = CAN_ICBus::SPI;
+ } else if(ICType.startsWith("bt_")) {
+ canICBus = CAN_ICBus::BT;
+ } else {
+ request->send(422, "text/plain", "Invalid CAN IC/Chip communication type given");
+ return false;
+ }
+
+ ICType = ICType.substring(ICType.indexOf('_') + 1);
+
+ if(ICType == "mcp2515") {
+ canICTypes = CAN_ICTypes::MCP2515;
+ } else if(ICType == "elm327") {
+ canICTypes = CAN_ICTypes::ELM327;
+ } else if(ICType == "sja1000") {
+ canICTypes = CAN_ICTypes::SJA1000;
+ } else {
+ request->send(422, "text/plain", "Invalid CAN IC/Chip type given");
+ return false;
+ }
+
+ if(canICBus == CAN_ICBus::UART &&
+ (!request->hasParam("pin_can_uart_rx", true) || !request->hasParam("pin_can_uart_tx", true)))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for CAN-Bus UART");
+ return false;
+ }
+
+ if(canICBus == CAN_ICBus::SPI &&
+ (!request->hasParam("pin_can_spi_mosi", true) ||
+ !request->hasParam("pin_can_spi_miso", true) ||
+ !request->hasParam("pin_can_spi_cs", true) ||
+ !request->hasParam("pin_can_spi_sck", true) ||
+ !request->hasParam("pin_can_spi_int", true) ||
+ !request->hasParam("pin_can_spi_mhz", true)))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for CAN-Bus SPI");
+ return false;
+ }
+
+ if(canICBus == CAN_ICBus::BT &&
+ (!request->hasParam("pin_can_bt_devicename", true) ||
+ (request->hasParam("pin_can_bt_use_pin", true) && !request->hasParam("pin_can_bt_pin", true))))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for CAN-Bus Bluetooth");
+ return false;
+ }
+
+ CAN_Config* CANConfig = new CAN_Config();
+ CANConfig->CAN_IC = canICTypes;
+ CANConfig->CAN_BUS = canICBus;
+
+ *CANConfigPointer = CANConfig;
+
+ if(CANConfig->CAN_BUS == CAN_ICBus::SPI) {
+ CANConfig->CAN_SPI.PIN_MISO = request->getParam("pin_can_spi_miso", true)->value().toInt();
+ CANConfig->CAN_SPI.PIN_MOSI = request->getParam("pin_can_spi_mosi", true)->value().toInt();
+ CANConfig->CAN_SPI.PIN_SCK = request->getParam("pin_can_spi_sck", true)->value().toInt();
+ CANConfig->CAN_SPI.PIN_CS = request->getParam("pin_can_spi_cs", true)->value().toInt();
+ CANConfig->CAN_SPI.PIN_INT = request->getParam("pin_can_spi_int", true)->value().toInt();
+ CANConfig->CAN_SPI.IC_MHZ = request->getParam("pin_can_spi_mhz", true)->value().toInt();
+ } else if(CANConfig->CAN_BUS == CAN_ICBus::UART) {
+ CANConfig->CAN_UART.PIN_RX = request->getParam("pin_can_uart_rx", true)->value().toInt();
+ CANConfig->CAN_UART.PIN_TX = request->getParam("pin_can_uart_tx", true)->value().toInt();
+ } else if(CANConfig->CAN_BUS == CAN_ICBus::BT) {
+ CANConfig->CAN_BLUETOOTH.DEVICENAME = (char *)request->getParam("pin_can_bt_devicename", true)->value().c_str();
+ CANConfig->CAN_BLUETOOTH.USE_PIN = request->hasParam("pin_can_bt_use_pin", true);
+ if(CANConfig->CAN_BLUETOOTH.USE_PIN) {
+ CANConfig->CAN_BLUETOOTH.PIN = (char *)request->getParam("pin_can_bt_pin", true)->value().c_str();
+ }
+ }
+
+ CANConfig->CAN_SPEED_KBPS = request->getParam("can_speed_kbps", true)->value().toInt();
+ CANConfig->CAN_MQTT_TOPIC_NAME = (char *)request->getParam("can_mqtt_topic_name", true)->value().c_str();
+ CANConfig->CAN_READONLY_ENABLED = request->hasParam("can_readonly_enabled", true);
+ CANConfig->CAN_SNIFFING_ENABLED = request->hasParam("can_sniffing_enabled", true);
+ CANConfig->CAN_AUTOPOLL_MODE = (CAN_PollMode)request->getParam("can_autopoll_mode", true)->value().toInt();
+
+ if(CANConfig->CAN_AUTOPOLL_MODE == CAN_PollMode::Auto) {
+ CANConfig->CAN_AUTOPOLL_TIME = request->getParam("can_autopoll_time", true)->value().toInt();
+ }
+
+ if(request->hasParam("definedCommands", true)) {
+ DynamicJsonDocument jsonCommands(MODELS_CONFIG_SIZE);
+ deserializeJson(jsonCommands, request->getParam("definedCommands", true)->value());
+ JsonArray commandsArray = jsonCommands.as();
+
+ CANConfig->COMMANDS_LENGTH = commandsArray.size();
+ CANConfig->COMMANDS = new CANCommand*[CANConfig->COMMANDS_LENGTH];
+
+ int counter = 0;
+ for (JsonArray value : commandsArray) {
+ JsonArray commandBytes = value[CAN_COMMAND_INDEX_COMMAND];
+ byte commandArray[] = {
+ commandBytes[0].as(),
+ commandBytes[1].as(),
+ commandBytes[2].as(),
+ commandBytes[3].as(),
+ commandBytes[4].as(),
+ commandBytes[5].as(),
+ commandBytes[6].as()
+ };
+
+ CANCommandValueCode** valueCodes;
+ uint8_t valueCodeSize = 0;
+
+ if(value.size() > CAN_COMMAND_INDEX_VALUE_CODE) {
+ JsonObject valueCodeCommands = value[CAN_COMMAND_INDEX_VALUE_CODE].as();
+ valueCodeSize = valueCodeCommands.size();
+ valueCodes = new CANCommandValueCode*[valueCodeSize];
+
+ uint8_t valueCodeCounter = 0;
+
+ for (JsonPair keyValue : valueCodeCommands) {
+ valueCodes[valueCodeCounter] = new CANCommandValueCode(keyValue.key().c_str(), keyValue.value().as());
+ valueCodeCounter++;
+ }
+ } else {
+ valueCodes = nullptr;
+ }
+
+ CANConfig->COMMANDS[counter] = new CANCommand(
+ value[CAN_COMMAND_INDEX_NAME],
+ value[CAN_COMMAND_INDEX_LABEL],
+ commandArray,
+ value[CAN_COMMAND_INDEX_ID].as(),
+ value[CAN_COMMAND_INDEX_DIVISOR].as(),
+ value[CAN_COMMAND_INDEX_WRITABLE].as(),
+ value[CAN_COMMAND_INDEX_UNIT],
+ value[CAN_COMMAND_INDEX_TYPE],
+ valueCodeSize,
+ valueCodes);
+
+ counter++;
+ }
+ } else {
+ CANConfig->COMMANDS_LENGTH = 0;
+ CANConfig->COMMANDS = nullptr;
+ }
+
+ return true;
+}
+
+void onSaveConfig(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("standalone_wifi", true))
+ {
+ if(!request->hasParam("ssid", true) || !request->hasParam("ssid_password", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for ssid!");
+ return;
+ }
+
+ if(request->hasParam("ssid_staticip", true) && (!request->hasParam("ssid_ip", true) ||
+ !request->hasParam("ssid_subnet", true) ||
+ !request->hasParam("ssid_gateway", true) ||
+ !request->hasParam("primary_dns", true) ||
+ !request->hasParam("secondary_dns", true)))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for static ip");
+ return;
+ }
+ }
+
+ if(!request->hasParam("mqtt_server", true) || !request->hasParam("mqtt_username", true) || !request->hasParam("mqtt_password", true) || !request->hasParam("mqtt_topic_name", true) || !request->hasParam("mqtt_port", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for MQTT!");
+ return;
+ }
+
+ if(request->hasParam("mqtt_use_onetopic", true) && !request->hasParam("mqtt_onetopic_name", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for MQTT onetopic");
+ return;
+ }
+
+ if(!request->hasParam("pin_enable_config", true))
+ {
+ request->send(422, "text/plain", "Missing parameter pin to enable config");
+ return;
+ }
+
+ if(request->hasParam("heating_enabled", true) && !request->hasParam("pin_heating", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for heating");
+ return;
+ }
+
+ if(request->hasParam("cooling_enabled", true) && !request->hasParam("pin_cooling", true))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for cooling");
+ return;
+ }
+
+ if(request->hasParam("sg_enabled", true) && (!request->hasParam("pin_sg1", true) || !request->hasParam("pin_sg2", true)))
+ {
+ request->send(422, "text/plain", "Missing parameter(s) for SmartGrid");
+ return;
+ }
+
+ X10A_Config* X10AConfig = nullptr;
+ if(request->hasParam("x10a_enabled", true) && !handleX10A(request, &X10AConfig)) {
+ return;
+ }
+
+ CAN_Config* CANConfig = nullptr;
+ if(request->hasParam("can_enabled", true) && !handleCAN(request, &CANConfig)) {
+ return;
+ }
+
+ // ensure main loop stopped and nothing trys to access config instance as this will be destroyed now
+ mainLoopStatus = LoopRunStatus::Stopping;
+
+ while(mainLoopStatus != LoopRunStatus::Stopped)
+ delay(10);
+
+ if(config)
+ delete config;
+
+ config = new ESPAlthermaConfig();
+ config->configStored = true;
+ config->STANDALONE_WIFI = request->hasParam("standalone_wifi", true);
+
+ if(!config->STANDALONE_WIFI)
+ {
+ config->SSID = (char *)request->getParam("ssid", true)->value().c_str();
+ config->SSID_PASSWORD = (char *)request->getParam("ssid_password", true)->value().c_str();
+
+ config->SSID_STATIC_IP = request->hasParam("ssid_staticip", true);
+ if(config->SSID_STATIC_IP)
+ {
+ config->SSID_IP = (char *)request->getParam("ssid_ip", true)->value().c_str();
+ config->SSID_SUBNET = (char *)request->getParam("ssid_subnet", true)->value().c_str();
+ config->SSID_GATEWAY = (char *)request->getParam("ssid_gateway", true)->value().c_str();
+ config->SSID_PRIMARY_DNS = (char *)request->getParam("primary_dns", true)->value().c_str();
+ config->SSID_SECONDARY_DNS = (char *)request->getParam("secondary_dns", true)->value().c_str();
+ }
+ }
+
+ config->MQTT_SERVER = (char *)request->getParam("mqtt_server", true)->value().c_str();
+ config->MQTT_USERNAME = (char *)request->getParam("mqtt_username", true)->value().c_str();
+ config->MQTT_PASSWORD = (char *)request->getParam("mqtt_password", true)->value().c_str();
+ config->MQTT_TOPIC_NAME = (char *)request->getParam("mqtt_topic_name", true)->value().c_str();
+ config->MQTT_USE_JSONTABLE = request->hasParam("mqtt_jsontable", true);
+ config->MQTT_USE_ONETOPIC = request->hasParam("mqtt_use_onetopic", true);
+
+ if(config->MQTT_USE_ONETOPIC)
+ {
+ config->MQTT_ONETOPIC_NAME = (char *)request->getParam("mqtt_onetopic_name", true)->value().c_str();
+ }
+
+ config->MQTT_PORT = request->getParam("mqtt_port", true)->value().toInt();
+ config->MQTT_DISABLE_LOG_MESSAGES = request->hasParam("mqtt_disable_log_messages", true);
+ config->MQTT_ENCRYPTED = request->hasParam("mqtt_encrypted", true);
+ config->PIN_ENABLE_CONFIG = request->getParam("pin_enable_config", true)->value().toInt();
+
+ config->HEATING_ENABLED = request->hasParam("heating_enabled", true);
+ config->COOLING_ENABLED = request->hasParam("cooling_enabled", true);
+ config->SG_ENABLED = request->hasParam("sg_enabled", true);
+ config->X10A_ENABLED = request->hasParam("x10a_enabled", true);
+ config->X10A_CONFIG = X10AConfig;
+ config->CAN_ENABLED = request->hasParam("can_enabled", true);
+ config->CAN_CONFIG = CANConfig;
+ config->SAFETY_ENABLED = request->hasParam("safety_enabled", true);
+
+ if(config->HEATING_ENABLED)
+ config->PIN_HEATING = request->getParam("pin_heating", true)->value().toInt();
+
+ if(config->COOLING_ENABLED)
+ config->PIN_COOLING = request->getParam("pin_cooling", true)->value().toInt();
+
+ if(config->SG_ENABLED)
+ {
+ config->PIN_SG1 = request->getParam("pin_sg1", true)->value().toInt();
+ config->PIN_SG2 = request->getParam("pin_sg2", true)->value().toInt();
+ config->SG_RELAY_HIGH_TRIGGER = request->hasParam("sg_relay_trigger", true);
+ }
+
+ if(config->SAFETY_ENABLED)
+ config->PIN_SAFETY = request->getParam("pin_safety", true)->value().toInt();
+
+ saveConfig();
+
+ request->onDisconnect([]()
+ {
+ restart_board();
+ });
+
+ debugSerial.println("Saving successfull. Restarting...");
+ request->send(200, "text/plain", "OK");
+}
+
+void onUpdate(AsyncWebServerRequest *request)
+{
+ bool hasError = Update.hasError();
+
+ request->onDisconnect([hasError]()
+ {
+ if(hasError || !updateVersionValid)
+ return;
+
+ restart_board();
+ });
+
+ AsyncWebServerResponse *response = request->beginResponse((hasError)?500:200, "text/plain", (hasError)?"FAIL":((updateVersionValid)?"OK":"INVALID"));
+ response->addHeader("Connection", "close");
+ response->addHeader("Access-Control-Allow-Origin", "*");
+ request->send(response);
+}
+
+void handleUpdate(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final)
+{
+ //Upload handler chunks in data
+ if (!index)
+ {
+ updateVersionValid = false;
+
+ debugSerial.print("Start Web OTA Update - MD5: ");
+
+ if(!request->hasParam("MD5", true))
+ {
+ return request->send(400, "text/plain", "MD5 parameter missing");
+ }
+
+ const char* md5 = request->getParam("MD5", true)->value().c_str();
+
+ if(strlen(md5) != 32)
+ {
+ return request->send(400, "text/plain", "MD5 parameter invalid");
+ }
+
+ debugSerial.println(md5);
+ bool updateBeginSucceeded;
+
+ #if defined(ESP8266)
+ int cmd = (filename == "filesystem") ? U_FS : U_FLASH;
+ Update.runAsync(true);
+ size_t fsSize = ((size_t) &_FS_end - (size_t) &_FS_start);
+ uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000;
+ updateBeginSucceeded = Update.begin((cmd == U_FS)?fsSize:maxSketchSpace, cmd); // Start with max available size
+ #elif defined(ESP32)
+ int cmd = (request->getParam("type", true)->value() == "filesystem") ? U_SPIFFS : U_FLASH;
+ updateBeginSucceeded = Update.begin(UPDATE_SIZE_UNKNOWN, cmd); // Start with max available size
+ #endif
+
+ if (!updateBeginSucceeded) {
+ Update.printError(Serial);
+ return request->send(400, "text/plain", "OTA could not begin");
+ }
+ Update.setMD5(md5);
+ webOTAIsBusy = true;
+ }
+
+ // Write chunked data to the free sketch space
+ if(len)
+ {
+ if (Update.write(data, len) != len)
+ {
+ return request->send(400, "text/plain", "OTA could not begin");
+ }
+ debugSerial.print(".");
+ }
+
+ if (final)
+ {
+ #if ARDUINO_ARCH_ESP32
+ // if the final flag is set then this is the last frame of data
+ const esp_partition_t* updatePartition = esp_ota_get_next_update_partition(NULL);
+ const esp_partition_t* runningPartition = esp_ota_get_running_partition();
+ #endif
+
+ debugSerial.print("\n--> Update finished!\n");
+ webOTAIsBusy = false;
+ if (!Update.end(true))
+ { //true to set the size to the current progress
+ Update.printError(debugSerial);
+ return request->send(400, "text/plain", "Could not end OTA");
+ }
+
+ #if ARDUINO_ARCH_ESP32
+ esp_app_desc_t appRunning, appUpdate;
+ esp_ota_get_partition_description(runningPartition, &appRunning);
+ esp_ota_get_partition_description(updatePartition, &appUpdate);
+
+ SemanticVersion runningVersion(appRunning.version);
+ SemanticVersion updateVersion(appUpdate.version);
+
+ // if current or update version are dev-version (no version nr)
+ if (!runningVersion.hasVersionNr ||
+ !updateVersion.hasVersionNr ||
+ // or if new version is higher than old one
+ runningVersion.Major < updateVersion.Major ||
+ (runningVersion.Major <= updateVersion.Major &&
+ runningVersion.Minor < updateVersion.Minor) ||
+ (runningVersion.Major <= updateVersion.Major &&
+ runningVersion.Minor <= updateVersion.Minor &&
+ runningVersion.Patch < updateVersion.Patch) ||
+ (runningVersion.Major <= updateVersion.Major &&
+ runningVersion.Minor <= updateVersion.Minor &&
+ runningVersion.Patch <= updateVersion.Patch &&
+ runningVersion.Build < updateVersion.Build) ||
+ // or if new version is equal
+ (runningVersion.Major == updateVersion.Major &&
+ runningVersion.Minor == updateVersion.Minor &&
+ runningVersion.Patch == updateVersion.Patch &&
+ runningVersion.Build == updateVersion.Build)) {
+ // --> accept update
+ updateVersionValid = true;
+ }
+ #else
+ updateVersionValid = true;
+ #endif
+ }
+}
+
+void onUploadCANFile(AsyncWebServerRequest *request)
+{
+ if(!request->hasParam("file", true, true))
+ {
+ request->send(422, "text/plain", "Missing CAN file");
+ return;
+ }
+
+ String fsFilename = lastUploadFileName;
+ debugSerial.printf("Found LittleFS Filename: %s\n", fsFilename.c_str());
+
+ File canCommandsFile = LittleFS.open(CAN_COMMANDS_FILE, FILE_READ);
+ DynamicJsonDocument canCommandsDoc(MODELS_DOC_SIZE);
+ DeserializationError result;
+ if((result = deserializeJson(canCommandsDoc, canCommandsFile)).code() != DeserializationError::Code::Ok) {
+ debugSerial.printf("CAN Commands file read error: %i\n", result.code());
+ return;
+ };
+ JsonArray canCommandsDocArr = canCommandsDoc.as();
+ canCommandsFile.close();
+
+ File uploadFileFS = LittleFS.open(fsFilename, FILE_READ);
+ DynamicJsonDocument uploadDoc(COMMANDS_DEFINITION_UPLOAD_SIZE);
+ if((result = deserializeJson(uploadDoc, uploadFileFS)).code() != DeserializationError::Code::Ok) {
+ debugSerial.printf("CAN definition file read error: %i\n", result.code());
+ return;
+ };
+ uploadFileFS.close();
+
+ bool newModel = true;
+ for (JsonObject canCommands : canCommandsDocArr)
+ {
+ if(strcmp(canCommands["Model"].as(), uploadDoc["Model"].as()) == 0)
+ {
+ debugSerial.printf("Found existing Model: %s\n", canCommands["Model"].as());
+
+ newModel = false;
+
+ bool existingLanguage = false;
+ for (JsonPair kv : canCommands["Files"].as())
+ {
+ if(strcmp(kv.key().c_str(), uploadDoc["Language"].as()) == 0)
+ {
+ debugSerial.printf("Found existing Model file: %s\n", kv.key().c_str());
+ fsFilename = kv.value().as();
+ existingLanguage = true;
+ break;
+ }
+ }
+
+ if(!existingLanguage)
+ {
+ debugSerial.printf("add new language to existing Model file: %s\n", uploadDoc["Language"].as());
+ canCommands["Files"][uploadDoc["Language"].as()] = fsFilename;
+ }
+ }
+ }
+
+ if(newModel)
+ {
+ debugSerial.printf("Found new Model: %s\n", uploadDoc["Model"].as());
+
+ JsonObject newModelObect = canCommandsDocArr.createNestedObject();
+ newModelObect["Model"] = uploadDoc["Model"].as();
+ newModelObect["Files"][uploadDoc["Language"].as()] = fsFilename;
+ }
+
+ serializeJson(canCommandsDoc, Serial);
+
+ canCommandsFile = LittleFS.open(CAN_COMMANDS_FILE, FILE_WRITE);
+ serializeJson(canCommandsDoc, canCommandsFile);
+ canCommandsFile.close();
+
+ request->send(200);
+}
+
+void onWebSerialCallback(const uint8_t *data, const size_t len)
+{
+ WebSerial.println(F("Received Data..."));
+
+ String inputMessage = "";
+ for(size_t i=0; i < len; i++){
+ inputMessage += char(data[i]);
+ }
+
+ WebSerial.println(inputMessage);
+
+ if(inputMessage == "freeMemory")
+ {
+ #ifdef ARDUINO_ARCH_ESP8266
+ FSInfo fsInfo;
+ LittleFS.info(fsInfo);
+
+ uint32_t hfree;
+ uint32_t hmax;
+ uint8_t hfrag;
+ ESP.getHeapStats(&hfree, &hmax, &hfrag);
+ WebSerial.printf("Free memory: %d bytes\n", hfree);
+ WebSerial.printf("Free memory Heap: %d bytes\n", ESP.getFreeHeap());
+ WebSerial.printf("Max Heap: %d bytes\n", hmax);
+ WebSerial.printf("Fragmentation: %d\n", hfrag);
+ WebSerial.printf("LittleFS space used: %d/%d bytes\n", fsInfo.usedBytes, fsInfo.totalBytes);
+ #else
+ WebSerial.printf("Heap size: %d bytes\n", ESP.getHeapSize());
+ WebSerial.printf("Free memory: %d bytes\n", esp_get_free_heap_size());
+ WebSerial.printf("Free memory Heap: %d bytes\n", ESP.getFreeHeap());
+ WebSerial.printf("Lowest avaiable Memory: %d bytes\n", heap_caps_get_minimum_free_size(MALLOC_CAP_8BIT));
+ WebSerial.printf("LittleFS space used: %d/%d bytes\n", LittleFS.usedBytes(), LittleFS.totalBytes());
+ #endif
+ }
+ else if(inputMessage == "getFragmentation")
+ {
+ WebSerial.print(F("Fragmentation is: "));
+ WebSerial.println(HEAP_FRAGMENTATION());
+ }
+}
+
+void onReset(AsyncWebServerRequest *request)
+{
+ request->onDisconnect([]()
+ {
+ restart_board();
+ });
+
+ request->send(200, "text/javascript", "OK");
+}
+
+void onLoadCANValuesResult(AsyncWebServerRequest *request)
+{
+ if(valueCANLoadState == NotLoading)
+ {
+ request->send(503, "text/plain", "No values loading in progress");
+ return;
+ }
+
+ if(valueCANLoadState == Loading || valueCANLoadState == Pending)
+ {
+ request->send(503, "text/plain", "Values loading not finished");
+ return;
+ }
+
+ if(valueCANLoadResponse == "") {
+ request->send(404, "application/json", "CAN-Bus initialization with given parameter failed. Check if CAN config is correct.");
+ valueCANLoadResponse = "";
+ } else {
+ request->send(200, "application/json", valueCANLoadResponse);
+ valueCANLoadResponse = "";
+ }
+
+ valueCANLoadState = NotLoading;
+
+ delete webuiScanCANRegisterConfig;
+}
+
+void onLoadCANValues(AsyncWebServerRequest *request)
+{
+ if(valueCANLoadState != NotLoading) {
+ request->send(202, "text/plain", "Value loading in progress");
+ return;
+ }
+
+ if(!handleCAN(request, &webuiScanCANRegisterConfig)) {
+ return;
+ }
+
+ valueCANLoadState = Pending;
+
+ request->send(200, "application/json", "OK");
+}
+
+void WebUI_Init()
+{
+ if(!LittleFS.exists(MODELS_FILE))
+ {
+ formatDefaultFS();
+ }
+
+ // WebSerial is accessible at "/webserial" in browser
+ WebSerial.begin(&server);
+ WebSerial.onMessage(onWebSerialCallback);
+
+ server.on("/", HTTP_GET, onIndex);
+ server.on("/pico.min.css", HTTP_GET, onRequestPicoCSS);
+ server.on("/main.css", HTTP_GET, onRequestMainCSS);
+ server.on("/main.js", HTTP_GET, onRequestMainJS);
+ server.on("/md5.min.js", HTTP_GET, onRequestMD5JS);
+ server.on("/loadModel", HTTP_POST, onLoadModel);
+ server.on("/loadCommand", HTTP_POST, onLoadCommand);
+ server.on("/loadBoardInfo", HTTP_GET, onLoadBoardInfo);
+ server.on("/loadModels", HTTP_GET, onLoadModels);
+ server.on("/loadCommands", HTTP_GET, onLoadCommands);
+ server.on("/loadValues", HTTP_POST, onLoadValues);
+ server.on("/loadValuesResult", HTTP_GET, onLoadValuesResult);
+ server.on("/saveConfig", HTTP_POST, onSaveConfig);
+ server.on("/exportConfig", HTTP_GET, onExportConfig);
+ server.on("/loadConfig", HTTP_GET, onLoadConfig);
+ server.on("/can/loadValues", HTTP_POST, onLoadCANValues);
+ server.on("/can/loadValuesResult", HTTP_GET, onLoadCANValuesResult);
+ server.on("/wifi/loadNetworks", HTTP_GET, onWifiLoadNetworks);
+ server.on("/wifi/loadFinished", HTTP_GET, onWifiLoadFinished);
+ server.on("/format", HTTP_GET, onFormat);
+ server.on("/reset", HTTP_GET, onReset);
+ server.on("/update", HTTP_POST, onUpdate, handleUpdate);
+ server.on("/upload/config", HTTP_POST, onUploadConfigFile, handleFileUpload);
+ server.on("/upload/X10A", HTTP_POST, onUploadX10AFile, handleFileUpload);
+ server.on("/upload/CAN", HTTP_POST, onUploadCANFile, handleFileUpload);
+ server.begin();
+}
\ No newline at end of file
diff --git a/src/WebUI/webui.hpp b/src/WebUI/webui.hpp
new file mode 100644
index 00000000..27991621
--- /dev/null
+++ b/src/WebUI/webui.hpp
@@ -0,0 +1,65 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include
+#include "Config/config.hpp"
+#include "wireless.hpp"
+#include "persistence.hpp"
+#include "webuiBackgroundTasks.hpp"
+#include "semanticVersion.hpp"
+#include "Config/boardDefaults.hpp"
+
+#ifdef ARDUINO_ARCH_ESP8266
+#include
+
+#define LittleFS_open(file, mode) LittleFS.open(file, mode)
+#define HEAP_FRAGMENTATION() ESP.getHeapFragmentation()
+#else
+#include
+#include
+#include
+
+#define LittleFS_open(file, mode) LittleFS.open(file, mode, true)
+#define HEAP_FRAGMENTATION() (100 - heap_caps_get_largest_free_block(MALLOC_CAP_8BIT) * 100.0 / heap_caps_get_free_size(MALLOC_CAP_8BIT))
+#endif
+
+#if not __has_include("../build/webui/webfileHeaders.h")
+#define index_html_gz ""
+#define index_html_gz_len 0
+#define pico_min_css_gz ""
+#define pico_min_css_gz_len 0
+#define main_css_gz ""
+#define main_css_gz_len 0
+#define main_js_gz ""
+#define main_js_gz_len 0
+#define md5_min_js_gz ""
+#define md5_min_js_gz_len 0
+
+#warning Missing generated webfiles header
+#else
+#include "../build/webui/webfileHeaders.h"
+#endif
+
+#define MODELS_FILE "/models.json"
+#define CAN_COMMANDS_FILE "/CANCommands.json"
+#define MODEL_DEFINITION_DOC_SIZE 1024*25
+#define MODEL_DEFINITION_UPLOAD_SIZE 1024*50
+#define COMMANDS_DEFINITION_UPLOAD_SIZE 1024*70
+#define MODELS_DOC_SIZE 1024*10
+#define WEBUI_SELECTION_VALUE_SIZE 1024
+
+extern String lastUploadFileName;
+extern bool webOTAIsBusy;
+
+enum class LoopRunStatus : uint8_t {
+ Running,
+ Stopping,
+ Stopped
+};
+
+extern LoopRunStatus mainLoopStatus;
+
+void WebUI_Init();
\ No newline at end of file
diff --git a/src/WebUI/webuiBackgroundTasks.cpp b/src/WebUI/webuiBackgroundTasks.cpp
new file mode 100644
index 00000000..6ccaf135
--- /dev/null
+++ b/src/WebUI/webuiBackgroundTasks.cpp
@@ -0,0 +1,120 @@
+#include "webuiBackgroundTasks.hpp"
+
+X10A_Config* webuiScanX10ARegisterConfig;
+CAN_Config* webuiScanCANRegisterConfig;
+ValueLoadState valueX10ALoadState = NotLoading;
+ValueLoadState valueCANLoadState = NotLoading;
+ValueLoadState wifiLoadState = NotLoading;
+String valueX10ALoadResponse;
+String valueCANLoadResponse;
+String wifiLoadResponse;
+
+void webuiScanX10ARegister()
+{
+ if(valueX10ALoadState == NotLoading || valueX10ALoadState == LoadingFinished) {
+ return;
+ }
+
+ valueX10ALoadState = Loading;
+
+ bool X10AWasInited = x10a_got_inited();
+
+ debugSerial.printf("Starting new X10A connection with pins RX: %u, TX: %u\n", webuiScanX10ARegisterConfig->PIN_RX, webuiScanX10ARegisterConfig->PIN_TX);
+
+ x10a_init(nullptr, webuiScanX10ARegisterConfig, true);
+
+ size_t loadRegistryBufferSize;
+ RegistryBuffer *loadRegistryBuffers;
+
+ x10a_initRegistries(&loadRegistryBuffers, loadRegistryBufferSize);
+
+ if (loadRegistryBufferSize == 0) {
+ valueX10ALoadState = LoadingFinished;
+ debugSerial.println("Given params doesn't contain a registry buffer to fetch");
+ return;
+ }
+
+ debugSerial.println("Fetching Values");
+
+ x10a_handle(loadRegistryBuffers, loadRegistryBufferSize, false);
+
+ debugSerial.println("Returning Values");
+
+ DynamicJsonDocument resultDoc(webuiScanX10ARegisterConfig->PARAMETERS_LENGTH*JSON_OBJECT_SIZE(2));
+ JsonArray obj = resultDoc.to();
+
+ for (uint8_t i = 0; i < webuiScanX10ARegisterConfig->PARAMETERS_LENGTH; i++) {
+ obj.add(webuiScanX10ARegisterConfig->PARAMETERS[i]->asString);
+ }
+
+ if(X10AWasInited) {
+ debugSerial.println("Restoring original X10A connection");
+ x10a_init(nullptr, config->X10A_CONFIG, true);
+ } else {
+ x10a_end();
+ }
+
+ debugSerial.println("Finished registry scan");
+
+ serializeJson(resultDoc, valueX10ALoadResponse);
+
+ valueX10ALoadState = LoadingFinished;
+}
+
+void webuiScanCANRegister()
+{
+ if(valueCANLoadState == NotLoading || valueCANLoadState == LoadingFinished) {
+ return;
+ }
+
+ valueCANLoadState = Loading;
+
+ bool CANWasInited = config->CAN_ENABLED;
+
+ debugSerial.printf("Starting new CAN connection with BUS: %i, IC: %i, KBPS: %i\n", (uint8_t)webuiScanCANRegisterConfig->CAN_BUS, (uint8_t)webuiScanCANRegisterConfig->CAN_IC, webuiScanCANRegisterConfig->CAN_SPEED_KBPS);
+
+ if(canBus_setup(webuiScanCANRegisterConfig, nullptr)) {
+ debugSerial.println("Fetching and reading CAN values");
+ valueCANLoadResponse = canBus_readAllCommands();
+ } else {
+ // TODO give webui feedback that can init failed and config needs to be checked.
+ debugSerial.println("CAN connection failed!");
+ }
+
+ if(CANWasInited) {
+ debugSerial.println("Restoring original CAN connection");
+ canBus_setup(config->CAN_CONFIG, nullptr);
+ } else {
+ canBus_stop();
+ }
+
+ debugSerial.println("Finished CAN scan");
+
+ valueCANLoadState = LoadingFinished;
+}
+
+void webuiScanWifi()
+{
+ if(wifiLoadState == NotLoading || wifiLoadState == LoadingFinished) {
+ return;
+ }
+
+ wifiLoadState = Loading;
+
+ DynamicJsonDocument networksDoc(WIFI_DOC_SIZE);
+
+ scan_wifi();
+
+ for (int16_t i = 0; i < lastWifiScanResultAmount; i++) {
+ JsonObject networkDetails = networksDoc.createNestedObject();
+ networkDetails["SSID"] = lastWifiScanResults[i]->SSID;
+ networkDetails["RSSI"] = lastWifiScanResults[i]->RSSI;
+ networkDetails["EncryptionType"] = (lastWifiScanResults[i]->EncryptionType == WIFI_TYPE_OPEN) ? "":"*";
+ }
+
+ scan_wifi_delete_result();
+
+ serializeJson(networksDoc, wifiLoadResponse);
+
+ wifiLoadState = LoadingFinished;
+}
\ No newline at end of file
diff --git a/src/WebUI/webuiBackgroundTasks.hpp b/src/WebUI/webuiBackgroundTasks.hpp
new file mode 100644
index 00000000..391f3a66
--- /dev/null
+++ b/src/WebUI/webuiBackgroundTasks.hpp
@@ -0,0 +1,39 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include "arduinoC.hpp"
+#include "Config/config.hpp"
+#include "debugSerial.hpp"
+#include "wireless.hpp"
+
+#define MODELS_DOC_SIZE 1024*10
+#define WIFI_DOC_SIZE 1024
+
+#ifdef ARDUINO_ARCH_ESP8266
+#define WIFI_TYPE_OPEN ENC_TYPE_NONE
+#else
+#define WIFI_TYPE_OPEN WIFI_AUTH_OPEN
+#endif
+
+enum ValueLoadState {
+ NotLoading,
+ Pending,
+ Loading,
+ LoadingFinished
+};
+
+extern X10A_Config* webuiScanX10ARegisterConfig;
+extern CAN_Config* webuiScanCANRegisterConfig;
+extern ValueLoadState valueX10ALoadState;
+extern ValueLoadState valueCANLoadState;
+extern ValueLoadState wifiLoadState;
+extern String valueX10ALoadResponse;
+extern String valueCANLoadResponse;
+extern String wifiLoadResponse;
+
+void webuiScanX10ARegister();
+void webuiScanCANRegister();
+void webuiScanWifi();
\ No newline at end of file
diff --git a/src/arduinoC.hpp b/src/arduinoC.hpp
new file mode 100644
index 00000000..22a2d820
--- /dev/null
+++ b/src/arduinoC.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#ifdef ARDUINO_M5Stick_C_Plus2
+#include
+#elif ARDUINO_M5Stick_C_Plus
+#include
+#elif ARDUINO_M5Stick_C
+#include
+#elif ARDUINO_M5Stack_Tough
+#include
+#else
+#include
+#endif
\ No newline at end of file
diff --git a/src/debugSerial.cpp b/src/debugSerial.cpp
new file mode 100644
index 00000000..1e1772ce
--- /dev/null
+++ b/src/debugSerial.cpp
@@ -0,0 +1,55 @@
+#include "debugSerial.hpp"
+
+DebugSerial debugSerial;
+
+String* webSerialBuffer = nullptr;
+bool webSerialConnection = false;
+
+#define WEB_SERIAL_BUFFER_MAX_SIZE 2000
+
+DebugSerial::DebugSerial()
+{
+ WebSerial.onConnect([](AsyncWebSocketClient *client)
+ {
+ webSerialConnection = true;
+ });
+}
+
+size_t DebugSerial::write(const uint8_t *buffer, size_t size)
+{
+#if defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stack_Tough)
+ if (M5.Lcd.getCursorY()+13>M5.Lcd.height()) {
+ M5.Lcd.fillScreen(TFT_BLACK);
+ M5.Lcd.setCursor(0,0);
+ }
+ M5.Lcd.print((const char*) buffer);
+#endif
+
+ if(!webSerialConnection) {
+ if(webSerialBuffer == nullptr) {
+ webSerialBuffer = new String();
+ }
+
+ webSerialBuffer->concat(reinterpret_cast(buffer), size);
+
+ if(webSerialBuffer->length() > WEB_SERIAL_BUFFER_MAX_SIZE) {
+ *webSerialBuffer = webSerialBuffer->substring(webSerialBuffer->length() - WEB_SERIAL_BUFFER_MAX_SIZE);
+ }
+ } else if(webSerialConnection && webSerialBuffer != nullptr) {
+ webSerialBuffer->concat(reinterpret_cast(buffer), size);
+ WebSerial.print(*webSerialBuffer);
+ *webSerialBuffer = "";
+ delete webSerialBuffer;
+ webSerialBuffer = nullptr;
+ } else {
+ WebSerial.write(buffer, size);
+ }
+
+ Serial.write(buffer, size);
+
+ return size;
+}
+
+DebugSerial::~DebugSerial()
+{
+}
\ No newline at end of file
diff --git a/src/debugSerial.hpp b/src/debugSerial.hpp
new file mode 100644
index 00000000..1d03f7ab
--- /dev/null
+++ b/src/debugSerial.hpp
@@ -0,0 +1,70 @@
+#pragma once
+
+#include
+#include
+#include
+#include "arduinoC.hpp"
+
+class DebugSerial: public Stream
+{
+public:
+ inline void begin() {};
+
+ inline size_t write(uint8_t)
+ {
+ return 0;
+ };
+
+ inline int available(void)
+ {
+ return 0;
+ };
+
+ inline int availableForWrite(void)
+ {
+ return 0;
+ };
+
+ inline int peek(void)
+ {
+ return 0;
+ };
+
+ inline int read(void)
+ {
+ return 0;
+ };
+
+ inline void flush(void){};
+
+ inline size_t write(const char * s)
+ {
+ return write((uint8_t*) s, strlen(s));
+ }
+
+ inline size_t write(unsigned long n)
+ {
+ return write((uint8_t) n);
+ }
+
+ inline size_t write(long n)
+ {
+ return write((uint8_t) n);
+ }
+
+ inline size_t write(unsigned int n)
+ {
+ return write((uint8_t) n);
+ }
+
+ inline size_t write(int n)
+ {
+ return write((uint8_t) n);
+ }
+
+ DebugSerial();
+ size_t write(const uint8_t *buffer, size_t size);
+ ~DebugSerial();
+};
+
+extern DebugSerial debugSerial;
\ No newline at end of file
diff --git a/src/idf_component.yml b/src/idf_component.yml
new file mode 100644
index 00000000..decb3f78
--- /dev/null
+++ b/src/idf_component.yml
@@ -0,0 +1,7 @@
+dependencies:
+ # Required IDF version
+ idf: ">=4.4"
+
+ esp_littlefs:
+ git: https://github.com/joltwallet/esp_littlefs.git
+ version: v1.14.2
\ No newline at end of file
diff --git a/src/main.cpp b/src/main.cpp
index 9a4612ec..011cf550 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,270 +1,77 @@
-#ifdef ARDUINO_M5Stick_C_Plus2
-#include
-#elif ARDUINO_M5Stick_C_Plus
-#include
-#elif ARDUINO_M5Stick_C
-#include
-#else
-#include
-#endif
-
-#ifdef ARDUINO_ARCH_ESP8266
-#include
-#include
-#else
-#include
-#endif
-#include
-
-#include
-#include
+#include "main.hpp"
-#if __has_include("my_setup.h")
-#include "my_setup.h"
-#else
-#include "setup.h"
-#endif
-
-#include "mqttserial.h"
-#include "converters.h"
-#include "comm.h"
-#include "mqtt.h"
-#include "restart.h"
+bool doRestartInStandaloneWifi = false;
-Converter converter;
-char registryIDs[32]; //Holds the registries to query
-bool busy = false;
+uint16_t loopcount = 0;
-#if defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stick_C_Plus)
-long LCDTimeout = 40000;//Keep screen ON for 40s then turn off. ButtonA will turn it On again.
+#if defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stack_Tough)
+unsigned long LCDTimeout;
+bool LCDTimeoutRunning = true;
+#define LCD_TIMEOUT_CHECK (millis() - LCDTimeout) >= 30000
#endif
-bool contains(char array[], int size, int value)
+void extraLoop()
{
- for (int i = 0; i < size; i++)
- {
- if (array[i] == value)
- return true;
- }
- return false;
-}
+ while(webOTAIsBusy) {}
-//Converts to string and add the value to the JSON message
-void updateValues(char regID)
-{
- LabelDef *labels[128];
- int num = 0;
- converter.getLabels(regID, labels, num);
- for (int i = 0; i < num; i++)
- {
- bool alpha = false;
- for (size_t j = 0; j < strlen(labels[i]->asString); j++)
- {
- char c = labels[i]->asString[j];
- if (!isdigit(c) && c!='.' && !(c=='-' && j==0)){
- alpha = true;
- break;
- }
- }
+ mqttLoop();
- #ifdef ONEVAL_ONETOPIC
- char topicBuff[128] = MQTT_OneTopic;
- strcat(topicBuff,labels[i]->label);
- client.publish(topicBuff, labels[i]->asString);
+ if(config->CAN_ENABLED)
+ canBus_loop();
- #else
- if (alpha){
+ if(config->X10A_ENABLED)
+ x10a_loop();
- snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":\"%s\",", labels[i]->label, labels[i]->asString);
- }
- else{//number, no quotes
- snprintf(jsonbuff + strlen(jsonbuff), MAX_MSG_SIZE - strlen(jsonbuff), "\"%s\":%s,", labels[i]->label, labels[i]->asString);
- }
- #endif
- }
-}
-
-uint16_t loopcount =0;
-
-void extraLoop()
-{
- client.loop();
- ArduinoOTA.handle();
- while (busy)
- { //Stop processing during OTA
- ArduinoOTA.handle();
- }
-
-#if !defined(ARDUINO_M5Stick_C_Plus2) && defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stick_C_Plus)
- if (M5.BtnA.wasPressed()){//Turn back ON screen
+#if !defined(ARDUINO_M5Stick_C_Plus2) && defined(ARDUINO_M5Stick_C)
+ if (M5.BtnA.wasPressed()) { // turn back ON screen
+ LCDTimeoutRunning = true;
M5.Axp.ScreenBreath(12);
- LCDTimeout = millis() + 30000;
- } else if (LCDTimeout < millis()) { //Turn screen off.
+ LCDTimeout = millis();
+ } else if (LCDTimeoutRunning && LCD_TIMEOUT_CHECK) { // turn screen off.
M5.Axp.ScreenBreath(0);
+ LCDTimeoutRunning = false;
}
M5.update();
-#endif
-
-
-#if defined(ARDUINO_M5Stick_C_Plus2)
- if (M5.BtnA.wasPressed()){//Turn back ON screen
+#elif defined(ARDUINO_M5Stick_C_Plus2)
+ if (M5.BtnA.wasPressed()) { // turn back ON screen
+ LCDTimeoutRunning = true;
M5.Display.wakeup();
- LCDTimeout = millis() + 30000;
- } else if (LCDTimeout < millis()) { //Turn screen off.
+ LCDTimeout = millis();
+ } else if (LCDTimeoutRunning && LCD_TIMEOUT_CHECK) { // turn screen off.
M5.Display.sleep();
+ LCDTimeoutRunning = false;
}
M5.update();
-#endif
-}
-
-#ifdef ARDUINO_ARCH_ESP8266
-void get_wifi_bssid(const char *ssid, uint8_t *bssid, uint32_t *wifi_channel)
-{
- bssid = nullptr;
- int n = WiFi.scanNetworks(false, true);
-
- if (n < 1) // no networks found
- return;
-
- // sort networks on RSSI value
- int indices[n];
- for (int i = 0; i < n; i++)
- {
- indices[i] = i;
- }
-
- for (int i = 0; i < n; i++)
- {
- for (int j = i + 1; j < n; j++)
- {
- if (WiFi.RSSI(indices[j]) > WiFi.RSSI(indices[i]))
- {
- std::swap(indices[i], indices[j]);
- }
- }
- }
-
- // loop through result and match highest RSSI SSID
- for (int i = 0; i < n; i++)
- {
- char scan_ssid[33]; // ssid can be up to 32chars, => plus null term
- strlcpy(scan_ssid, WiFi.SSID(indices[i]).c_str(), sizeof(scan_ssid));
-
- if (strcmp(ssid, scan_ssid) == 0)
- {
- if (WiFi.BSSID(indices[i]) != 0)
- {
- bssid = WiFi.BSSID(indices[i]);
- *wifi_channel = WiFi.channel();
- return;
- }
- else
- {
- return;
- }
- }
+#elif ARDUINO_M5Stack_Tough
+ if (M5.Touch.changed) { // Turn back ON screen
+ M5.Lcd.setBrightness(127);
+ M5.Lcd.wakeup();
+ LCDTimeout = millis();
+ LCDTimeoutRunning = true;
+ } else if (LCDTimeoutRunning && LCD_TIMEOUT_CHECK) { // Turn screen off.
+ M5.Lcd.sleep();
+ M5.Lcd.setBrightness(0);
+ LCDTimeoutRunning = false;
}
-}
+ M5.update();
#endif
-void checkWifi()
-{
- int i = 0;
- while (WiFi.status() != WL_CONNECTED)
- {
- delay(500);
- Serial.print(".");
- if (i++ == 240)
- {
- Serial.printf("Tried connecting for 120 sec, rebooting now.");
- restart_board();
- }
- }
-}
-
-void setup_wifi()
-{
- delay(10);
- // We start by connecting to a WiFi network
- mqttSerial.printf("Connecting to %s\n", WIFI_SSID);
-
- #if defined(WIFI_IP) && defined(WIFI_GATEWAY) && defined(WIFI_SUBNET)
- IPAddress local_IP(WIFI_IP);
- IPAddress gateway(WIFI_GATEWAY);
- IPAddress subnet(WIFI_SUBNET);
-
- #ifdef WIFI_PRIMARY_DNS
- IPAddress primaryDNS(WIFI_PRIMARY_DNS);
- #else
- IPAddress primaryDNS();
- #endif
-
- #ifdef WIFI_SECONDARY_DNS
- IPAddress secondaryDNS(WIFI_SECONDARY_DNS);
- #else
- IPAddress secondaryDNS();
- #endif
-
- if (!WiFi.config(local_IP, gateway, subnet, primaryDNS, secondaryDNS)) {
- mqttSerial.println("Failed to set static ip!");
- }
- #endif
+ if(!doRestartInStandaloneWifi)
+ return;
- uint8_t *bssid = nullptr;
- uint32_t wifi_channel = 0;
-#ifdef ARDUINO_ARCH_ESP8266
- get_wifi_bssid(WIFI_SSID, bssid, &wifi_channel);
-#else //assume ESP32
- WiFi.setSortMethod(WIFI_CONNECT_AP_BY_SIGNAL);
- WiFi.setScanMethod(WIFI_ALL_CHANNEL_SCAN);
-#endif
-
- if (bssid != nullptr)
- {
- WiFi.begin(WIFI_SSID, WIFI_PWD, wifi_channel, bssid);
- }
- else
- {
- WiFi.begin(WIFI_SSID, WIFI_PWD, 0, 0, true);
- }
- checkWifi();
- mqttSerial.printf("Connected. IP Address: %s\n", WiFi.localIP().toString().c_str());
+ debugSerial.println("Restarting in standalone wifi mode");
+ config->STANDALONE_WIFI = true;
+ saveConfig();
+ restart_board();
}
-void initRegistries(){
- //getting the list of registries to query from the selected values
- for (size_t i = 0; i < sizeof(registryIDs); i++)
- {
- registryIDs[i]=0xff;
- }
-
- int i = 0;
- for (auto &&label : labelDefs)
- {
- if (!contains(registryIDs, sizeof(registryIDs), label.registryID))
- {
- mqttSerial.printf("Adding registry 0x%2x to be queried.\n", label.registryID);
- registryIDs[i++] = label.registryID;
- }
- }
- if (i == 0)
- {
- mqttSerial.printf("ERROR - No values selected in the include file. Stopping.\n");
- while (true)
- {
- extraLoop();
- }
- }
-}
-
-void setupScreen(){
-#if !defined(ARDUINO_M5Stick_C_Plus2) && defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stick_C_Plus)
+void setupScreen()
+{
+#if !defined(ARDUINO_M5Stick_C_Plus2) && defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stack_Tough)
M5.begin();
-#if !defined(ARDUINO_M5Stick_C_Plus2)
M5.Axp.EnableCoulombcounter();
-#endif
M5.Lcd.setRotation(1);
- M5.Axp.ScreenBreath(127);
+ M5.Axp.ScreenBreath(12);
M5.Lcd.fillScreen(TFT_WHITE);
M5.Lcd.setFreeFont(&FreeSansBold12pt7b);
M5.Lcd.setTextDatum(MC_DATUM);
@@ -276,133 +83,187 @@ void setupScreen(){
M5.Lcd.fillScreen(TFT_BLACK);
M5.Lcd.setTextFont(1);
M5.Lcd.setTextColor(TFT_GREEN);
-
-#elif defined(ARDUINO_M5Stick_C_Plus2)
+#elif defined(ARDUINO_M5Stick_C_Plus2)
M5.begin();
-#if !defined(ARDUINO_M5Stick_C_Plus2)
- M5.Axp.EnableCoulombcounter();
-#endif
M5.Lcd.setRotation(1);
M5.Lcd.setBrightness(127);
M5.Lcd.fillScreen(TFT_WHITE);
M5.Lcd.setFont(&FreeSansBold12pt7b);
M5.Lcd.setTextDatum(MC_DATUM);
- int xpos = M5.Lcd.width() / 2; // Half the screen width
- int ypos = M5.Lcd.height() / 2; // Half the screen width
+ int xpos = M5.Lcd.width() / 2; // half the screen width
+ int ypos = M5.Lcd.height() / 2; // half the screen width
M5.Lcd.setTextColor(TFT_DARKGREY);
- M5.Lcd.drawString("ESPAltherma", xpos,ypos);
+ M5.Lcd.drawString("ESPAltherma", xpos, ypos);
delay(2000);
M5.Lcd.fillScreen(TFT_BLACK);
M5.Lcd.setFont(&Font0);
M5.Lcd.setTextColor(TFT_GREEN);
#endif
+}
-
-
+void IRAM_ATTR restartInStandaloneWifi()
+{
+ doRestartInStandaloneWifi = true;
}
void setup()
{
Serial.begin(115200);
+
+ if(!LittleFS.begin(LITTLEFS_BEGIN_PARAM)) {
+ Serial.println("An Error has occurred while mounting LittleFS");
+ return;
+ }
+
+ #ifdef ARDUINO_ARCH_ESP8266
+ debugSerial.printf("ESP8266 Chip ID:%i\n", ESP.getFlashChipId());
+ debugSerial.printf("ESP8266 Real Size:%i\n", ESP.getFlashChipRealSize());
+ debugSerial.printf("ESP8266 Size: %i\n", ESP.getFlashChipSize());
+ debugSerial.printf("ESP8266 Speed: %i\n", ESP.getFlashChipSpeed());
+ debugSerial.printf("ESP8266 Mode: %i\n", ESP.getFlashChipMode());
+ #else
+ esp_chip_info_t chip;
+ esp_chip_info(&chip);
+
+ debugSerial.printf("ESP32 Model: %i\n", chip.model);
+ debugSerial.printf("ESP32 Revision: %i\n", chip.revision);
+ debugSerial.printf("ESP32 Cores: %i\n", chip.cores);
+ #endif
+
+ initPersistence();
+
+ readConfig();
+
+ if(config->STANDALONE_WIFI || !config->configStored) {
+ debugSerial.println("Start in standalone mode..");
+ start_standalone_wifi();
+ WebUI_Init();
+ }
+
+ initMQTT();
+
setupScreen();
- MySerial.begin(9600, SERIAL_CONFIG, RX_PIN, TX_PIN);
- pinMode(PIN_THERM, OUTPUT);
- // digitalWrite(PIN_THERM, PIN_THERM_ACTIVE_STATE);
-#ifdef SAFETY_RELAY_PIN
- pinMode(SAFETY_RELAY_PIN, OUTPUT);
- digitalWrite(SAFETY_RELAY_PIN, !SAFETY_RELAY_ACTIVE_STATE);
-#endif
+ if(!config->configStored) {
+ debugSerial.println("No config found, skip setup...");
+ return;
+ }
-#ifdef PIN_SG1
- //Smartgrid pins - Set first to the inactive state, before configuring as outputs (avoid false triggering when initializing)
- digitalWrite(PIN_SG1, SG_RELAY_INACTIVE_STATE);
- digitalWrite(PIN_SG2, SG_RELAY_INACTIVE_STATE);
- pinMode(PIN_SG1, OUTPUT);
- pinMode(PIN_SG2, OUTPUT);
+ x10a_set_serial(new X10ASerial());
+
+ IDebugStream* debugStream = nullptr;
+ if(config->X10A_ENABLED || config->CAN_ENABLED) {
+ debugStream = new DebugStream(&debugSerial);
+ }
+
+ if(config->X10A_ENABLED) {
+ callbackX10A_updateValues = updateValues;
+ callbackX10A_sendValues = sendValues;
+ callbackX10A_wait = waitLoop;
+ x10a_init(debugStream, config->X10A_CONFIG, config->MQTT_DISABLE_LOG_MESSAGES); // TODO: Correct place to use a MQTT config variable inside X10A??
+ x10a_initRegistries(®istryBuffers, registryBufferSize);
+ }
+
+ if(config->HEATING_ENABLED) {
+ pinMode(config->PIN_HEATING, OUTPUT);
+ digitalWrite(config->PIN_HEATING, HIGH);
+ }
+
+ if(config->COOLING_ENABLED) {
+ pinMode(config->PIN_COOLING, OUTPUT);
+ digitalWrite(config->PIN_COOLING, HIGH);
+ }
+
+ if(config->SG_ENABLED) {
+ // Smartgrid pins - Set first to the inactive state, before configuring as outputs (avoid false triggering when initializing)
+ digitalWrite(config->PIN_SG1, SG_RELAY_INACTIVE_STATE);
+ digitalWrite(config->PIN_SG2, SG_RELAY_INACTIVE_STATE);
+ pinMode(config->PIN_SG1, OUTPUT);
+ pinMode(config->PIN_SG2, OUTPUT);
+
+ debugSerial.printf("Configured SG Pins %u %u - State: %u\n", config->PIN_SG1, config->PIN_SG2, SG_RELAY_INACTIVE_STATE);
+ }
+
+ if(config->CAN_ENABLED) {
+ callbackRecievedCommand = [](const char *label, const char *value) { mqttPublish(MQTTPublishTopic::CAN, value, label); };
+ callbackCAN = canBus_set;
+ canBus_setup(config->CAN_CONFIG, debugStream);
+ }
+
+ if(config->SAFETY_ENABLED) {
+ pinMode(config->PIN_SAFETY, OUTPUT);
+ digitalWrite(config->PIN_SAFETY, LOW);
+ }
-#endif
#ifdef ARDUINO_M5Stick_C_Plus
gpio_pulldown_dis(GPIO_NUM_25);
gpio_pullup_dis(GPIO_NUM_25);
#endif
- EEPROM.begin(10);
- readEEPROM();//Restore previous state
- mqttSerial.print("Setting up wifi...");
- setup_wifi();
- ArduinoOTA.setHostname("ESPAltherma");
- ArduinoOTA.onStart([]() {
- busy = true;
- });
-
- ArduinoOTA.onError([](ota_error_t error) {
- mqttSerial.print("Error on OTA - restarting");
- restart_board();
- });
- ArduinoOTA.begin();
-
- #ifdef MQTT_ENCRYPTED
- // Required to establish encrypted connections.
- // If you want to be more secure here, you can use the CA certificate to allow the wifi client to verify the other party. NOTE: If you use the CA certificate here, then you need to make sure to update it here regulary!
- espClient.setInsecure();
- espClient.setTimeout(5);
- #endif
+ readPersistence(); // restore previous state
- client.setBufferSize(MAX_MSG_SIZE); //to support large json message
- client.setCallback(callback);
- client.setServer(MQTT_SERVER, MQTT_PORT);
+ if(!config->STANDALONE_WIFI) {
+ debugSerial.println("Setting up wifi...");
+ setup_wifi();
+ WebUI_Init();
+ }
- auto timeout = espClient.getTimeout();
- Serial.printf("Wifi client timeout: %d\n", timeout);
+ pinMode(config->PIN_ENABLE_CONFIG, INPUT_PULLUP);
+ attachInterrupt(config->PIN_ENABLE_CONFIG, restartInStandaloneWifi, FALLING);
- mqttSerial.printf("Connecting to MQTT server: %s:%d\n", MQTT_SERVER, MQTT_PORT);
- mqttSerial.begin(&client, "espaltherma/log");
- reconnectMqtt();
- mqttSerial.println("OK!");
+ debugSerial.print("Connecting to MQTT server...\n");
+ connectMqtt();
+ mqttInitCallbacks();
+ debugSerial.println("OK!");
- initRegistries();
- mqttSerial.print("ESPAltherma started!");
+ debugSerial.print("ESPAltherma started!\n");
}
-void waitLoop(uint ms){
- unsigned long start = millis();
- while (millis() < start + ms) //wait .5sec between registries
- {
- extraLoop();
- }
+void waitLoop(ulong ms)
+{
+ ulong start = millis();
+ while (millis() < start + ms) { // wait .5sec between registries
+
+ if(valueX10ALoadState == Pending ||
+ valueCANLoadState == Pending ||
+ wifiLoadState == Pending ||
+ mainLoopStatus == LoopRunStatus::Stopping) {
+ return;
+ }
+
+ extraLoop();
+ }
}
void loop()
{
- unsigned long start = millis();
- if (WiFi.status() != WL_CONNECTED)
- { //restart board if needed
+ if(mainLoopStatus == LoopRunStatus::Stopped)
+ return;
+
+ if (wifiLoadState == ValueLoadState::NotLoading &&
+ !config->STANDALONE_WIFI &&
+ config->configStored &&
+ WiFi.status() != WL_CONNECTED) {
+ //restart board if needed
checkWifi();
}
- if (!client.connected())
- { //(re)connect to MQTT if needed
- reconnectMqtt();
- }
- //Querying all registries
- for (size_t i = 0; (i < 32) && registryIDs[i] != 0xFF; i++)
- {
- unsigned char buff[64] = {0};
- int tries = 0;
- while (!queryRegistry(registryIDs[i], buff, PROTOCOL) && tries++ < 3)
- {
- mqttSerial.println("Retrying...");
- waitLoop(1000);
- }
- unsigned char receivedRegistryID = PROTOCOL == 'S' ? buff[0] : buff[1];
- if (registryIDs[i] == receivedRegistryID) //if replied registerID is coherent with the command
- {
- converter.readRegistryValues(buff, PROTOCOL); //process all values from the register
- updateValues(registryIDs[i]); //send them in mqtt
- //waitLoop(500);//wait .5sec between registries
+
+ if(!config->configStored) {
+ extraLoop();
+ } else {
+ webuiScanX10ARegister();
+ webuiScanCANRegister();
+ webuiScanWifi();
+
+ if (!mqttConnected()) { // (re)connect to MQTT if needed
+ reconnectMqtt();
}
+
+ //debugSerial.printf("Done. Waiting %.2f sec...\n", (float)loopEnd / 1000);
+ //waitLoop(loopEnd);
+ waitLoop(1000);
}
- sendValues();//Send the full json message
- mqttSerial.printf("Done. Waiting %ld ms...", FREQUENCY - millis() + start);
- waitLoop(FREQUENCY - millis() + start);
+
+ if(mainLoopStatus == LoopRunStatus::Stopping)
+ mainLoopStatus = LoopRunStatus::Stopped;
}
diff --git a/src/main.hpp b/src/main.hpp
new file mode 100644
index 00000000..0223128a
--- /dev/null
+++ b/src/main.hpp
@@ -0,0 +1,31 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include
+
+#include "arduinoC.hpp"
+#include "Config/config.hpp"
+#include "debugSerial.hpp"
+#include "MQTT/mqtt.hpp"
+#include "MQTT/mqttCallbacks.hpp"
+#include "WebUI/webui.hpp"
+#include "wireless.hpp"
+#include "persistence.hpp"
+#include "restart.hpp"
+
+#ifdef ARDUINO_ARCH_ESP8266
+#define LITTLEFS_BEGIN_PARAM
+#else
+#define LITTLEFS_BEGIN_PARAM true
+#endif
+
+void IRAM_ATTR restartInStandaloneWifi();
+
+void setup();
+
+void waitLoop(ulong ms);
+
+void loop();
\ No newline at end of file
diff --git a/src/persistence.cpp b/src/persistence.cpp
new file mode 100644
index 00000000..3dc7811f
--- /dev/null
+++ b/src/persistence.cpp
@@ -0,0 +1,76 @@
+#include "persistence.hpp"
+
+Preferences preferences;
+
+void resetPersistence()
+{
+ preferences.clear();
+}
+
+void initPersistence()
+{
+ preferences.begin(NAME_NAMESPACE, false);
+}
+
+void savePersistence()
+{
+ if(config->HEATING_ENABLED)
+ preferences.putUChar(NAME_STATE_HEATING, digitalRead(config->PIN_HEATING));
+ else if(preferences.isKey(NAME_STATE_HEATING))
+ preferences.remove(NAME_STATE_HEATING);
+
+ if(config->COOLING_ENABLED)
+ preferences.putUChar(NAME_STATE_COOLING, digitalRead(config->PIN_COOLING));
+ else if(preferences.isKey(NAME_STATE_COOLING))
+ preferences.remove(NAME_STATE_COOLING);
+
+ if(config->SAFETY_ENABLED)
+ preferences.putUChar(NAME_STATE_SAFETY, digitalRead(config->PIN_SAFETY));
+ else if(preferences.isKey(NAME_STATE_SAFETY))
+ preferences.remove(NAME_STATE_SAFETY);
+}
+
+void readPersistence()
+{
+ bool inited = preferences.getBool(NAME_INITED);
+
+ if (inited)
+ {
+ if(config->HEATING_ENABLED && preferences.isKey(NAME_STATE_HEATING))
+ {
+ uint8_t heatingState = preferences.getUChar(NAME_STATE_HEATING);
+ digitalWrite(config->PIN_HEATING, heatingState);
+ debugSerial.printf("Restoring previous heating state: %s\n", (heatingState == HIGH) ? "Off":"On" );
+ }
+
+ if(config->COOLING_ENABLED && preferences.isKey(NAME_STATE_COOLING))
+ {
+ uint8_t coolingState = preferences.getUChar(NAME_STATE_COOLING);
+ digitalWrite(config->PIN_COOLING, coolingState);
+ debugSerial.printf("Restoring previous cooling state: %s\n", (coolingState == HIGH) ? "Off":"On" );
+ }
+
+ if(config->SAFETY_ENABLED && preferences.isKey(NAME_STATE_SAFETY))
+ {
+ uint8_t safetyState = preferences.getUChar(NAME_STATE_SAFETY);
+ digitalWrite(config->PIN_SAFETY, safetyState);
+ debugSerial.printf("Restoring previous safety state: %s\n", (safetyState == HIGH) ? "On":"Off" );
+ }
+ }
+ else
+ {
+ debugSerial.printf("Persistence not initialized (%d). Initializing...\n", inited);
+ preferences.putBool(NAME_INITED, true);
+
+ if(config->HEATING_ENABLED)
+ digitalWrite(config->PIN_HEATING, HIGH);
+
+ if(config->COOLING_ENABLED)
+ digitalWrite(config->PIN_COOLING, HIGH);
+
+ if(config->SAFETY_ENABLED)
+ digitalWrite(config->PIN_SAFETY, LOW);
+
+ savePersistence();
+ }
+}
\ No newline at end of file
diff --git a/src/persistence.hpp b/src/persistence.hpp
new file mode 100644
index 00000000..9df8cb98
--- /dev/null
+++ b/src/persistence.hpp
@@ -0,0 +1,21 @@
+#pragma once
+
+#include
+#include "Config/config.hpp"
+#include "debugSerial.hpp"
+
+#define NAME_NAMESPACE "ESPAltherma"
+#define NAME_INITED "Inited"
+#define NAME_STATE_HEATING "Heating"
+#define NAME_STATE_COOLING "Cooling"
+#define NAME_STATE_SAFETY "Safety"
+
+extern Preferences preferences;
+
+void resetPersistence();
+
+void initPersistence();
+
+void savePersistence();
+
+void readPersistence();
\ No newline at end of file
diff --git a/src/restart.cpp b/src/restart.cpp
new file mode 100644
index 00000000..c62fba82
--- /dev/null
+++ b/src/restart.cpp
@@ -0,0 +1,10 @@
+#include "restart.hpp"
+
+void restart_board()
+{
+ #ifdef ARDUINO_ARCH_ESP8266
+ ESP.restart();
+ #else
+ esp_restart();
+ #endif
+}
\ No newline at end of file
diff --git a/src/restart.hpp b/src/restart.hpp
new file mode 100644
index 00000000..d72a34ea
--- /dev/null
+++ b/src/restart.hpp
@@ -0,0 +1,5 @@
+#pragma once
+
+#include "arduinoC.hpp"
+
+void restart_board();
\ No newline at end of file
diff --git a/src/setup.h b/src/setup.h
deleted file mode 100644
index 5ae80839..00000000
--- a/src/setup.h
+++ /dev/null
@@ -1,132 +0,0 @@
-//Setup your credentials and mqtt info here:
-//only change the value between the " " leave the rest of the line untouched.
-#define WIFI_SSID "SSID"//**Your SSID here**
-#define WIFI_PWD "password"//**Your password here** leave empty if open (bad!)
-
-//Uncomment this to set a static IP instead of DHCP for the ESP (Separate by commas instead of dots)
-//#define WIFI_IP 192, 168, 0, 5
-//#define WIFI_SUBNET 255, 255, 255, 0
-//#define WIFI_GATEWAY 192, 168, 0, 1
-//#define WIFI_PRIMARY_DNS 8, 8, 8, 8 //A DNS address is needed, even if it's not used
-//#define WIFI_SECONDARY_DNS 8, 8, 4, 4 //A DNS address is needed, even if it's not used
-
-#define MQTT_SERVER "192.168.1.4"//**IP address here of your MQTT server**
-#define MQTT_USERNAME ""//leave empty if not set (bad!)
-#define MQTT_PASSWORD ""//leave empty if not set (bad!)
-#define MQTT_PORT 1883
-//#define MQTT_ENCRYPTED // uncomment if MQTT connection is encrypted via TLS
-
-#define FREQUENCY 30000 //query values every 30 sec
-
-#if defined(ARDUINO_M5Stick_C) || defined(ARDUINO_M5Stick_C_Plus) || defined(ARDUINO_M5Stick_C_Plus2)
-// Values used when M5StickC, M5STickCPlus or M5Stick_C_Plus2 environment is selected:
-#define RX_PIN 36// Pin connected to the TX pin of X10A
-#define TX_PIN 26// Pin connected to the RX pin of X10A
-#else
-//Default GPIO PINs for Serial2:
-#define RX_PIN 16// Pin connected to the TX pin of X10A
-#define TX_PIN 17// Pin connected to the RX pin of X10A
-#endif
-
-#define PIN_THERM 0// Pin connected to the thermostat relay (normally open)
-#define PIN_THERM_ACTIVE_STATE HIGH// State to trigger the thermostat relay
-
-//Smart grid control - Optional:
-//Uncomment and set to enable SG mqtt functions
-//#define PIN_SG1 32// Pin connected to dry contact SG 1 relay (normally open)
-//#define PIN_SG2 33// Pin connected to dry contact SG 2 relay (normally open)
-// Define if your SG relay board is Low or High triggered (signal pins)
-// Only uncomment one of them
-#define SG_RELAY_HIGH_TRIGGER
-//#define SG_RELAY_LOW_TRIGGER
-
-// Safety relay - also called Prefered electric fare - Optional
-// If the safety relay is triggered, the heat pump will be stopped
-// uncomment and set to enable the safety relay
-// #define SAFETY_RELAY_PIN 33// Pin connected to the safety relay
-// #define SAFETY_RELAY_ACTIVE_STATE HIGH// Pin connected to the safety relay
-
-
-// DO NOT CHANGE: Defines the SG active/inactive relay states, according to the definition of the trigger status
-#if defined(SG_RELAY_LOW_TRIGGER)
-#define SG_RELAY_ACTIVE_STATE LOW
-#define SG_RELAY_INACTIVE_STATE HIGH
-#else
-#define SG_RELAY_ACTIVE_STATE HIGH
-#define SG_RELAY_INACTIVE_STATE LOW
-#endif
-
-#define MAX_MSG_SIZE 7120//max size of the json message sent in mqtt
-
-//Uncomment this line if the JSON message should be in a Json Table format []. Use only for IOBroker Vis.
-//#define JSONTABLE
-
-//Uncomment this if you want to activate the One Value <-> One Topic mode. Each value will be sent to a specific topic below
-// #define ONEVAL_ONETOPIC
-// #define MQTT_OneTopic "espaltherma/OneATTR/" //Keep the ending "/" !!
-
-//Uncomment to disable common frequent log messages via MQTT to reduce network load
-//#define DISABLE_LOG_MESSAGES
-
-
-//Uncomment *ONE* of the following according to your installation.
-//Then, open and edit the selected file in the /include/def/ folder and uncomment each values you are interested in.
-
-//To use a locale version eg German, change the path to the file to the localized version.
-
-//Eg:
-//instead of: #include "def/Altherma(EGSQH-A series 10kW GEO2).h"
-//use:
-// #include "def/German/Altherma(EGSQH-A series 10kW GEO2).h"
-//
-//Suported locales: French, German, Spanish.
-
-//#include "def/DEFAULT.h"
-
-//#include "def/Altherma(EBLA-EDLA D series 4-8kW Monobloc).h"
-//#include "def/Altherma(EBLA-EDLA D series 9-16kW Monobloc).h"
-//#include "def/Altherma(EGSAH-X-EWSAH-X-D series 6-10kW GEO3).h"
-//#include "def/Altherma(EGSQH-A series 10kW GEO2).h"
-//#include "def/Altherma(EPGA D EAB-EAV-EAVZ D(J) series 11-16kW).h"
-//#include "def/Altherma(EPRA D ETSH-X 16P30-50 D series 14-16kW-ECH2O).h"
-//#include "def/Altherma(EPRA D ETV16-ETB16-ETVZ16 D series 14-16kW).h"
-//#include "def/Altherma(EPRA D_D7 ETSH-X 16P30-50 E_E7 series 14-18kW-ECH2O).h"
-//#include "def/Altherma(EPRA D_D7 ETV16-ETB16-ETVZ16 E_E7 series 14-18kW).h"
-//#include "def/Altherma(EPRA E ETSH-X 16P30-50 E series 8-12kW-ECH2O).h"
-//#include "def/Altherma(EPRA E ETV16-ETB16-ETVZ16 E_EJ series 8-12kW).h"
-//#include "def/Altherma(ERGA D EHSH-X P30-50 D series 04-08kW-ECH2O).h"
-//#include "def/Altherma(ERGA D EHV-EHB-EHVZ DA series 04-08kW).h"
-//#include "def/Altherma(ERGA D EHV-EHB-EHVZ DJ series 04-08 kW).h"
-//#include "def/Altherma(ERGA E EHSH-X P30-50 E_EF series 04-08kW-ECH2O).h"
-//#include "def/Altherma(ERGA E EHV-EHB-EHVZ E_EJ series 04-08kW).h"
-//#include "def/Altherma(ERLA D EBSH-X 16P30-50 D SERIES 11-16kW-ECH2O).h"
-//#include "def/Altherma(ERLA D EBV-EBB-EBVZ D SERIES 11-16kW).h"
-//#include "def/Altherma(ERLA03 D EHFH-EHFZ DJ series 3kW).h"
-//#include "def/Altherma(Hybrid).h"
-//#include "def/Altherma(LT_CA_CB_04-08kW).h"
-//#include "def/Altherma(LT_CA_CB_11-16kW).h"
-//#include "def/Altherma(LT_CB_04-08kW Bizone).h"
-//#include "def/Altherma(LT_CB_11-16kW Bizone).h"
-//#include "def/Altherma(LT_EBLQ-EBLQ-CA series 5-7kW Monobloc).h"
-//#include "def/Altherma(LT_EBLQ-EDLQ-CA series 11-16kW Monobloc).h"
-//#include "def/Altherma(LT_Multi_DHWHP).h"
-//#include "def/Altherma(LT_Multi_Hybrid).h"
-//#include "def/Daikin Mini chiller(EWAA-EWYA D series 4-8kW).h"
-//#include "def/Daikin Mini chiller(EWAA-EWYA D series 9-16kW).h"
-//#include "def/Daikin Mini chiller(EWAQ-EWYQ B series 4-8kW).h"
-//#include "def/DEFAULT.h"
-//#include "def/EKHWET-BAV3(Multi DHW tank).h"
-
-//#include "def/PROTOCOL_S_ROTEX.h"
-//#include "def/PROTOCOL_S.h"
-
-
-#ifndef LABELDEF
-#warning "NO DEFINITION SELECTED: Please select your heat pump definition in /src/setup.h -- Using default."
-#include "def/DEFAULT.h"
-#endif
-
-// Default to "Protocol I"
-#ifndef PROTOCOL
-#define PROTOCOL 'I'
-#endif
diff --git a/src/wireless.cpp b/src/wireless.cpp
new file mode 100644
index 00000000..99a000a1
--- /dev/null
+++ b/src/wireless.cpp
@@ -0,0 +1,145 @@
+#include "wireless.hpp"
+
+WifiDetails **lastWifiScanResults = nullptr;
+int16_t lastWifiScanResultAmount;
+
+void start_standalone_wifi()
+{
+ IPAddress local_ip(192, 168, 1, 1);
+ IPAddress gateway(192, 168, 1, 1);
+ IPAddress subnet(255, 255, 255, 0);
+ WiFi.softAP("ESPAltherma-Config-WiFi");
+ WiFi.softAPConfig(local_ip, gateway, subnet);
+ WiFi.setHostname("ESPAltherma");
+}
+
+void checkWifi()
+{
+ int i = 0;
+ while (WiFi.status() != WL_CONNECTED) {
+ delay(500);
+ Serial.print(".");
+ if (i++ == 120) {
+ debugSerial.println("Tried for 60 sec, rebooting now.");
+ restart_board();
+ }
+ }
+}
+
+void setup_wifi()
+{
+ delay(10);
+ // we start by connecting to a WiFi network
+ debugSerial.printf("Connecting to %s\n", config->SSID.c_str());
+
+ if(config->SSID_STATIC_IP) {
+ IPAddress local_IP;
+ IPAddress subnet;
+ IPAddress gateway;
+ IPAddress primaryDNS;
+ IPAddress secondaryDNS;
+
+ local_IP.fromString(config->SSID_IP);
+ subnet.fromString(config->SSID_SUBNET);
+ gateway.fromString(config->SSID_GATEWAY);
+
+ if(config->SSID_PRIMARY_DNS != "") {
+ primaryDNS.fromString(config->SSID_PRIMARY_DNS);
+ }
+
+ if(config->SSID_SECONDARY_DNS != "") {
+ secondaryDNS.fromString(config->SSID_SECONDARY_DNS);
+ }
+
+ if (!WiFi.config(local_IP, gateway, subnet, primaryDNS, secondaryDNS)) {
+ debugSerial.println("Failed to set static ip!");
+ }
+ }
+
+ uint8_t *bssid = nullptr;
+ uint32_t wifi_channel = 0;
+
+ #ifdef ARDUINO_ARCH_ESP8266
+ get_wifi_bssid(config->SSID.c_str(), bssid, &wifi_channel);
+ #else //assume ESP32
+ WiFi.setSortMethod(WIFI_CONNECT_AP_BY_SIGNAL);
+ WiFi.setScanMethod(WIFI_ALL_CHANNEL_SCAN);
+ #endif
+
+ if (bssid != nullptr) {
+ WiFi.begin(config->SSID.c_str(), config->SSID_PASSWORD.c_str(), wifi_channel, bssid);
+ } else {
+ WiFi.begin(config->SSID.c_str(), config->SSID_PASSWORD.c_str(), 0, 0, true);
+ }
+
+ checkWifi();
+ debugSerial.printf("Connected. IP Address: %s\n", WiFi.localIP().toString().c_str());
+}
+
+void scan_wifi_delete_result()
+{
+ for (int16_t i = 0; i < lastWifiScanResultAmount; i++) {
+ delete lastWifiScanResults[i];
+ }
+
+ delete[] lastWifiScanResults;
+}
+
+void scan_wifi()
+{
+ lastWifiScanResultAmount = WiFi.scanNetworks();
+ lastWifiScanResults = new WifiDetails*[lastWifiScanResultAmount];
+
+ for (int16_t i = 0; i < lastWifiScanResultAmount; i++) {
+ lastWifiScanResults[i] = new WifiDetails {
+ .SSID = WiFi.SSID(i),
+ .RSSI = WiFi.RSSI(i),
+ .EncryptionType = WiFi.encryptionType(i)
+ };
+
+ debugSerial.print(lastWifiScanResults[i]->SSID);
+ String serialLog = " (" + String(lastWifiScanResults[i]->RSSI) + ") " + lastWifiScanResults[i]->EncryptionType + "\n";
+ debugSerial.print(serialLog);
+ delay(10);
+ }
+}
+
+#ifdef ARDUINO_ARCH_ESP8266
+void get_wifi_bssid(const char *ssid, uint8_t *bssid, uint32_t *wifi_channel)
+{
+ bssid = nullptr;
+ int n = WiFi.scanNetworks(false, true);
+
+ if (n < 1) { // no networks found
+ return;
+ }
+
+ // sort networks on RSSI value
+ int indices[n];
+ for (int i = 0; i < n; i++) {
+ indices[i] = i;
+ }
+
+ for (int i = 0; i < n; i++) {
+ for (int j = i + 1; j < n; j++) {
+ if (WiFi.RSSI(indices[j]) > WiFi.RSSI(indices[i])) {
+ std::swap(indices[i], indices[j]);
+ }
+ }
+ }
+
+ // loop through result and match highest RSSI SSID
+ for (int i = 0; i < n; i++) {
+ char scan_ssid[33]; // ssid can be up to 32chars, => plus null term
+ strlcpy(scan_ssid, WiFi.SSID(indices[i]).c_str(), sizeof(scan_ssid));
+
+ if (strcmp(ssid, scan_ssid) == 0) {
+ if (WiFi.BSSID(indices[i]) != 0) {
+ bssid = WiFi.BSSID(indices[i]);
+ *wifi_channel = WiFi.channel();
+ }
+ return;
+ }
+ }
+}
+#endif
\ No newline at end of file
diff --git a/src/wireless.hpp b/src/wireless.hpp
new file mode 100644
index 00000000..6b099810
--- /dev/null
+++ b/src/wireless.hpp
@@ -0,0 +1,43 @@
+#pragma once
+
+#ifdef ARDUINO_ARCH_ESP8266
+#include
+#else
+#include
+#endif
+
+#include
+#include "debugSerial.hpp"
+#include "Config/config.hpp"
+#include "restart.hpp"
+
+
+#ifdef ARDUINO_ARCH_ESP8266
+#define ENCRYPTION_TYPE uint8_t
+#else
+#define ENCRYPTION_TYPE wifi_auth_mode_t
+#endif
+
+struct WifiDetails
+{
+ const String SSID;
+ const int32_t RSSI;
+ const ENCRYPTION_TYPE EncryptionType;
+};
+
+extern WifiDetails **lastWifiScanResults;
+extern int16_t lastWifiScanResultAmount;
+
+void checkWifi();
+
+void start_standalone_wifi();
+
+void setup_wifi();
+
+void scan_wifi_delete_result();
+
+void scan_wifi();
+
+#ifdef ARDUINO_ARCH_ESP8266
+void get_wifi_bssid(const char *ssid, uint8_t *bssid, uint32_t *wifi_channel);
+#endif
\ No newline at end of file
diff --git a/test/README b/test/README
index 994a7878..2324ecba 100644
--- a/test/README
+++ b/test/README
@@ -17,4 +17,4 @@ Run unit tests using the `native` platform:
# On Windows, if using powershell:
# $Env:Path += ";C:\msys64\mingw64\bin\"
pio test -e native -v
-```
+```
\ No newline at end of file
diff --git a/test/arduino_to_native.h b/test/arduino_to_native.h
deleted file mode 100644
index aa21a6f5..00000000
--- a/test/arduino_to_native.h
+++ /dev/null
@@ -1,98 +0,0 @@
-// Few defines to mimic Arduino framework
-#define PROGMEM
-typedef unsigned short ushort; /* System V compatibility */
-typedef unsigned int uint; /* System V compatibility */
-typedef unsigned long ulong; /* System V compatibility */
-
-#include
-#include
-#ifndef HAVE_STRLCAT
-/*
- * '_cups_strlcat()' - Safely concatenate two strings.
- */
-
-size_t /* O - Length of string */
-strlcat(char *dst, /* O - Destination string */
- const char *src, /* I - Source string */
- size_t size) /* I - Size of destination string buffer */
-{
- size_t srclen; /* Length of source string */
- size_t dstlen; /* Length of destination string */
-
- /*
- * Figure out how much room is left...
- */
-
- dstlen = strlen(dst);
- size -= dstlen + 1;
-
- if (!size)
- return (dstlen); /* No room, return immediately... */
-
- /*
- * Figure out how much room is needed...
- */
-
- srclen = strlen(src);
-
- /*
- * Copy the appropriate amount...
- */
-
- if (srclen > size)
- srclen = size;
-
- memcpy(dst + dstlen, src, srclen);
- dst[dstlen + srclen] = '\0';
-
- return (dstlen + srclen);
-}
-#endif /* !HAVE_STRLCAT */
-
-#ifndef HAVE_STRLCPY
-/*
- * '_cups_strlcpy()' - Safely copy two strings.
- */
-
-size_t /* O - Length of string */
-strlcpy(char *dst, /* O - Destination string */
- const char *src, /* I - Source string */
- size_t size) /* I - Size of destination string buffer */
-{
- size_t srclen; /* Length of source string */
-
- /*
- * Figure out how much room is needed...
- */
-
- size--;
-
- srclen = strlen(src);
-
- /*
- * Copy the appropriate amount...
- */
-
- if (srclen > size)
- srclen = size;
-
- memcpy(dst, src, srclen);
- dst[srclen] = '\0';
-
- return (srclen);
-}
-#endif /* !HAVE_STRLCPY */
-
-
-
-class Print
-{
-public:
- Print() {}
- virtual ~Print() {}
-
- size_t printf(const char * format, ...) {return 0;}
- size_t print(const char[]) {return 0;}
-};
-
-Print Serial;
diff --git a/test/mockSetup.hpp b/test/mockSetup.hpp
new file mode 100644
index 00000000..d2ff9ec9
--- /dev/null
+++ b/test/mockSetup.hpp
@@ -0,0 +1,23 @@
+#pragma once
+
+#include
+#include
+
+class MockDebugStream : public IDebugStream
+{
+ public:
+ ~MockDebugStream() {};
+
+ size_t printf(const char * format, ...) { return 0; }
+
+ size_t print(const __FlashStringHelper *ifsh) { return 0; }
+ size_t print(const String& s) { return 0; }
+ size_t print(const char c[]) { return 0; }
+ size_t print(char c) { return 0; }
+
+ size_t println(const __FlashStringHelper *ifsh) { return 0; }
+ size_t println(const String& s) { return 0; }
+ size_t println(const char c[]) { return 0; }
+ size_t println(char c) { return 0; }
+ size_t println(void) { return 0; }
+};
\ No newline at end of file
diff --git a/test/test_CAN/test_can_protocol.cpp b/test/test_CAN/test_can_protocol.cpp
new file mode 100644
index 00000000..87bddac2
--- /dev/null
+++ b/test/test_CAN/test_can_protocol.cpp
@@ -0,0 +1,76 @@
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include "../mockSetup.hpp"
+
+using namespace fakeit;
+using namespace std;
+
+#define MODELS_CONFIG_SIZE 1024*10
+
+#define CANFile "build/CAN/English/commands_hpsu.json"
+
+CAN_Config* TestCANConfig = nullptr;
+
+class TestCANDriver : public CANDriver
+{
+private:
+ bool setMode(CanDriverMode mode) { return true; }
+
+public:
+ TestCANDriver(const CAN_Config* CANConfig, IDebugStream* const debugStream) : CANDriver(CANConfig, debugStream) {}
+ bool initInterface() { return true; }
+ void sendCommand(CANCommand* cmd, bool setValue = false, int value = 0) {}
+ ~TestCANDriver() {}
+};
+
+void setUp(void)
+{
+ ArduinoFakeReset();
+
+ TestCANConfig = new CAN_Config();
+
+ ifstream inputFile(CANFile);
+
+ if(!inputFile) {
+ throw runtime_error("Run script \"build_can_commands.py\" before running test!");
+ }
+
+ string jsonContent((istreambuf_iterator(inputFile)), istreambuf_iterator());
+ inputFile.close();
+
+ DynamicJsonDocument configDoc(MODELS_CONFIG_SIZE);
+ deserializeJson(configDoc, jsonContent);
+
+ JsonObject jsonObject = configDoc.as();
+
+ jsonObject["COMMANDS"] = jsonObject["Commands"];
+ jsonObject.remove("Commands");
+
+ IDebugStream* mockDebugStream = new MockDebugStream();
+
+ canBus_fill_config(jsonObject, TestCANConfig);
+ canBus_setup(TestCANConfig, mockDebugStream, new TestCANDriver(TestCANConfig, mockDebugStream));
+}
+
+void tearDown(void)
+{
+ // clean stuff up here
+}
+
+void test_can_read(void)
+{
+}
+
+int main(int argc, char **argv)
+{
+ UNITY_BEGIN();
+ RUN_TEST(test_can_read);
+ UNITY_END();
+
+ return 0;
+}
\ No newline at end of file
diff --git a/test/test_X10A/test_rotex_protocol.cpp b/test/test_X10A/test_rotex_protocol.cpp
new file mode 100644
index 00000000..2ec70b94
--- /dev/null
+++ b/test/test_X10A/test_rotex_protocol.cpp
@@ -0,0 +1,198 @@
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include "../mockSetup.hpp"
+
+using namespace fakeit;
+using namespace std;
+using namespace X10A;
+
+#define MODELS_CONFIG_SIZE 1024*10
+
+#define X10AFile "build/X10A/English/PROTOCOL_S_ROTEX.json"
+
+X10A_Config* TestX10AConfig = nullptr;
+
+void setUp(void)
+{
+ ArduinoFakeReset();
+
+ Mock mockX10ASerial;
+
+ When(Method(mockX10ASerial, operator bool)).Return(false);
+ When(Method(mockX10ASerial, end)).AlwaysReturn();
+ When(Method(mockX10ASerial, begin)).AlwaysReturn();
+
+ TestX10AConfig = new X10A_Config();
+ TestX10AConfig->X10A_PROTOCOL = X10AProtocol::S;
+
+ ifstream inputFile(X10AFile);
+
+ if(!inputFile) {
+ throw runtime_error("Run script \"build_x10a_commands.py\" before running test!");
+ }
+
+ string jsonContent((istreambuf_iterator(inputFile)), istreambuf_iterator());
+ inputFile.close();
+
+ DynamicJsonDocument configDoc(MODELS_CONFIG_SIZE);
+ deserializeJson(configDoc, jsonContent);
+
+ JsonObject jsonObject = configDoc.as();
+
+ jsonObject["PARAMETERS"] = jsonObject["Parameters"];
+ jsonObject.remove("Parameters");
+
+ x10a_set_serial(&mockX10ASerial.get());
+ x10a_fill_config(jsonObject, TestX10AConfig);
+ x10a_init(new MockDebugStream(), TestX10AConfig, true);
+}
+
+void tearDown(void)
+{
+ // clean stuff up here
+}
+
+void makeAssert(const String label, const String value) {
+ for (size_t i = 0; i < TestX10AConfig->PARAMETERS_LENGTH; i++) {
+ auto&& param = *TestX10AConfig->PARAMETERS[i];
+
+ if(param.label.equals(label)) {
+ TEST_ASSERT_EQUAL_STRING(value.c_str(), param.asString);
+ }
+ }
+}
+
+void overwriteBuffer(byte* buffer, byte* values, int bufferSize, int valuesSize)
+{
+ int i;
+ for (i = 0; i < valuesSize; ++i) {
+ buffer[i] = values[i];
+ }
+
+ for (; i < bufferSize; i++) {
+ buffer[i] = 0;
+ }
+}
+
+void test_rotex_converter_53(void)
+{
+ /*
+ Possible values for reg 0x53
+
+ 0x53 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xac
+ 0x53 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xab
+ 0x53 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xab
+ 0x53 0x01 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
+ 0x53 0x01 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
+ 0x53 0x01 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
+
+ */
+
+ RegistryBuffer buffer[1];
+
+ buffer[0].RegistryID = 0x53;
+ buffer[0].Success = true;
+
+ byte buffer1[] = {0x53, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa};
+ byte buffer2[] = {0x53, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa};
+
+ overwriteBuffer(buffer[0].Buffer, buffer1, sizeof(buffer[0].Buffer), sizeof(buffer1));
+
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Circulation pump", "ON");
+ makeAssert("External heater?", "ON");
+ makeAssert("Priority to domestic water", "OFF");
+ makeAssert("Burner inhibit from solaris", "OFF");
+
+ overwriteBuffer(buffer[0].Buffer, buffer2, sizeof(buffer[0].Buffer), sizeof(buffer2));
+
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Circulation pump", "ON");
+ makeAssert("External heater?", "OFF");
+ makeAssert("Priority to domestic water", "OFF");
+ makeAssert("Burner inhibit from solaris", "ON");
+}
+
+void test_rotex_converter_54(void)
+{
+ RegistryBuffer buffer[1];
+
+ buffer[0].RegistryID = 0x53;
+ buffer[0].Success = true;
+
+ byte buffer1[] = {0x54, 0x98, 0x1e, 0x70, 0x1f, 0x1c, 0x24, 0x1c, 0x24, 0xd8, 0x31, 0x01, 0x00, 0x24, 0x00, 0x00, 0x00, 0xb8};
+ byte buffer2[] = {0x54, 0x54, 0x13, 0xb0, 0x1c, 0x54, 0x1c, 0x54, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x0b};
+ byte buffer3[] = {0x54, 0x3c, 0x13, 0x98, 0x1c, 0x3c, 0x1c, 0x54, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x53};
+ byte buffer4[] = {0x54, 0xb4, 0x12, 0x84, 0x1c, 0x24, 0x1c, 0x3c, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20};
+ byte buffer5[] = {0x54, 0xcc, 0x1a, 0x6c, 0x1c, 0xb0, 0x1c, 0x3c, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x8c};
+
+ overwriteBuffer(buffer[0].Buffer, buffer1, sizeof(buffer[0].Buffer), sizeof(buffer1));
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Refrig. Temp. liquid side(C)", "30.5938");
+ makeAssert("Inlet water temp.(C)", "31.4375");
+ makeAssert("Outlet Water Temp.(C)", "36.1094");
+ makeAssert("D(C)", "36.1094");
+ makeAssert("DHW tank temp.(C)", "49.8438");
+ makeAssert("F(C)", "0.00390625");
+ makeAssert("Delta-Tr(deg)", "36");
+ makeAssert("R/C Setpoint(C)", "0");
+
+ overwriteBuffer(buffer[0].Buffer, buffer2, sizeof(buffer[0].Buffer), sizeof(buffer2));
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Refrig. Temp. liquid side(C)", "19.3281");
+ makeAssert("Inlet water temp.(C)", "28.6875");
+ makeAssert("Outlet Water Temp.(C)", "28.3281");
+ makeAssert("D(C)", "28.3281");
+ makeAssert("DHW tank temp.(C)", "46.25");
+ makeAssert("F(C)", "0.00390625");
+ makeAssert("Delta-Tr(deg)", "30");
+ makeAssert("R/C Setpoint(C)", "0");
+
+ overwriteBuffer(buffer[0].Buffer, buffer3, sizeof(buffer[0].Buffer), sizeof(buffer3));
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Refrig. Temp. liquid side(C)", "19.2344");
+ makeAssert("Inlet water temp.(C)", "28.5938");
+ makeAssert("Outlet Water Temp.(C)", "28.2344");
+ makeAssert("D(C)", "28.3281");
+ makeAssert("DHW tank temp.(C)", "46.25");
+ makeAssert("F(C)", "0.00390625");
+ makeAssert("Delta-Tr(deg)", "30");
+ makeAssert("R/C Setpoint(C)", "0");
+
+ overwriteBuffer(buffer[0].Buffer, buffer4, sizeof(buffer[0].Buffer), sizeof(buffer4));
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Refrig. Temp. liquid side(C)", "18.7031");
+ makeAssert("Inlet water temp.(C)", "28.5156");
+ makeAssert("Outlet Water Temp.(C)", "28.1406");
+ makeAssert("D(C)", "28.2344");
+ makeAssert("DHW tank temp.(C)", "46.25");
+ makeAssert("F(C)", "0.00390625");
+ makeAssert("Delta-Tr(deg)", "30");
+ makeAssert("R/C Setpoint(C)", "0");
+
+ overwriteBuffer(buffer[0].Buffer, buffer5, sizeof(buffer[0].Buffer), sizeof(buffer5));
+ x10a_convert_values(buffer, 1, false);
+ makeAssert("Refrig. Temp. liquid side(C)", "26.7969");
+ makeAssert("Inlet water temp.(C)", "28.4219");
+ makeAssert("Outlet Water Temp.(C)", "28.6875");
+ makeAssert("D(C)", "28.2344");
+ makeAssert("DHW tank temp.(C)", "46.25");
+ makeAssert("F(C)", "0.00390625");
+ makeAssert("Delta-Tr(deg)", "30");
+ makeAssert("R/C Setpoint(C)", "0");
+}
+
+int main(int argc, char **argv)
+{
+ UNITY_BEGIN();
+ RUN_TEST(test_rotex_converter_53);
+ RUN_TEST(test_rotex_converter_54);
+ UNITY_END();
+
+ return 0;
+}
\ No newline at end of file
diff --git a/test/test_rotex_protocol.cpp b/test/test_rotex_protocol.cpp
deleted file mode 100644
index 405efe93..00000000
--- a/test/test_rotex_protocol.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-#include
-#include
-#include
-
-// Few defines to mimic Arduino framework
-#include "arduino_to_native.h"
-
-#include "def/PROTOCOL_S_ROTEX.h"
-#include "converters.h"
-
-void setUp(void)
-{
- // set stuff up here
-}
-
-void tearDown(void)
-{
- // clean stuff up here
-}
-std::string decode_data(unsigned char *buff)
-{
- Converter converter;
- converter.readRegistryValues(buff, 'S');
- LabelDef *labels[128];
- int num = 0;
- converter.getLabels(buff[0], labels, num);
- std::stringstream result;
- for (size_t i = 0; i < num; ++i)
- {
- result << labels[i]->label << ": " << labels[i]->asString << "; ";
- }
- return result.str();
-}
-
-void test_rotex_converter_53(void)
-{
- Converter converter;
- /*
- Possible values for reg 0x53
-
- 0x53 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xac
- 0x53 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xab
- 0x53 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xab
- 0x53 0x01 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
- 0x53 0x01 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
- 0x53 0x01 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xaa
-
- */
- unsigned char buff[] = {0x53, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa};
- auto result = decode_data(buff);
- TEST_ASSERT_EQUAL_STRING("Circulation pump: ON; External heater?: ON; Priority to domestic water: OFF; Burner inhibit from solaris: OFF; ", result.c_str());
- // std::cout << result << std::endl;
- unsigned char buff2[] = {0x53, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa};
- result = decode_data(buff2);
- TEST_ASSERT_EQUAL_STRING("Circulation pump: ON; External heater?: OFF; Priority to domestic water: OFF; Burner inhibit from solaris: ON; ", result.c_str());
- // std::cout << result << std::endl;
-}
-
-void test_rotex_converter_54(void)
-{
- unsigned char buff[] = {0x54, 0x98, 0x1e, 0x70, 0x1f, 0x1c, 0x24, 0x1c, 0x24, 0xd8, 0x31, 0x01, 0x00, 0x24, 0x00, 0x00, 0x00, 0xb8};
- // auto result = decode_data(buff);
- // std::cout << result << std::endl;
-
- unsigned char buff1[] = {0x54, 0x54, 0x13, 0xb0, 0x1c, 0x54, 0x1c, 0x54, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x0b};
- unsigned char buff2[] = {0x54, 0x3c, 0x13, 0x98, 0x1c, 0x3c, 0x1c, 0x54, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x53};
- unsigned char buff3[] = {0x54, 0xb4, 0x12, 0x84, 0x1c, 0x24, 0x1c, 0x3c, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20};
- unsigned char buff4[] = {0x54, 0xcc, 0x1a, 0x6c, 0x1c, 0xb0, 0x1c, 0x3c, 0x1c, 0x40, 0x2e, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x8c};
- TEST_ASSERT_EQUAL_STRING("Refrig. Temp. liquid side(C): 30.5938; Inlet water temp.(C): 31.4375; Outlet Water Temp.(C): 36.1094; D(C): 36.1094; DHW tank temp.(C): 49.8438; F(C): 0.00390625; Delta-Tr(deg): 36; R/C Setpoint(C): 0; ",
- decode_data(buff).c_str());
- TEST_ASSERT_EQUAL_STRING("Refrig. Temp. liquid side(C): 19.3281; Inlet water temp.(C): 28.6875; Outlet Water Temp.(C): 28.3281; D(C): 28.3281; DHW tank temp.(C): 46.25; F(C): 0.00390625; Delta-Tr(deg): 30; R/C Setpoint(C): 0; ",
- decode_data(buff1).c_str());
- TEST_ASSERT_EQUAL_STRING("Refrig. Temp. liquid side(C): 19.2344; Inlet water temp.(C): 28.5938; Outlet Water Temp.(C): 28.2344; D(C): 28.3281; DHW tank temp.(C): 46.25; F(C): 0.00390625; Delta-Tr(deg): 30; R/C Setpoint(C): 0; ",
- decode_data(buff2).c_str());
- TEST_ASSERT_EQUAL_STRING("Refrig. Temp. liquid side(C): 18.7031; Inlet water temp.(C): 28.5156; Outlet Water Temp.(C): 28.1406; D(C): 28.2344; DHW tank temp.(C): 46.25; F(C): 0.00390625; Delta-Tr(deg): 30; R/C Setpoint(C): 0; ",
- decode_data(buff3).c_str());
- TEST_ASSERT_EQUAL_STRING("Refrig. Temp. liquid side(C): 26.7969; Inlet water temp.(C): 28.4219; Outlet Water Temp.(C): 28.6875; D(C): 28.2344; DHW tank temp.(C): 46.25; F(C): 0.00390625; Delta-Tr(deg): 30; R/C Setpoint(C): 0; ",
- decode_data(buff4).c_str());
- // std::cout << decode_data(buff1) << std::endl;
- // std::cout << decode_data(buff2) << std::endl;
- // std::cout << decode_data(buff3) << std::endl;
- // std::cout << decode_data(buff4) << std::endl;
-}
-
-int main(int argc, char **argv)
-{
- UNITY_BEGIN();
- RUN_TEST(test_rotex_converter_53);
- RUN_TEST(test_rotex_converter_54);
- UNITY_END();
-
- return 0;
-}
\ No newline at end of file
diff --git a/webui/index.html b/webui/index.html
new file mode 100644
index 00000000..8710acc3
--- /dev/null
+++ b/webui/index.html
@@ -0,0 +1,752 @@
+
+
+
+ ESPAltherma Config
+
+
+
+
+
+
+
+
+
+
+
+
+ Loading, please wait...
+
+
+
+
+
+
+
+