Good morning. I have a question. Is it possible to insert in the gcode the possibility of choosing one subroutine or another? I explain. I would like to insert in the gcode a command that at my choice from lcd (I have a 12864 LCD) can go (goto) to one subroutine or another. I had found this routine but I don’t understand why the author omitted the command in the second line:
#3000 = 0 ; Inizializza la variabile per la scelta dell’utente
MXXX P"Seleziona opzione: 1 per A, 2 per B" R"Scelta" S3
IF [#3000 EQ 1] GOTO 1000 ; Se l’utente ha scelto 1, salta alla riga N1000
IF [#3000 EQ 2] GOTO 2000 ; Se l’utente ha scelto 2, salta alla riga N2000
GOTO 3000 ; Salta alla fine del programma
N1000 ; Esegue questa parte se l’utente ha scelto 1
M117 scelta 1
M0
GOTO 3000 ; Va alla fine del programma
N2000 ; Esegue questa parte se l’utente ha scelto 2
M117 scelta 2
M0
N3000 M30 ; Fine del programma
Has anyone solved this problem or is there no solution?
Thanks
Marco