Lathe and Rolling Mill - lostmyself8/Mekanism-MoreMachine GitHub Wiki

Lathe and Rolling Mill are similar, with individual item input and output, so they are displayed together

Lathe:

{
  "type": "mekmm:lathe",
  "input": {
    "count": 1,
    "item": "minecraft:grass_block"
  },
  "output": {
    "count": 1,
    "id": "mekmm:scrap"
  }
}

Rolling Mill:

{
  "type": "mekmm:rolling_mill",
  "input": {
    "count": 1,
    "item": "minecraft:grass_block"
  },
  "output": {
    "count": 1,
    "id": "mekmm:scrap"
  }
}

Only a single item input/output is shown here, in fact, they can also use tags for input and multiple item inputs.

You can refer to the recycler machine for details.