Mekanism Fluidic Plenisher Input Source
lua
telem.input.mekanism.fluidicPlenisher (
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 Fluidic Plenisher | ||
categories | string[] | "*" | { "basic" } |
List of metric categories to query. The value lua | ||
Usage
lua
local telem = require 'telem'
local backplane = telem.backplane()
:addInput('my_fluidicPlenisher', telem.input.mekanism.fluidicPlenisher('right', '*'))
:cycleEvery(5)()Given a Fluidic Plenisher 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 |
|---|---|---|
mekplenisher:input_item_count | 0 - inf | item |
mekplenisher:output_item_count | 0 - inf | item |
mekplenisher:fluid_filled_percentage | 0.0 - 1.0 | |
mekplenisher:energy_filled_percentage | 0.0 - 1.0 |
Advanced
| Name | Value | Unit |
|---|---|---|
mekplenisher:comparator_level | 0 - 15 |
Input
| Name | Value | Unit |
|---|---|---|
mekplenisher:fluid | 0.0 - inf | B |
mekplenisher:fluid_capacity | 0.0 - inf | B |
mekplenisher:fluid_needed | 0.0 - inf | B |
Energy
| Name | Value | Unit |
|---|---|---|
mekplenisher:energy | 0.0 - inf | FE |
mekplenisher:max_energy | 0.0 - inf | FE |
mekplenisher:energy_needed | 0.0 - inf | FE |