mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2025-09-17 12:41:11 +00:00
Page:
Characters
Pages
Alarms
Alternative Installation Strategies
Annunciator Panels
Characters
Color Accessibility
Configurator Tools
Coordinator Configurator
Coordinator Legacy Config
Coordinator
Design and Regulatory References
FAQ and Common Problems
Glossary
High Rate Calculation
Home
Known Issues
Legacy Config
Legacy Coordinator Settings File
Main View Screen
Mekanism API Notes
Networking
Operating Procedure
PPM
Pocket
Process Control Closed Loop Controller
Project Files
Quickstart
RSIO
RTU Gateway Configurator
RTU Gateway Legacy Config
RTU Gateway
Reactor PLC Configurator
Reactor PLC Legacy Config
Reactor PLC
Reactor Temperature Calculation
Status Messages
Supervisor Configurator
Supervisor Legacy Config
Supervisor
System Setup
System Views
Threading
Unit View Screens
Valve and Flow Screen
Waste Setup
No results
3
Characters
Mikayla edited this page 2023-09-26 18:06:53 -04:00
Table of Contents
ComputerCraft provides characters beyond standard letters and numbers that this application extensively uses to provide icons, square indicators, even borders, and even looking pipes. These can be found in the source code as hex, such as \x81
in a string.
Example Source
I generated this with the following Lua code:
term.clear()
term.setCursorPos(1, 1)
term.setTextColor(colors.white)
term.setBackgroundColor(colors.lightGray)
term.write(" ")
term.setCursorPos(2, 1)
term.write(" ")
local hex = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}
for i = 1, #hex do
term.write(" " .. hex[i])
end
term.setCursorPos(1, 2)
for i = 0, 15 do
term.setTextColor(colors.white)
term.setBackgroundColor(colors.lightGray)
term.write(hex[i + 1] .. "_")
term.setBackgroundColor(colors.black)
for j = 0, 15 do
term.write(" " .. string.char(i * 16 + j))
end
term.setCursorPos(1, i + 3)
end
- User Manual
- Computer Applications
- Notable System Components
- Notes
- Investigations
- References & Resources
- Legacy
If you need help beyond this wiki, open a support discussion or ask on Discord! If you prefer videos, they can be found on my YouTube channel.