Fixed ACR issue.
[platform/core/api/zigbee.git] / src / zbl-zcl-thermostat.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_thermostat_adjust_setpoint(zb_zigbee_h handle, zb_nwk_addr addr16,
21         unsigned char ep, unsigned char mode, unsigned char amount)
22 {
23         int ret = ZIGBEE_ERROR_NONE;
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(0x02 < mode, ZIGBEE_ERROR_PARAMETER_OUT_OF_RANGE);
29         RETV_IF(0 == ep, ZIGBEE_ERROR_INVALID_ENDPOINT);
30
31         ret = zbl_thermostat_adjust_setpoint(addr16, ep, mode, amount);
32         return ret;
33 }
34