Powah Solar Panel Input Source 
lua
telem.input.powah.solarPanel (
  peripheralID: string,
  categories?: string[] | '*'
)Mod Dependencies
Requires Minecraft 1.19.2 and 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 Solar Panel | ||
| categories | string[] | "*" | { "basic" } | 
| List of metric categories to query. The value  lua  | ||
Usage 
lua
local telem = require 'telem'
local backplane = telem.backplane()
  :addInput('my_solarPanel', telem.input.powah.solarPanel('right', '*'))
  :cycleEvery(5)()Given a Solar Panel 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 | 
|---|---|---|
| powahsolar:sees_sky | 0 or 1 | |
| powahsolar:energy | 0.0 - inf | FE | 
| powahsolar:max_energy | 0.0 - inf | FE |