github kizniche/Mycodo v8.15.7
8.15.7

latest releases: v8.15.13, v8.15.12, v8.15.11...
13 months ago

8.15.7 (2023-03-02)

This update fixes a few bugs and adds the new Input Equation Action, which can apply an equation to an Input measurements prior to being stored in the database. For instance, if you wanted to apply an offset of +10 to a particular measurement of an Input, you could use the equation "x+10".

In order for this new Action to be able to be created, there had to be a refactoring of the trigger_action() API function and run_action() Action module function.

All references your code previously made to:

trigger_action(action_id, value=None, message='', debug=False)

Will need to be changed to:

trigger_action(action_id, value=None, debug=False)

Additionally, custom Action modules previously with the Class function:

run_action(self, message, dict_vars)

Will need to be changed to:

run_action(self, dict_vars)

Since dict_vars will be a dictionary that contains the key "message". Any messages added in run_action() will need to be appended to dict_vars['message']. Additionally, dict_vars will need to be returned by run_action() rather than the variable messages.

Again, if you use any custom Actions, it is imperative that you make this second update to your modules for them to be able to properly work when upgrading to or beyond v8.15.7.

Bugfixes

  • Fix Regulate pH & EC Function not regulating pH when water needs to be added
  • Fix unit conversion of Python 3 Code Input
  • Fix influxdb warning text during install (does not affect the actual install) (#1276)
  • Fix MQTT JSON Input not storing values as float
  • Fix PID Controller Widget timestamps

Features

  • Add Input Equation Action
  • Add Search to Log Page

Miscellaneous

  • Update Python packages
  • Remove Daemonize as a requirement

Don't miss a new Mycodo release

NewReleases is sending notifications on new releases.