Mekanism Pigment Mixer Input Source 
lua
telem.input.mekanism.pigmentMixer (
  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 Pigment Mixer | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_pigmentMixer', telem.input.mekanism.pigmentMixer('right', '*'))
  :cycleEvery(5)()Given a Pigment Mixer 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 | 
|---|---|---|
| mekpigmentmixer:input_left_item_count | 0 - inf | item | 
| mekpigmentmixer:input_right_item_count | 0 - inf | item | 
| mekpigmentmixer:input_left_filled_percentage | 0.0 - 1.0 | |
| mekpigmentmixer:input_right_filled_percentage | 0.0 - 1.0 | |
| mekpigmentmixer:output_item_count | 0 - inf | item | 
| mekpigmentmixer:output_filled_percentage | 0.0 - 1.0 | |
| mekpigmentmixer:energy_usage | 0.0 - inf | FE/t | 
| mekpigmentmixer:energy_filled_percentage | 0.0 - 1.0 | 
Advanced 
| Name | Value | Unit | 
|---|---|---|
| mekpigmentmixer:comparator_level | 0 - 15 | 
Input 
| Name | Value | Unit | 
|---|---|---|
| mekpigmentmixer:input_left | 0.0 - inf | B | 
| mekpigmentmixer:input_left_capacity | 0.0 - inf | B | 
| mekpigmentmixer:input_left_needed | 0.0 - inf | B | 
| mekpigmentmixer:input_right | 0.0 - inf | B | 
| mekpigmentmixer:input_right_capacity | 0.0 - inf | B | 
| mekpigmentmixer:input_right_needed | 0.0 - inf | B | 
Output 
| Name | Value | Unit | 
|---|---|---|
| mekpigmentmixer:output | 0.0 - inf | B | 
| mekpigmentmixer:output_capacity | 0.0 - inf | B | 
| mekpigmentmixer:output_needed | 0.0 - inf | B | 
Energy 
| Name | Value | Unit | 
|---|---|---|
| mekpigmentmixer:energy | 0.0 - inf | FE | 
| mekpigmentmixer:max_energy | 0.0 - inf | FE | 
| mekpigmentmixer:energy_needed | 0.0 - inf | FE |