You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
290B

  1. config.frameDivider = 1
  2. config.bufferSize = 32
  3. function process(block)
  4. for j=1,block.bufferSize do
  5. -- Inputs
  6. -- block.inputs[i][j]
  7. -- block.knobs[i]
  8. -- block.switches[i]
  9. -- Outputs
  10. -- block.outputs[i][j]
  11. -- block.lights[i][color]
  12. -- block.switchLights[i][color]
  13. end
  14. end