Fixed ACR issue.
[platform/core/api/zigbee.git] / src / zbl-zcl-on-off.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "zbl.h"
17 #include "zbl-dbus.h"
18 #include "zb-common.h"
19
20 API int zb_zcl_on_off_control(zb_zigbee_h handle, zb_nwk_addr addr16, unsigned char ep,
21         zb_zcl_on_off_e on_off_type)
22 {
23         int ret;
24         CHECK_FEATURE_SUPPORTED(ZIGBEE_FEATURE);
25         RETV_IF(NULL == handle, ZIGBEE_ERROR_INVALID_PARAMETER);
26         RETV_IF(NULL == zbl_dbus_get_object(), ZIGBEE_ERROR_IO_ERROR);
27         RETV_IF(0 == addr16, ZIGBEE_ERROR_INVALID_ADDRESS);
28         RETV_IF(0 == ep, ZIGBEE_ERROR_INVALID_ENDPOINT);
29
30         ret = zbl_onoff_set(addr16, ep, on_off_type);
31         return ret;
32 }