Advanced Peripherals RS Bridge Input Source
lua
telem.input.advancedPeripherals.rsBridge (
peripheralID: string,
categories?: string[] | '*'
)
Mod Dependencies
Requires Advanced Peripherals and Refined Storage.
See the Usage section for a complete list of the metrics in each category.
Name | Type | Default |
---|---|---|
peripheralID | string | nil |
Peripheral ID of the RS 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_rsBridge', telem.input.advancedPeripherals.rsBridge('right', '*'))
:cycleEvery(5)()
Given a RS 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 |
---|---|---|
aprsbridge:energy_usage | 0.0 - inf | FE/t |
Energy
Name | Value | Unit |
---|---|---|
aprsbridge:energy | 0.0 - inf | FE |
aprsbridge:max_energy | 0.0 - inf | FE |
Storage
Name | Value | Unit |
---|---|---|
aprsbridge:item_disk_capacity | 0 - inf | item |
aprsbridge:item_external_capacity | 0 - inf | item |
aprsbridge:fluid_disk_capacity | 0.0 - inf | B |
aprsbridge:fluid_external_capacity | 0.0 - inf | B |
Storage
Given an RS Bridge peripheral attached to a Refined Storage network with the following stored items and fluids:
This appends the following metrics to the backplane:
Name | Value | Unit |
---|---|---|
storage:minecraft:lava | 23.81 | B |
storage:minecraft:oak_planks | 3 | item |
storage:minecraft:redstone | 459 | item |