Powah Energy Cell Input Source 
lua
telem.input.powah.energyCell (
  peripheralID: string,
  categories?: string[] | '*'
)Mod Dependencies
Requires Minecraft 1.19.2 and Advanced Peripherals.
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 Cell | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_energyCell', telem.input.powah.energyCell('right', '*'))
  :cycleEvery(5)()Given a Energy Cell 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 | 
|---|---|---|
| powahcell:energy | 0.0 - inf | FE | 
| powahcell:max_energy | 0.0 - inf | FE |