Skip to content

Commit db0f4dc

Browse files
authored
Merge pull request #431 from LKuemmel/pv_yields
pv module yields
2 parents 967dae0 + 6b06002 commit db0f4dc

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/components/status/InverterCard.vue

+31
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,37 @@
7171
)
7272
"
7373
/>
74+
<openwb-base-heading>Erträge</openwb-base-heading>
75+
<openwb-base-text-input
76+
title="Heute"
77+
readonly
78+
class="text-right text-monospace"
79+
step="0.001"
80+
unit="kWh"
81+
:model-value="
82+
formatNumberTopic('openWB/pv/' + inverter.id + '/get/daily_exported', 3, 3, 0.001)
83+
"
84+
/>
85+
<openwb-base-text-input
86+
title="Dieser Monat"
87+
readonly
88+
class="text-right text-monospace"
89+
step="0.001"
90+
unit="kWh"
91+
:model-value="
92+
formatNumberTopic('openWB/pv/' + inverter.id + '/get/monthly_exported', 3, 3, 0.001)
93+
"
94+
/>
95+
<openwb-base-text-input
96+
title="Dieses Jahr"
97+
readonly
98+
class="text-right text-monospace"
99+
step="0.001"
100+
unit="kWh"
101+
:model-value="
102+
formatNumberTopic('openWB/pv/' + inverter.id + '/get/yearly_exported', 3, 3, 0.001)
103+
"
104+
/>
74105
</openwb-base-card>
75106
</template>
76107

0 commit comments

Comments
 (0)