Just doing more researchChaz wrote: ↑Fri Jun 21, 2024 6:39 am Interesting that M65 and M66 turn on the On Board Relay 5 and 6 respectively. That means that M63 does nothing as the On Board Relay 3 is already on. Why is this not mapping to the Eth1616 board? When I try and run M111 or M113 then I get a '503 Invalid M function' error.
https://www.centroidcnc.com/downloads/c ... PLCMAN.pdf
This explains an older way on how M codes are mapped. I can confirm that I have an M63 function, that calls OUTPUT3. Any idea why it does nothing?
;------------------------------------------------------------------------------
; Filename: mfunc63.mac
; Wizard OUTPUT3 M-code Macro: M63
; Description: User Customizable Macro
; Notes: Use Acorn Wizard i/o map to set Acorn Output 3 = to "OUTPUT3" then this macro (M63) will turn on that output
; Requires:
; Please see TB300 for tips on writing custom macros.
;------------------------------------------------------------------------------
IF #50010 ;Prevent lookahead from parsing past here
IF #4201 || #4202 THEN GOTO 1000 ;Skip macro if graphing or searching
N100 ;Insert your code between N100 and N1000
M94 /63 ;Request OUTPUT3
N1000 ;End of Macro