Mekanism Chemical Oxidizer Input Source 
lua
telem.input.mekanism.chemicalOxidizer (
  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 Chemical Oxidizer | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_chemicalOxidizer', telem.input.mekanism.chemicalOxidizer('right', '*'))
  :cycleEvery(5)()Given a Chemical Oxidizer 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 | 
|---|---|---|
| mekchemoxidizer:input_count | 0 - inf | item | 
| mekchemoxidizer:output_filled_percentage | 0.0 - 1.0 | |
| mekchemoxidizer:output_item_count | 0 - inf | item | 
| mekchemoxidizer:energy_usage | 0.0 - inf | FE/t | 
| mekchemoxidizer:energy_filled_percentage | 0.0 - 1.0 | 
Advanced 
| Name | Value | Unit | 
|---|---|---|
| mekchemoxidizer:comparator_level | 0 - 15 | 
Output 
| Name | Value | Unit | 
|---|---|---|
| mekchemoxidizer:output | 0.0 - inf | B | 
| mekchemoxidizer:output_capacity | 0.0 - inf | B | 
| mekchemoxidizer:output_needed | 0.0 - inf | B | 
Energy 
| Name | Value | Unit | 
|---|---|---|
| mekchemoxidizer:energy | 0.0 - inf | FE | 
| mekchemoxidizer:max_energy | 0.0 - inf | FE | 
| mekchemoxidizer:energy_needed | 0.0 - inf | FE | 
Recipe 
| Name | Value | Unit | 
|---|---|---|
| mekchemoxidizer:recipe_progress | 0 - inf | t | 
| mekchemoxidizer:ticks_required | 0 - inf | t |