forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_metering.cpp
272 lines (233 loc) · 11.5 KB
/
simple_metering.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include <math.h>
#include "de_web_plugin.h"
#include "de_web_plugin_private.h"
#include "device_descriptions.h"
#include "simple_metering.h"
const std::array<KeyValMapInt, 5> RConfigInterfaceModeValuesEMIZB = { { {1, NORWEGIAN_HAN}, {2, NORWEGIAN_HAN_EXTRA_LOAD}, {3, AIDON_METER},
{4, KAIFA_KAMSTRUP_METERS}, {5, AUTO_DETECT} } };
/*! Handle packets related to the ZCL simple metering cluster.
\param ind the APS level data indication containing the ZCL packet
\param zclFrame the actual ZCL frame which holds the simple metering cluster command or attribute
*/
void DeRestPluginPrivate::handleSimpleMeteringClusterIndication(const deCONZ::ApsDataIndication &ind, const deCONZ::ZclFrame &zclFrame)
{
if (zclFrame.isDefaultResponse())
{
return;
}
Sensor *sensor = getSensorNodeForAddressAndEndpoint(ind.srcAddress(), ind.srcEndpoint(), QLatin1String("ZHAConsumption"));
if (!sensor)
{
DBG_Printf(DBG_INFO, "No consumption sensor found for 0x%016llX, endpoint: 0x%02X\n", ind.srcAddress().ext(), ind.srcEndpoint());
return;
}
QDataStream stream(zclFrame.payload());
stream.setByteOrder(QDataStream::LittleEndian);
bool isReadAttr = false;
bool isReporting = false;
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReadAttributesResponseId)
{
isReadAttr = true;
}
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReportAttributesId)
{
isReporting = true;
}
// Read ZCL reporting and ZCL Read Attributes Response
if (isReadAttr || isReporting)
{
const auto modelId = sensor->modelId();
const NodeValue::UpdateType updateType = isReadAttr ? NodeValue::UpdateByZclRead : NodeValue::UpdateByZclReport;
bool configUpdated = false;
bool stateUpdated = false;
while (!stream.atEnd())
{
quint16 attrId;
quint8 attrTypeId;
stream >> attrId;
if (isReadAttr)
{
quint8 status;
stream >> status; // Read Attribute Response status
if (status != deCONZ::ZclSuccessStatus)
{
continue;
}
}
stream >> attrTypeId;
deCONZ::ZclAttribute attr(attrId, attrTypeId, QLatin1String(""), deCONZ::ZclRead, false);
if (!attr.readFromStream(stream))
{
continue;
}
ResourceItem *item = nullptr;
switch (attrId)
{
case METERING_ATTRID_CURRENT_SUMMATION_DELIVERED:
{
quint64 consumption = attr.numericValue().u64;
item = sensor->item(RStateConsumption);
if (modelId == QLatin1String("SmartPlug") || // Heiman
modelId.startsWith(QLatin1String("PSMP5_")) || // Climax
modelId.startsWith(QLatin1String("SKHMP30")) || // GS smart plug
modelId.startsWith(QLatin1String("E13-")) || // Sengled PAR38 Bulbs
modelId.startsWith(QLatin1String("Z01-A19"))) // Sengled smart led
{
consumption = static_cast<quint64>(round((double)consumption / 10.0)); // 0.1 Wh -> Wh
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Math.round(Attr.val / 10)");
}
else if (modelId == QLatin1String("Smart plug Zigbee PE") || // Niko Smart Plug 552-80699
modelId == QLatin1String("TS011F") || // Tuya / Blitzwolf
modelId == QLatin1String("TS0121")) // Tuya / Blitzwolf
{
consumption *= 10; // 0.01 kWh = 10 Wh -> Wh
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Attr.val * 10");
}
else if (modelId.startsWith(QLatin1String("SZ-ESW01"))) // Sercomm / Telstra smart plug
{
consumption = static_cast<quint64>(round((double)consumption / 1000.0)); // -> Wh
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Math.round(Attr.val / 1000)");
}
else if (modelId.startsWith(QLatin1String("ROB_200")) || // ROBB Smarrt micro dimmer
modelId.startsWith(QLatin1String("Micro Smart Dimmer")) || // Sunricher Micro Smart Dimmer
modelId.startsWith(QLatin1String("SPW35Z"))) // RT-RK OBLO SPW35ZD0 smart plug
{
consumption = static_cast<quint64>(round((double)consumption / 3600.0)); // -> Wh
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Math.round(Attr.val / 3600)");
}
else
{
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Attr.val");
}
if (item && item->toNumber() != static_cast<qint64>(consumption))
{
item->setValue(consumption); // in Wh (0.001 kWh)
enqueueEvent(Event(RSensors, RStateConsumption, sensor->id(), item));
}
sensor->setZclValue(updateType, ind.srcEndpoint(), METERING_CLUSTER_ID, attrId, attr.numericValue());
stateUpdated = true;
}
break;
case METERING_ATTRID_INTERFACE_MODE:
{
if (zclFrame.manufacturerCode() == VENDOR_DEVELCO)
{
const quint16 interfaceMode = attr.numericValue().u16;
item = sensor->item(RConfigInterfaceMode);
quint8 mode = 0;
if (modelId.startsWith(QLatin1String("EMIZB-1")))
{
if (interfaceMode == NORWEGIAN_HAN) { mode = 1; }
else if (interfaceMode == NORWEGIAN_HAN_EXTRA_LOAD) { mode = 2; }
else if (interfaceMode == AIDON_METER) { mode = 3; }
else if (interfaceMode == KAIFA_KAMSTRUP_METERS) { mode = 4; }
else if (interfaceMode == AUTO_DETECT) { mode = 5; }
}
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "console.log('todo script')");
if (item && mode != 0 && item->toNumber() != mode)
{
item->setValue(mode);
enqueueEvent(Event(RSensors, RConfigInterfaceMode, sensor->id(), item));
configUpdated = true;
}
}
sensor->setZclValue(updateType, ind.srcEndpoint(), METERING_CLUSTER_ID, attrId, attr.numericValue());
}
break;
case METERING_ATTRID_INSTANTANEOUS_DEMAND:
{
qint32 power = attr.numericValue().s32;
item = sensor->item(RStatePower);
if (modelId == QLatin1String("SmartPlug") || // Heiman
modelId == QLatin1String("902010/25") || // Bitron
modelId.startsWith(QLatin1String("Z01-A19")) || // Sengled smart led
modelId.startsWith(QLatin1String("PSMP5_")) || // Climax
modelId.startsWith(QLatin1String("SKHMP30")) || // GS smart plug
modelId.startsWith(QLatin1String("160-01"))) // Plugwise smart plug
{
power = static_cast<qint32>(round((double)power / 10.0)); // 0.1W -> W
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Math.round(Attr.val / 10)");
}
else if (modelId.startsWith(QLatin1String("SZ-ESW01"))) // Sercomm / Telstra smart plug
{
power = static_cast<qint32>(round((double)power / 1000.0)); // -> W
DDF_AnnoteZclParse(sensor, item, ind.srcEndpoint(), ind.clusterId(), attrId, "Item.val = Math.round(Attr.val / 1000)");
}
if (item && item->toNumber() != power)
{
item->setValue(power); // in W
enqueueEvent(Event(RSensors, RStatePower, sensor->id(), item));
}
sensor->setZclValue(updateType, ind.srcEndpoint(), METERING_CLUSTER_ID, attrId, attr.numericValue());
stateUpdated = true;
}
break;
default:
break;
}
}
if (stateUpdated)
{
sensor->updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor->id()));
}
if (configUpdated || stateUpdated)
{
updateSensorEtag(&*sensor);
sensor->setNeedSaveDatabase(true);
queSaveDb(DB_SENSORS, DB_SHORT_SAVE_DELAY);
}
}
}
/*! Write Attribute on thermostat cluster.
* Iterate over every day and get schedule for each day.
\param task - the task item
\param attrId
\param attrType
\param attrValue
\return true - on success
false - on error
*/
bool DeRestPluginPrivate::addTaskSimpleMeteringReadWriteAttribute(TaskItem &task, uint8_t readOrWriteCmd, uint16_t attrId, uint8_t attrType, uint32_t attrValue, uint16_t mfrCode)
{
if (readOrWriteCmd != deCONZ::ZclReadAttributesId && readOrWriteCmd != deCONZ::ZclWriteAttributesId)
{
DBG_Printf(DBG_INFO, "Invalid command for simple metering cluster %d\n", readOrWriteCmd);
return false;
}
task.taskType = TaskSimpleMetering;
task.req.setClusterId(METERING_CLUSTER_ID);
task.req.setProfileId(HA_PROFILE_ID);
task.zclFrame.payload().clear();
task.zclFrame.setSequenceNumber(zclSeq++);
task.zclFrame.setCommandId(readOrWriteCmd);
task.zclFrame.setFrameControl(deCONZ::ZclFCProfileCommand |
deCONZ::ZclFCDirectionClientToServer |
deCONZ::ZclFCDisableDefaultResponse);
if (mfrCode != 0x0000)
{
task.zclFrame.setFrameControl(task.zclFrame.frameControl() | deCONZ::ZclFCManufacturerSpecific);
task.zclFrame.setManufacturerCode(mfrCode);
}
// payload
QDataStream stream(&task.zclFrame.payload(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
if (readOrWriteCmd == deCONZ::ZclWriteAttributesId)
{
stream << attrId;
stream << attrType;
deCONZ::ZclAttribute attr(attrId, attrType, QLatin1String(""), deCONZ::ZclWrite, true);
attr.setValue(QVariant(attrValue));
if (!attr.writeToStream(stream))
{
return false;
}
}
{ // ZCL frame
task.req.asdu().clear(); // cleanup old request data if there is any
QDataStream stream(&task.req.asdu(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
task.zclFrame.writeToStream(stream);
}
return addTask(task);
}