2 * Copyright (c) 2010-2024 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.androidtv.internal.protocol.googletv;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link GoogleTVConstants} class defines common constants, which are
19 * used across the googletv protocol.
21 * @author Ben Rosenblum - Initial contribution
24 public class GoogleTVConstants {
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";
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";