Bigger Reactors Turbine Input Source 
lua
telem.input.biggerReactors.turbine (
  peripheralID: string,
  categories?: string[] | '*'
)Mod Dependencies
Requires Bigger Reactors.
See the Usage section for a complete list of the metrics in each category.
| Name | Type | Default | 
|---|---|---|
| peripheralID | string | nil | 
| Peripheral ID of the Turbine | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_turbine', telem.input.biggerReactors.turbine('right', '*'))
  :cycleEvery(5)()Given a Turbine 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 | 
|---|---|---|
| brturbine:coil_engaged | 0 or 1 | |
| brturbine:flow_rate | 0.0 - inf | B/t | 
| brturbine:input | 0.0 - inf | B | 
| brturbine:output | 0.0 - inf | B | 
| brturbine:rpm | 0.0 - inf | RPM | 
| brturbine:efficiency | 0.0 - inf | |
| brturbine:active | 0 or 1 | |
| brturbine:connected | 0 or 1 | |
| brturbine:production_rate | 0.0 - inf | FE/t | 
Fluid 
| Name | Value | Unit | 
|---|---|---|
| brturbine:nominal_flow_rate | 0.0 - inf | B/t | 
| brturbine:max_flow_rate | 0.0 - inf | B/t | 
| brturbine:input_capacity | 0.0 - inf | B | 
| brturbine:output_capacity | 0.0 - inf | B | 
Energy 
| Name | Value | Unit | 
|---|---|---|
| brturbine:energy | 0.0 - inf | FE | 
| brturbine:energy_capacity | 0.0 - inf | FE |