Writing a simple program to send GCode via Java using jssc libraries. Tried the following without success
- serialPort.writeString("G01 X1 Y1 Z1")
- serialPort.writeString("%G01 X1 Y1 Z1%")
- serialPort.writeString("%") serialPort.writeString("G01 X1 Y1 Z1") serialPort.writeString("%")
I am able to open / close the port (can hear the pulse from the machine) but the machine wont react to the Gcode sent. Need help.
Regards, Jai