Display Module
The Display Module allows the user to control LCD panels, and cockpit screens on the grid.
Commands
Print a message to an LCD panel or group of panels.
screen/print <Screen|Group> <Message> <Options>
Info
At this time Mother cannot print text to cockpit screens.
Options
Option | Values | Unit | Description |
---|---|---|---|
color | RGB | Set the color of the text. | |
size | Number | Set the text size between 0.0 and 10.0. |
You have access to the following colors which may be used in place of their RGB values:
Name | RGB | Hexidecimal |
---|---|---|
255,0,0 | FF0000 | |
0,255,0 | 00FF00 | |
0,0,255 | 0000FF | |
255,255,0 | FFFF00 | |
255,165,0 | FFA500 | |
0,255,255 | 00FFFF | |
255,0,255 | FF00FF | |
255,255,255 | FFFFFF | |
0,0,0 | 000000 |
Example
Imagine we want to print text to a screen based on our airlock status. We contextualize it further with color and print a size that is easily legible.
screen/print "AirlockStatusScreens" "Airlock SAFE" --color=green --size=4.4