Hello there. I made a small little code that would turn on and off a wireless reciever from WR-CBE Logic. It used to work and then it just stopped. Is there something missing?
local term = require("term")
local component = require("component")
local rs = component.redstone
print("Enter Freq")
term.write("Freq: ")
x1 = io.read()
freq = tonumber(x1)
rs.setWirelessFrequency(freq)
rs.setWirelessOutput(true)
os.sleep(3)
rs.setWirelessOutput(false)
Description:
I wanted to make a simple chat program where players can chat with each other as long as they have the program. So like IRC but only for people with the program
Function:
Users are able to set their name and join the chat.
Deadline:
N/A
Additional Information:
None but simply ask me if you have other questions
Thank you in advance!