Mekanism Enrichment Chamber Input Source ​
lua
telem.input.mekanism.enrichmentChamber (
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 Enrichment Chamber | ||
categories | string[] | "*" | { "basic" } |
List of metric categories to query. The value lua
|
Usage ​
lua
local telem = require 'telem'
local backplane = telem.backplane()
:addInput('my_enrichmentChamber', telem.input.mekanism.enrichmentChamber('right', '*'))
:cycleEvery(5)()
Given a Enrichment Chamber 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 |
---|---|---|
mekenrich:input_count | 0 - inf | item |
mekenrich:output_count | 0 - inf | item |
mekenrich:energy_usage | 0.0 - inf | FE/t |
mekenrich:energy_filled_percentage | 0.0 - 1.0 |
Advanced ​
Name | Value | Unit |
---|---|---|
mekenrich:comparator_level | 0 - 15 |
Energy ​
Name | Value | Unit |
---|---|---|
mekenrich:energy | 0.0 - inf | FE |
mekenrich:max_energy | 0.0 - inf | FE |
mekenrich:energy_needed | 0.0 - inf | FE |
Recipe ​
Name | Value | Unit |
---|---|---|
mekenrich:recipe_progress | 0 - inf | t |
mekenrich:ticks_required | 0 - inf | t |