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