Skip to content

Commit 6b36819

Browse files
authored
fix: Fix ShinaSystem PMM-300Z2 and PMM-300Z3 ac frequency (#8094)
- PMM-300Z2 and PMM-300Z3 do not support acFrequencyDivisor and acFrequencyMultiplier attributes.
1 parent 53f2959 commit 6b36819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/devices/shinasystem.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -586,15 +586,15 @@ const definitions: DefinitionWithExtend[] = [
586586
vendor: 'ShinaSystem',
587587
ota: ota.zigbeeOTA,
588588
description: 'SiHAS energy monitor',
589-
extend: [electricityMeter({acFrequency: true, powerFactor: true}), temperature()],
589+
extend: [electricityMeter({acFrequency: {multiplier: 1, divisor: 10}, powerFactor: true}), temperature()],
590590
},
591591
{
592592
zigbeeModel: ['PMM-300Z3'],
593593
model: 'PMM-300Z3',
594594
vendor: 'ShinaSystem',
595595
ota: ota.zigbeeOTA,
596596
description: 'SiHAS 3phase energy monitor',
597-
extend: [electricityMeter({acFrequency: true, powerFactor: true}), temperature()],
597+
extend: [electricityMeter({acFrequency: {multiplier: 1, divisor: 10}, powerFactor: true}), temperature()],
598598
},
599599
{
600600
zigbeeModel: ['DLM-300Z'],

0 commit comments

Comments
 (0)