Chagne DBus object name following Zigbee Specification
[platform/core/connectivity/zigbee-manager.git] / common / include / zigbee_thermostat_type.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Contact: Suresh Kumar N (suresh.n@samsung.com)
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef __ZIGBEE_THERMOSTAT_TYPE_H__
20 #define __ZIGBEE_THERMOSTAT_TYPE_H__
21
22 #include <zigbee_types.h>
23
24 /**
25  * @brief Definition for thermostat get local temperature structure.
26  * @since_tizen 3.0
27  */
28 typedef struct {
29         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
30         char endpoint; /**< Endpoint */
31 } ZigbeeThermostatGetLocalTemp_t;
32
33 /**
34  * @brief Definition for thermostat get weekly schedule structure.
35  * @since_tizen 3.0
36  */
37 typedef struct {
38         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
39         char endpoint; /**< Endpoint */
40         char num_of_days; /**< Number of days */
41         char mode; /**< Mode */
42 } ZigbeeThermostatGetWeeklySchedule_t;
43
44 /**
45  * @brief Definition for thermostat set weekly schedule structure.
46  * @since_tizen 3.0
47  */
48 typedef struct {
49         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
50         char endpoint; /**< Endpoint */
51         char no_of_transitions; /**< Number of transitions */
52         char num_of_days; /**< Number of days */
53         char mode; /**< Mode */
54         char payload[ZIGBEE_THERMSTAT_PAYLOAD_MAX_LEN]; /**< Payload */
55         char payload_len; /**< Payload length */
56 } ZigbeeThermostatSetWeeklySchedule_t;
57
58 /**
59  * @brief Definition for thermostat clear weekly schedule structure.
60  * @since_tizen 3.0
61  */
62 typedef struct {
63         char eui64[ZIGBEE_EUI64_SIZE]; /**< EUI64 (an IEEE address) */
64         char endpoint; /**< Endpoint */
65 } ZigbeeThermostatClearWeeklySchedule_t;
66
67 /**
68  * @brief Definition for thermostat setpoint raise lower structure.
69  * @since_tizen 3.0
70  */
71 typedef struct {
72         short node_id; /**< Node ID */
73         char endpoint; /**< Endpoint */
74         char mode; /**< Mode */
75         char amount; /**< Amount */
76 } ZigbeeThermostatSetpointRaiseLower_t;
77
78 #endif /* __ZIGBEE_THERMOSTAT_TYPE_H__ */