]> git.basschouten.com Git - openhab-addons.git/blob
3287c78698d1e89a034c6b6b0238a9f8b7c2c332
[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.solarwatt.internal.domain.model;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.solarwatt.internal.domain.dto.DeviceDTO;
17
18 /**
19  * Specialised class for the MyReserve inverter.
20  *
21  * The MyReserve also contains {@link MyReservePowerMeter} and {@link MyReserve}.
22  * This fields have been identified to exist:
23  * com.kiwigrid.devices.solarwatt.MyReserveInverter=[
24  * PowerBatteryDC,
25  * IdMyReserveSetupRole,
26  * IdMyReserveSetup,
27  * IdDcCoupledBatteriesList,
28  * IdInverter,
29  * Command
30  * ]
31  *
32  * @author Sven Carstens - Initial contribution
33  */
34 @NonNullByDefault
35 public class MyReserveInverter extends Inverter {
36     public static final String SOLAR_WATT_CLASSNAME = "com.kiwigrid.devices.solarwatt.MyReserveInverter";
37
38     public MyReserveInverter(DeviceDTO deviceDTO) {
39         super(deviceDTO);
40     }
41
42     @Override
43     protected String getSolarWattLabel() {
44         return "MyReserveInverter";
45     }
46 }