Difference between revisions of "Modem.open"
From ComputerCraft Wiki
Iownall555 (Talk | contribs) (Created page with "{{Function |name=modem.open |args={{type|int}} channel |api=Modem |addon=ComputerCraft |desc=Opens the specified channel to allow listening for messages. |examples= {{Example...") |
MKlegoman357 (Talk | contribs) m (Added 'local modem = peripheral.wrap("top")') |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
− | |name=modem.open | + | |name=''modem''.open |
− | |args={{type| | + | |args={{type|number}} channel |
+ | |returns={{type|nil}} | ||
|api=Modem | |api=Modem | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
Line 7: | Line 8: | ||
|examples= | |examples= | ||
{{Example | {{Example | ||
− | |desc=Opens | + | |desc=Opens channel 1 to allow listening for messages. |
− | |code=modem.open(1) | + | |code= local modem = [[peripheral.wrap]]("top") |
+ | |||
+ | modem.open(1) | ||
+ | print("Channel 1 is now opened for listening.") | ||
+ | |output=Channel 1 is now opened for listening. | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Latest revision as of 15:45, 9 April 2014
Function modem.open | |
Opens the specified channel to allow listening for messages. | |
Syntax | modem.open(number channel) |
Returns | nil |
Part of | ComputerCraft |
API | Modem |
Examples
Example | |
Opens channel 1 to allow listening for messages. | |
Code |
local modem = peripheral.wrap("top") modem.open(1) print("Channel 1 is now opened for listening.") |
Output | Channel 1 is now opened for listening. |