]> git.basschouten.com Git - openhab-addons.git/blob
70642913fcaa7bb1e44fbbb32b5422958b0c8b74
[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.androidtv.internal.protocol.googletv;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link GoogleTVConstants} class defines common constants, which are
19  * used across the googletv protocol.
20  *
21  * @author Ben Rosenblum - Initial contribution
22  */
23 @NonNullByDefault
24 public class GoogleTVConstants {
25
26     // List of all static String literals
27     public static final String DELIMITER_00 = "00";
28     public static final String DELIMITER_01 = "01";
29     public static final String DELIMITER_02 = "02";
30     public static final String DELIMITER_08 = "08";
31     public static final String DELIMITER_0A = "0a";
32     public static final String DELIMITER_10 = "10";
33     public static final String DELIMITER_12 = "12";
34     public static final String DELIMITER_1A = "1a";
35     public static final String DELIMITER_42 = "42";
36     public static final String DELIMITER_92 = "92";
37     public static final String DELIMITER_A2 = "a2";
38     public static final String DELIMITER_C2 = "c2";
39
40     public static final String MESSAGE_POWEROFF = "c202020800";
41     public static final String MESSAGE_POWERON = "c202020801";
42     public static final String MESSAGE_PINSUCCESS = "080210c801ca02";
43     public static final String HARD_DROP = "ffffffff";
44 }