]> git.basschouten.com Git - openhab-addons.git/blob
7573405f1207cd66a0dd756d60f756a1a8e7a9c1
[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.hdpowerview.internal.dto.requests;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * State of a single Repeater for being updated by an HD PowerView Hub
19  *
20  * @author Jacob Laursen - Initial contribution
21  */
22 @NonNullByDefault
23 public class RepeaterBlinking {
24     public Repeater repeater;
25
26     public class Repeater {
27         public int id;
28         public boolean blinkEnabled;
29
30         public Repeater(int id, boolean enable) {
31             this.id = id;
32             this.blinkEnabled = enable;
33         }
34     }
35
36     public RepeaterBlinking(int id, boolean enable) {
37         repeater = new Repeater(id, enable);
38     }
39 }