This is actually a repost as the original was lost in the 5 day void :)/>
AE Peripheral is a ComputerCraft peripheral that exposes 3 methods to interface with Applied Energistics, it works in MC 1.6.2 with all v13 AE version and Computercraft 1.55
it is crafted (where X is smooth stone, Y is an ME cable and Z is redstone) as below
XXX
YZX
XXX
the 4 methods are
"GetInventory", "GetCraftables", "Craft", "AddAlert"
GetInventory has no Params and returns a table where Key is the item name and Value is the count, this is a list of items in the AE grid
GetCraftables has no params and returns a table where Key is the item name and Value is the item ID, item damage concactinated with ":" , this is a list of things you can craft via AE
Craft takes 2 params, param 1 is the item Id,item damagae concactinated with ":" (this matches the return from getCraftables ":0" is needed for items with no damage) to craft and param 2 is the count
AddAlert allows you to add a number of alerts params are event name, Id,damage (again concactinated with a ":" a ":0" is needed for items with no damage) and 2 params for min and max, setting min to 0 or max to 0 defines the alert differently, example below
download link
https://dl.dropboxus...6.2-1.0.1.1.zip
alert example
if Min is 0 and max is > 0 then alert will happen if count of item >= max
if max is 0 and min is > 0 then will happen if count of item <= min
if max and min are both > 0 the alert will happen if count is >= min AND <= max
updated to 1.0.0.2
change: added damage values
updated to 1.0.0.3
change: removed debug spam
updated to 1.0.1.0
change: CC 1.56 AE rv13 MC 1.6.2
graphical changes
updated to 1.0.1.1
change: sorted the block update glitch