Advanced Peripherals Environment Detector Input Source
lua
telem.input.advancedPeripherals.environmentDetector (
peripheralID: string,
categories?: string[] | '*'
)
Mod Dependencies
Requires Advanced Peripherals.
See the Usage section for a complete list of the metrics in each category.
Name | Type | Default |
---|---|---|
peripheralID | string | nil |
Peripheral ID of the Environment Detector | ||
categories | string[] | "*" | { "basic" } |
List of metric categories to query. The value lua
|
Usage
lua
local telem = require 'telem'
local backplane = telem.backplane()
:addInput('my_environmentDetector', telem.input.advancedPeripherals.environmentDetector('right', '*'))
:cycleEvery(5)()
Given a Environment Detector peripheral on the right
side of the computer, this appends the following metrics to the backplane (grouped by category here for clarity):
Basic
lua
MOON_PHASES = {
['Full moon'] = 0, ['Waning gibbous'] = 1,
['Third quarter'] = 2, ['Waning crescent'] = 3,
['New moon'] = 4, ['Waxing crescent'] = 5,
['First quarter'] = 6, ['Waxing gibbous'] = 7
}
Name | Value | Unit |
---|---|---|
apenv:block_light_level | 0 - 15 | |
apenv:day_light_level | 0 - 15 | |
apenv:sky_light_level | 0 - 15 | |
apenv:moon_id | MOON_PHASES value | |
apenv:time | 0 - inf | |
apenv:radiation | 0.0 - inf | Sv/h |
apenv:can_sleep | 0 or 1 | |
apenv:raining | 0 or 1 | |
apenv:sunny | 0 or 1 | |
apenv:thundering | 0 or 1 | |
apenv:slime_chunk | 0 or 1 |