-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDeviceTempSensor.cpp
123 lines (107 loc) · 4.57 KB
/
DeviceTempSensor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* This file is part of the Silicon Labs Arduino Core
*
* The MIT License (MIT)
*
* Copyright 2024 Silicon Laboratories Inc. www.silabs.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "DeviceTempSensor.h"
DeviceTempSensor::DeviceTempSensor(const char* device_name,
int16_t min,
int16_t max,
int16_t measured_value) :
Device(device_name),
min_value(min),
max_value(max),
measured_value(measured_value)
{
;
}
int16_t DeviceTempSensor::GetMeasuredValue()
{
return this->measured_value;
}
void DeviceTempSensor::SetMeasuredValue(int16_t measurement)
{
if (measurement < this->min_value) {
measurement = this->min_value;
} else if (measurement > this->max_value) {
measurement = this->max_value;
}
bool changed = this->measured_value != measurement;
ChipLogProgress(DeviceLayer, "TempSensorDevice[%s]: new measurement='%d'", this->device_name, measurement);
this->measured_value = measurement;
if (changed) {
this->HandleTempSensorDeviceStatusChanged(kChanged_MeasurementValue);
CallDeviceChangeCallback();
}
}
uint32_t DeviceTempSensor::GetTempSensorClusterFeatureMap()
{
return this->temp_sensor_cluster_feature_map;
}
uint16_t DeviceTempSensor::GetTempSensorClusterRevision()
{
return this->temp_sensor_cluster_revision;
}
EmberAfStatus DeviceTempSensor::HandleReadEmberAfAttribute(ClusterId clusterId,
chip::AttributeId attributeId,
uint8_t* buffer,
uint16_t maxReadLength)
{
if (!this->reachable) {
return EMBER_ZCL_STATUS_FAILURE;
}
using namespace ::chip::app::Clusters::TemperatureMeasurement::Attributes;
ChipLogProgress(DeviceLayer, "HandleReadTempSensorAttribute: clusterId=%lu attrId=%ld", clusterId, attributeId);
if (clusterId == chip::app::Clusters::BridgedDeviceBasicInformation::Id) {
return this->HandleReadBridgedDeviceBasicAttribute(clusterId, attributeId, buffer, maxReadLength);
}
if (clusterId != chip::app::Clusters::TemperatureMeasurement::Id) {
return EMBER_ZCL_STATUS_FAILURE;
}
if ((attributeId == MeasuredValue::Id) && (maxReadLength == 2)) {
int16_t measuredValue = this->GetMeasuredValue();
memcpy(buffer, &measuredValue, sizeof(measuredValue));
} else if ((attributeId == MinMeasuredValue::Id) && (maxReadLength == 2)) {
int16_t minValue = this->min_value;
memcpy(buffer, &minValue, sizeof(minValue));
} else if ((attributeId == MaxMeasuredValue::Id) && (maxReadLength == 2)) {
int16_t maxValue = this->max_value;
memcpy(buffer, &maxValue, sizeof(maxValue));
} else if ((attributeId == FeatureMap::Id) && (maxReadLength == 4)) {
uint32_t featureMap = this->GetTempSensorClusterFeatureMap();
memcpy(buffer, &featureMap, sizeof(featureMap));
} else if ((attributeId == ClusterRevision::Id) && (maxReadLength == 2)) {
uint16_t clusterRevision = this->GetTempSensorClusterRevision();
memcpy(buffer, &clusterRevision, sizeof(clusterRevision));
} else {
return EMBER_ZCL_STATUS_FAILURE;
}
return EMBER_ZCL_STATUS_SUCCESS;
}
void DeviceTempSensor::HandleTempSensorDeviceStatusChanged(Changed_t itemChangedMask)
{
using namespace ::chip::app::Clusters;
if (itemChangedMask & DeviceTempSensor::kChanged_MeasurementValue) {
ScheduleMatterReportingCallback(this->endpoint_id, TemperatureMeasurement::Id, TemperatureMeasurement::Attributes::MeasuredValue::Id);
}
}