Mekanism Energy Cube Input Source 
lua
telem.input.mekanism.energyCube (
  peripheralID: string,
  categories?: string[] | '*'
)Mod Dependencies
Requires Mekanism.
See the Usage section for a complete list of the metrics in each category.
| Name | Type | Default | 
|---|---|---|
| peripheralID | string | nil | 
| Peripheral ID of the Energy Cube | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_energyCube', telem.input.mekanism.energyCube('right', '*'))
  :cycleEvery(5)()Given a Energy Cube peripheral on the right side of the computer, this appends the following metrics to the backplane (grouped by category here for clarity):
Basic 
| Name | Value | Unit | 
|---|---|---|
| mekenergycube:charge_item_count | 0 - inf | item | 
| mekenergycube:discharge_item_count | 0 - inf | item | 
| mekenergycube:energy_filled_percentage | 0.0 - 1.0 | 
Advanced 
| Name | Value | Unit | 
|---|---|---|
| mekenergycube:comparator_level | 0 - 15 | 
Energy 
| Name | Value | Unit | 
|---|---|---|
| mekenergycube:energy | 0.0 - inf | FE | 
| mekenergycube:max_energy | 0.0 - inf | FE | 
| mekenergycube:energy_needed | 0.0 - inf | FE |