]> git.basschouten.com Git - openhab-addons.git/blob
614f09731d417dad88603ad755d343463093f5de
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.kostalinverter.internal.thirdgeneration;
14
15 /**
16  * The {@link ThirdGenerationInverterTypes} contains the list of supported devices
17  * Each one is represented by a dedicated thing
18  *
19  * @author RenĂ© Stakemeier - Initial contribution
20  */
21 public enum ThirdGenerationInverterTypes {
22     PLENTICORE_PLUS_42_WITH_BATTERY,
23     PLENTICORE_PLUS_42_WITHOUT_BATTERY,
24     PLENTICORE_PLUS_55_WITH_BATTERY,
25     PLENTICORE_PLUS_55_WITHOUT_BATTERY,
26     PLENTICORE_PLUS_70_WITH_BATTERY,
27     PLENTICORE_PLUS_70_WITHOUT_BATTERY,
28     PLENTICORE_PLUS_85_WITH_BATTERY,
29     PLENTICORE_PLUS_85_WITHOUT_BATTERY,
30     PLENTICORE_PLUS_100_WITH_BATTERY,
31     PLENTICORE_PLUS_100_WITHOUT_BATTERY,
32     PIKOIQ_42,
33     PIKOIQ_55,
34     PIKOIQ_70,
35     PIKOIQ_85,
36     PIKOIQ_100
37 }