| /** |
| * |
| * Copyright (c) 2020 Project CHIP Authors |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| /** |
| * @file |
| * This file provides cluster ids that are normally generated by the |
| * ZCL Advanced Platform (ZAP) generator for use in the CHIP ZCL |
| * Application Layer. These declarations are provided here for the |
| * purposes of unit testing the CHIP ZCL Application Layer |
| * |
| */ |
| |
| // Enclosing macro to prevent multiple inclusion |
| #ifndef CHIP_ZCL_GEN_CLUSTER_ID_HEADER |
| #define CHIP_ZCL_GEN_CLUSTER_ID_HEADER |
| |
| // Cluster ids. |
| enum |
| { |
| CHIP_ZCL_CLUSTER_BASIC = 0x0000, |
| CHIP_ZCL_CLUSTER_IDENTIFY = 0x0003, |
| CHIP_ZCL_CLUSTER_GROUPS = 0x0004, |
| CHIP_ZCL_CLUSTER_SCENES = 0x0005, |
| CHIP_ZCL_CLUSTER_ON_OFF = 0x0006, |
| CHIP_ZCL_CLUSTER_LEVEL_CONTROL = 0x0008, |
| CHIP_ZCL_CLUSTER_OTA_BOOTLOAD = 0x2000, |
| }; |
| |
| #endif // CHIP_ZCL_GEN_CLUSTER_ID_HEADER |