Creating and Using Lua Scripts

Advanced topic

 

Warning

  • Use caution and test extensively when using Lua scripts for automated control of remote devices to prevent unexpected operation or damage to connected equipment.
 

 

Introduction

eGauge meters have a Lua scripting environment that allows for creation of advanced formula register and alert functions, as well as automated control of supported devices such as the eGauge PRM3 Power Relay Module.

Refer to the Lua Scripting Overview article for a general Lua primer and additional modules provided by the eGauge firmware.

 

Lua Scripting Interface

 

The eGauge web interface has a built-in Lua script editor with 3 panes, as shown in the above screenshot.

  • Editor (top left) The Lua code editor. There are four buttons for this pane.
    • [1] Save: This saves the functions and makes them available for use by the meter.
    • [2] Search: This allows to search for and replace text in the code.
    • [3] Upload: This replaces the current script on the meter with an uploaded file.
    • [4] Download: This downloads the current script from the meter as a file.
       
  • Output log (bottom left) Below the editor, the Lua log is displayed. This will include any script errors or print statements. If there are no custom Lua functions for the script loaded, there may be an error such as "Lua error: cannot open xxx.lua: No such file or directory", and this error may be ignored. There are 4 buttons available for this pane:
    • [5] Filter: Apply a filter to only output log lines containing certain text.
    • [6] Autoscroll: Toggles auto-scrolling to the most recent log output.
    • [7] Download: Downlaods the log file.
    • [8] Mazimize Window: Maximizes the log output window.
       
  • Sidebar (right) The sidebar on the right-hand side provides a method explorer to find and describe all available eGauge-provided functions and modules. The function or module may be clikced on to automatically insert it into the Editor pane to the left. The sidebar has a search bar [9] to conveniently search through methods, functions and documentation

Several Keyboard shortcuts are displayed when the interface is loaded:

  • F1: Open the keyboard shortcuts menu
  • F2: Toggle the sidebar on the right
  • Ctrl-␣: Toggle auto-complete
  • Ctrl-,: Open the GUI settings menu

 

Accessing the Lua Scripting Environment

Step 1: If using the ‘Classic Interface’, click on View → Modern user-interface

 

If needed, access the Modern User Interface from the Classic view as shown above

 

Step 2: Navigate to Setup → Lua and choose the appropriate script type:

 

Script Types

Formulas Script

Creating Lua functions in the Formulas script editor will allow the functions to be used in a formula register.
For example, here are two functions made in the Lua Formulas script editor that will return the min or max of two numbers:

-- function returning the larger of two numbers
function lua_max(num1, num2)
 if (num1 > num2) then
    result = num1;
 else
    result = num2;
 end
 return result;
end

--function returning the lesser of two numbers
function lua_min(num1, num2)
 if (num1 < num2) then
    result = num1;
 else
    result = num2;
 end
 return result;
end

 

They may then be used in a formula register:

 

And we may see the registers work as defined by the script functions:

 

 
 

Tariff Script

Advanced time-of-use and tiered billing may be performed in this Lua script.

  • eGauge Support is not able to provide tariff scripts for different utility providers.
 

A tariff script should provide (at least) a cost(register, negate, schedule) function which calculates the incremental cost based on the energy-use recorded by register. negate can be set to true if the register's value counts down for power consumption. Schedule is optional and can be set to the (non-default) name of the schedule to use when calculating the cost.

A formula register of type "monetary" would be used with the cost() function.

For an example billing script, from the classic interface:

  1. Navigate to Settings → Billing.
  2. Choose Xcel Colorado as the tariff provider.
  3. Click "OK" to save and go back to the main settings page.
  4. Go back to Settings → Billing.
  5. Change the tariff provider to “custom”
  6. Click the "Customize tariff script" button, which will open a copy of the Xcel Colorado billing tariff in the Lua script editor.
 
 

Alert Script

Alerts scripts work the same as Formula scripts, but are used in eGauge meter alerts, configured in Setup → Other settings then Alerts at the left.

 
 

Control Scripts

Warning

  • There is risk of damaging external equipment using control scripts. Only skilled Lua developers familiar with the eGauge meter and software should attempt to use Lua control scripts.
 

Information

See the main Lua Scripting Overview Control Scripts section for additional Lua Control environment information.

 

 

Control scripts can be used to control supported equipment such as the eGauge Power Relay Module (PRM3).

For example, the following script reads the instantaneous value of a register called "Temperature" and controls a PRM3 relay contact. If the temperature is lower than 21 C, relay number 0 of the PRM3 is closed (activated), otherwise opens (turns off) relay number 0. It then sleeps for 15 minutes before checking again.

In the real world, the control script should be more advanced

dev = ctrl:dev({interface='relay'})
  relay = dev:interface('relay')

  while true do
    print("Temperature is currently: " .. __r("Temperature"))
    if __r("Temperature") < 21 then
        relay:close(0)
    else
        relay:open(0)
    end
    sleep(60*15)
  end
 
 

Persistent Variables

See the main Lua Scripting Overview section on Persistent variables.

Persistent variables are variables that are preserved between reboots or power cycles.

The following Formula script creates and updates a persistent variables with a given name and number passed to it in a formula register, and prints debug to the output log:

function persistent_variable_example(name, number)
  
     obj = persistent:new(name, number, "Variable stored by formula function persistent_variable_example")
  
     current_value = obj:get()
     print(name .. " currently has value " .. current_value)
  
     print("updating " .. name .. "to new value " .. number)
  
     obj:set(number)
  end

A register is configured to run the formula script:

This creates or updates a persistent variable called variable test 1 with the current time.

The Formula script editor shows the print debug as the variable is updated once a second as the formula register is run:

15:26:28.168 variable test 1 currently has value 22.043333333333
15:26:28.168 updating variable test 1 to new value 22.043611111111
15:26:29.171 variable test 1 currently has value 22.043611111111
15:26:29.172 updating variable test 1 to new value 22.043888888889
15:26:30.168 variable test 1 currently has value 22.043888888889
15:26:30.168 updating variable test 1 to new value 22.044166666667
15:26:31.168 variable test 1 currently has value 22.044166666667
15:26:31.168 updating variable test 1 to new value 22.044444444444

Although this specific example may seem trivial, persistent variables can be utilized in any Lua script. Control scripts run continuously, so there’s no need to create a formula register to execute them.