Powah Reactor Input Source 
lua
telem.input.powah.reactor (
  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 Reactor | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_reactor', telem.input.powah.reactor('right', '*'))
  :cycleEvery(5)()Given a Reactor 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 | 
|---|---|---|
| powahreactor:running | 0 or 1 | |
| powahreactor:fuel | 0.0 - 100.0 | % | 
| powahreactor:carbon | 0.0 - 100.0 | % | 
| powahreactor:redstone | 0.0 - 100.0 | % | 
| powahreactor:temperature | 0.0 - 100.0 | % | 
| powahreactor:energy | 0.0 - inf | FE | 
| powahreactor:max_energy | 0.0 - inf | FE |