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

Power monitoring improvements request #5897

Closed
stepanov1975 opened this issue May 31, 2019 · 3 comments
Closed

Power monitoring improvements request #5897

stepanov1975 opened this issue May 31, 2019 · 3 comments
Labels
question Type - Asking for Information requested feature (hold over) Result - Feature that will not be added soon (out of scope)

Comments

@stepanov1975
Copy link

stepanov1975 commented May 31, 2019

Hi,
I have a couple of feature requests.

  1. Over/under voltage protection
    AFAIU VoltageHigh, VoltageLow currently thresholds for MQTT reporting. It will be useful if it will be possible to turn off the load also based on those thresholds.

  2. Power reporting
    Power reporting thresholds currently set by PowerDelta in percents. The problem with percents always near zero. Usually, it is not very important to send a report when power changes from 1W to 1.1W (10%), but important when it changes from 1000W to 1100W that is also 10%. It will be better if PowerDelta will be in wats, but I suppose for back compatibility it is problematic to change this now. So it will be good if an additional parameter will be added that will prevent MQTT messages for small changes (set minimum change limit in W). I know it is PowerLow parameter, but I don't want to lose all low power reports completely.
    Also, the possibility to set a minimum time between MQTT reports will be helpful. It seems now when power changes more than PowerDelta it will be reported each second. This may create a substantial load on the monitoring system for multiple devices.

P.S. One additional thing. As I understand currently voltage/current/power reported via MQTT is a momentary value at the time of the report. It would be nice if it is possible, to report the average value since the last report.

Thank you.

@Jason2866
Copy link
Collaborator

Jason2866 commented May 31, 2019

There are many features nice to have. Please keep the very very limited resources of the device in mind.
The features you want can be realized with rules or the new scripter engine.
Tasmotas main goal is to be controlled via a Home Automation system.
Thx for your suggestions.

Please, address this to the Tasmota Support Chat. The chat is a better and more dynamic channel for helping you. Github issues are meant for Tasmota Software Bug Reporting.

Please check the Contributing Guideline and Policy and the Support Guide.

Thanks.

Support Information

See Wiki for more information.
See Chat for more user experience.
See Community for forum.
See Code of Conduct

@meingraham
Copy link
Collaborator

meingraham commented May 31, 2019

@stepanov1975

#1 Code a rule that triggers on ENERGY#Voltage or ENERGY#Current, or even ENERGY#Power. Since setting the thresholds causes telemetry to be posted, you can trigger on the value, e.g., `ON ENERGY#Voltage>150 DO Power OFF ENDON'

#2 I agree that percentages are problematic. An enhancement to PowerDelta could be 0-100 - treat as percentage. Greater than 100 - treat as an absolute offset by 100, e.g., PowerDelta 500 would set a 400W threshold.

In the meantime... you can also use a rule to adjust PowerDelta based on the current Power value. Using the one-shot feature of rules, you can make the rule send a message only once when the threshold is crossed.

Backlog PowerDelta 0; Rule1 0; Rule1 5
 
Rule1 
ON ENERGY#Power>=35 DO Backlog PowerDelta 10; Status 8 BREAK 
ON ENERGY#Power>=15 DO Backlog PowerDelta 25; Status 8 BREAK 
ON ENERGY#Power>5 DO Backlog PowerDelta 35; Status 8 BREAK 
ON ENERGY#Power<=5 DO Backlog PowerDelta 100 ENDON

Rule1 1

Which translates to:

Rule Pseudo Code
IF ENERGY#Power>=35  // ENERGY#Power GE 35
  DO Backlog PowerDelta 10; Status 8
ELSE IF ENERGY#Power>=15  // ENERGY#Power GE 15 and LT 35
  DO Backlog PowerDelta 25; Status 8
ELSE IF ENERGY#Power>5  // ENERGY#Power GT 5 and LT 15
  DO Backlog PowerDelta 35; Status 8
ELSE  // ENERGY#Power changed (i.e. LE 5)
  DO PowerDelta 100

Mike

@ascillato2
Copy link
Collaborator

Closing this issue as it has been answered.


Support Information (Guide)

See Wiki for more information.
See FAQ for common questions/answers and links if none of your question is in the list.
See Chat for more user experience.
See Community for forum.
See Code of Conduct

@ascillato2 ascillato2 added question Type - Asking for Information requested feature (hold over) Result - Feature that will not be added soon (out of scope) labels Jun 1, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Type - Asking for Information requested feature (hold over) Result - Feature that will not be added soon (out of scope)
Projects
None yet
Development

No branches or pull requests

4 participants