Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EnergyOneWayMeterV2Device does not update Value in UI #6

Open
geri-m opened this issue Sep 10, 2023 · 1 comment
Open

EnergyOneWayMeterV2Device does not update Value in UI #6

geri-m opened this issue Sep 10, 2023 · 1 comment

Comments

@geri-m
Copy link

geri-m commented Sep 10, 2023

I create an Energy Meter like this:

const energyMeter = await freeAtHome.createEnergyOneWayMeterV2Device("TasmotaEnergyMeter", "Tasmota Regular Meter")
energyMeter.setAutoKeepAlive(true);
energyMeter.setAutoConfirm(true);
energyMeter.isAutoConfirm = true;

energyMeter.setCurrentPowerConsumed("1111");
energyMeter.setTotalEnergyExported("2222");
energyMeter.setExportedEnergyCostsToday("33333");
energyMeter.setExportedEnergyCostsTotal("3333");

but the data in the UI does not change (Note: in the Add-One I constantly update the values every 5 secs). The same procedure words nicely for my virtual Weather Station.

Bildschirmfoto 2023-09-10 um 16 45 46

@StefanGuelland
Copy link
Contributor

The energy management display is still under active development in free@home.
The devices and their visualization are not yet stable.

With firmware version 3.2.4, values for current consumption and daily consumption can be displayed

  const energyMeter = await freeAtHome.createEnergyOneWayMeterV2Device("TasmotaEnergyMeter", "Tasmota Regular Meter")
energyMeter.setAutoKeepAlive(true);

energyMeter.setCurrentPowerConsumed("1111");
energyMeter.setExportedEnergyToday("4242");

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants