]> git.basschouten.com Git - openhab-addons.git/blob
62f79c38fb8f86a58d30a5423669d7da57090149
[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.bluetooth.bluegiga.internal.command.attributedb;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.bluetooth.bluegiga.internal.BlueGigaCommand;
17
18 /**
19  * Class to implement the BlueGiga command <b>write</b>.
20  * <p>
21  * This command writes an attribute's value to the local database.
22  * <p>
23  * This class provides methods for processing BlueGiga API commands.
24  * <p>
25  * Note that this code is autogenerated. Manual changes may be overwritten.
26  *
27  * @author Chris Jackson - Initial contribution of Java code generator
28  */
29 @NonNullByDefault
30 public class BlueGigaWriteCommand extends BlueGigaCommand {
31     public static final int COMMAND_CLASS = 0x02;
32     public static final int COMMAND_METHOD = 0x00;
33
34     /**
35      * Handle of the attribute to write.
36      * <p>
37      * BlueGiga API type is <i>uint16</i> - Java type is {@link int}
38      */
39     private int handle;
40
41     /**
42      * Attribute offset to write data
43      * <p>
44      * BlueGiga API type is <i>uint8</i> - Java type is {@link int}
45      */
46     private int offset;
47
48     /**
49      * Value of the attribute to write
50      * <p>
51      * BlueGiga API type is <i>uint8array</i> - Java type is {@link int[]}
52      */
53     private int[] value = new int[0];
54
55     /**
56      * Handle of the attribute to write.
57      *
58      * @param handle the handle to set as {@link int}
59      */
60     public void setHandle(int handle) {
61         this.handle = handle;
62     }
63
64     /**
65      * Attribute offset to write data
66      *
67      * @param offset the offset to set as {@link int}
68      */
69     public void setOffset(int offset) {
70         this.offset = offset;
71     }
72
73     /**
74      * Value of the attribute to write
75      *
76      * @param value the value to set as {@link int[]}
77      */
78     public void setValue(int[] value) {
79         this.value = value;
80     }
81
82     @Override
83     public int[] serialize() {
84         // Serialize the header
85         serializeHeader(COMMAND_CLASS, COMMAND_METHOD);
86
87         // Serialize the fields
88         serializeUInt16(handle);
89         serializeUInt8(offset);
90         serializeUInt8Array(value);
91
92         return getPayload();
93     }
94
95     @Override
96     public String toString() {
97         final StringBuilder builder = new StringBuilder();
98         builder.append("BlueGigaWriteCommand [handle=");
99         builder.append(handle);
100         builder.append(", offset=");
101         builder.append(offset);
102         builder.append(", value=");
103         for (int c = 0; c < value.length; c++) {
104             if (c > 0) {
105                 builder.append(' ');
106             }
107             builder.append(String.format("%02X", value[c]));
108         }
109         builder.append(']');
110         return builder.toString();
111     }
112 }