modem.open

Opens a channel on a modem. A channel must be opened to receive messages from it. A modem can only have 128 channels open at the same time.

modem.open
Function
Syntax
modem.open(
  • channel : number
)

Returns nil
API modem
Source CC:Tweaked (source)

channel must be a number between 0 and 65535.

ExampleOpen channel 42
Open channel 42.
Code
<nowiki>
local modem = peripheral.find("modem")
modem.open(42)
    </nowiki>
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.