Event handling in OpenComputers usually flows through computer.pushSignal, computer.pullSignal, the OpenOS event library, and callback-driven component signals.
local event = require("event")
local name, address, x, y = event.pull("touch")- Signals originate from hardware, component callbacks, or software calls such as
computer.pushSignal. - OpenOS wraps low-level signal handling through the
eventlibrary. - Component pages in this documentation call out component-specific signal payloads where they are known from source or bundled manuals.