]> git.basschouten.com Git - openhab-addons.git/blob
ed2da9a384bb1869e6de9ea0f507b3fb028bd8e0
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 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.solarforecast.internal.forecastsolar.config;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.solarforecast.internal.SolarForecastBindingConstants;
17
18 /**
19  * The {@link ForecastSolarPlaneConfiguration} class contains fields mapping thing configuration parameters.
20  *
21  * @author Bernd Weymann - Initial contribution
22  */
23 @NonNullByDefault
24 public class ForecastSolarPlaneConfiguration {
25     public int declination = -1;
26     public int azimuth = -1;
27     public double kwp = 0;
28     public long refreshInterval = 30;
29     public double dampAM = 0.25;
30     public double dampPM = 0.25;
31     public String horizon = SolarForecastBindingConstants.EMPTY;
32 }