Posted 09 October 2014 - 05:26 AM
Extra Peripherals
Extra Peripherals is a Minecraft mod that adds extra ComputerCraft peripherals.
Downloads
Please note: This Mod is provided 'as is' with no warranties, implied or otherwise. The devolopers of this mod takes no responsibility for any damages incurred from the use of this mod.
Extra Peripherals 0.3.0 (ExtraPeripherals-1.7.10-0.3.0.jar) (ComputerCraft 1.65)
Extra Peripherals 0.3.0 (ExtraPeripherals-1.6.4-0.3.0.jar) (ComputerCraft 1.63)
Extra Peripherals 0.1.1b (ExtraPeripherals-1.6.4-0.1.1b.jar) (ComputerCraft 1.58)
Instruction
Extra Peripherals requires the following to function properly:
Minecraft (http://www.minecraft.net/) with Minecraft Forge (http://files.minecraftforge.net/) and ComputerCraft (http://www.computercraft.info/) installed.
To install Extra Peripherals, simply put the jar file into your mods folder.
Peripherals
There is currently only one peripheral but there is more to come!
Bundled Connector (Project Red)
The Bundled Connector is a peripheral that let's you interact with Project Red bundled cables from your ComputerCraft computers.
It has the following functions that are almost identical to the ComputerCrafts Redstone API versions. They all make use of Colors API compatible numbers. As sides it uses north, west, south and east instead of front, left, back, right.
getBundledInput(string side) - Gets the bundled input on a side.
local colors = p.getBundledInpit("west")
getBundledOutput(string side) - Gets the bundled output on a side.
local colors = p.getBundledOutput("top")
setBundledOutput(number colors) - Sets the bundled output of all sides.
setBundledOutput(string side, number colors) - Sets the bundled output of a side.
p.setBundledOutput(colors.red + colors.white)
or
p.setBundledOutput("south", colors.orange + colors.yellow + colors.black)
testBundledInput(string side, number color) - Tests if a redstone signal of a specific color is acive on a side.
local isactive = p.testBundledInput("east", colors.red)
testBundledOutput(string side, number color) - Tests if a redstone signal of a specific color and side is being outputted.
local isactive = p.testBundledOutput("bottom", colors.blue)
Recipie:
Screenshot:
Changelog
0.3.0 (2014-10-08)
- Update for Minecraft 1.7.10 and Computercraft 1.64.
- Other minor code changes.
0.2.0 (2014-07-28)
- Updated to work with Computercraft 1.63.
0.1.1b
- Hotfix, Cardinal.class was missing in 0.1.1 jar-file.
0.1.1 (2014-01-08)
- Fixed a crash bug.
0.1.0 (2014-01-06)
- Initial release for ComputerCraft 1.58 and Minecraft 1.6.4.
Mod Packs
Extra Peripherals may be included in any non-profit Mod pack that has ComputerCraft included as long as you give me (Pzyber) credits.
Suggestions
I'm open to any suggestions about what peripherals to add, feel free to post your ideas in this thread.
Bug Reporting
Report any bugs or crashes in this thread.
Extra Peripherals is a Minecraft mod that adds extra ComputerCraft peripherals.
Downloads
Please note: This Mod is provided 'as is' with no warranties, implied or otherwise. The devolopers of this mod takes no responsibility for any damages incurred from the use of this mod.
Extra Peripherals 0.3.0 (ExtraPeripherals-1.7.10-0.3.0.jar) (ComputerCraft 1.65)
Extra Peripherals 0.3.0 (ExtraPeripherals-1.6.4-0.3.0.jar) (ComputerCraft 1.63)
Extra Peripherals 0.1.1b (ExtraPeripherals-1.6.4-0.1.1b.jar) (ComputerCraft 1.58)
Instruction
Extra Peripherals requires the following to function properly:
Minecraft (http://www.minecraft.net/) with Minecraft Forge (http://files.minecraftforge.net/) and ComputerCraft (http://www.computercraft.info/) installed.
To install Extra Peripherals, simply put the jar file into your mods folder.
Peripherals
There is currently only one peripheral but there is more to come!
Bundled Connector (Project Red)
The Bundled Connector is a peripheral that let's you interact with Project Red bundled cables from your ComputerCraft computers.
It has the following functions that are almost identical to the ComputerCrafts Redstone API versions. They all make use of Colors API compatible numbers. As sides it uses north, west, south and east instead of front, left, back, right.
getBundledInput(string side) - Gets the bundled input on a side.
local colors = p.getBundledInpit("west")
getBundledOutput(string side) - Gets the bundled output on a side.
local colors = p.getBundledOutput("top")
setBundledOutput(number colors) - Sets the bundled output of all sides.
setBundledOutput(string side, number colors) - Sets the bundled output of a side.
p.setBundledOutput(colors.red + colors.white)
or
p.setBundledOutput("south", colors.orange + colors.yellow + colors.black)
testBundledInput(string side, number color) - Tests if a redstone signal of a specific color is acive on a side.
local isactive = p.testBundledInput("east", colors.red)
testBundledOutput(string side, number color) - Tests if a redstone signal of a specific color and side is being outputted.
local isactive = p.testBundledOutput("bottom", colors.blue)
Recipie:
Screenshot:
Changelog
0.3.0 (2014-10-08)
- Update for Minecraft 1.7.10 and Computercraft 1.64.
- Other minor code changes.
0.2.0 (2014-07-28)
- Updated to work with Computercraft 1.63.
0.1.1b
- Hotfix, Cardinal.class was missing in 0.1.1 jar-file.
0.1.1 (2014-01-08)
- Fixed a crash bug.
0.1.0 (2014-01-06)
- Initial release for ComputerCraft 1.58 and Minecraft 1.6.4.
Mod Packs
Extra Peripherals may be included in any non-profit Mod pack that has ComputerCraft included as long as you give me (Pzyber) credits.
Suggestions
I'm open to any suggestions about what peripherals to add, feel free to post your ideas in this thread.
Bug Reporting
Report any bugs or crashes in this thread.
Edited on 12 October 2014 - 08:21 AM