Mekanism Injecting Factory Input Source 
lua
telem.input.mekanism.injectingFactory (
  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 Injecting Factory | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_injectingFactory', telem.input.mekanism.injectingFactory('right', '*'))
  :cycleEvery(5)()Given a Injecting Factory 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 | 
|---|---|---|
| mekinject:chemical_item_count | 0 - inf | item | 
| mekinject:chemical_filled_percentage | 0.0 - 1.0 | |
| mekinject:input_count_sum | 0 - inf | item | 
| mekinject:output_count_sum | 0 - inf | item | 
| mekinject:energy_usage | 0.0 - inf | FE/t | 
| mekinject:energy_filled_percentage | 0.0 - 1.0 | 
Advanced 
| Name | Value | Unit | 
|---|---|---|
| mekinject:auto_sort | 0 or 1 | |
| mekinject:comparator_level | 0 - 15 | 
Input 
| Name | Value | Unit | 
|---|---|---|
| mekinject:chemical | 0.0 - inf | B | 
| mekinject:chemical_capacity | 0.0 - inf | B | 
| mekinject:chemical_needed | 0.0 - inf | B | 
Energy 
| Name | Value | Unit | 
|---|---|---|
| mekinject:energy | 0.0 - inf | FE | 
| mekinject:max_energy | 0.0 - inf | FE | 
| mekinject:energy_needed | 0.0 - inf | FE | 
Recipe 
| Name | Value | Unit | 
|---|---|---|
| mekinject:recipe_progress_NIndexed per process | 0 - inf | t | 
| mekinject:ticks_required | 0 - inf | t |