Advanced Peripherals ME Bridge Input Source
lua
telem.input.advancedPeripherals.meBridge (
peripheralID: string,
categories?: string[] | '*'
)
Mod Dependencies
Requires Advanced Peripherals and Applied Energistics 2.
See the Usage section for a complete list of the metrics in each category.
Name | Type | Default |
---|---|---|
peripheralID | string | nil |
Peripheral ID of the ME Bridge | ||
categories | string[] | "*" | { "basic" } |
List of metric categories to query. The value lua
|
Usage
lua
local telem = require 'telem'
local backplane = telem.backplane()
:addInput('my_meBridge', telem.input.advancedPeripherals.meBridge('right', '*'))
:cycleEvery(5)()
Given a ME Bridge 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 |
---|---|---|
apmebridge:energy_usage | 0.0 - inf | FE/t |
apmebridge:item_storage_used | 0 - inf | bytes |
apmebridge:fluid_storage_used | 0 - inf | bytes |
apmebridge:cell_count | 0 - inf |
Energy
Name | Value | Unit |
---|---|---|
apmebridge:energy | 0.0 - inf | FE |
apmebridge:max_energy | 0.0 - inf | FE |
Storage
Name | Value | Unit |
---|---|---|
apmebridge:item_storage_capacity | 0 - inf | bytes |
apmebridge:item_storage_available | 0 - inf | bytes |
apmebridge:fluid_storage_capacity | 0 - inf | bytes |
apmebridge:fluid_storage_available | 0 - inf | bytes |
Storage
Given an ME Bridge peripheral attached to an ME storage network with the following stored items and fluids:
This appends the following metrics to the backplane:
Name | Value | Unit |
---|---|---|
storage:minecraft:lava | 29.25 | B |
storage:minecraft:oak_planks | 3 | item |
storage:minecraft:redstone | 1408 | item |
If Applied Mekanistics is installed, any stored chemicals and gases will also be included as metrics.