Skip to content

Commit 761650e

Browse files
authored
fix: Fixed LoraTap SC400ZB-EU calibration time reading (#8321)
1 parent f263bc0 commit 761650e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/converters/fromZigbee.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ const converters1 = {
22132213
if (meta.device.manufacturerName === '_TZ3000_cet6ch1r') {
22142214
const endpoint = msg.endpoint.ID;
22152215
const calibrationLookup: KeyValueAny = {1: 'up', 2: 'down'};
2216-
result[postfixWithEndpointName(`calibration_time_'${calibrationLookup[endpoint]}'`, msg, model, meta)] = value;
2216+
result[postfixWithEndpointName(`calibration_time_${calibrationLookup[endpoint]}`, msg, model, meta)] = value;
22172217
} else {
22182218
result[postfixWithEndpointName('calibration_time', msg, model, meta)] = value;
22192219
}

0 commit comments

Comments
 (0)