Gctrl: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
(Created page with "=What is Gctrl= Gctrl is a GUI (Graphical User Interface) program for use with GRBL. Gctrl is code that is meant to run on the software called "Processing". Gctrl provides contr...")
 
No edit summary
Line 12: Line 12:


[[Image: gctrl.png]]
[[Image: gctrl.png]]
=Modify Gctrl code for Easier Connection with Arduino on Linux=
*Open the Gctrl folder
[[Image: gctrlfolder.png]]
*Open gctrl.pde in gedit
*Change a part of the code as annotated in the following:
Serial port = null; //change starts
String portname = "/dev/ttyACM0"; // Linux, Arduino Uno
//change ends
boolean streaming = false;
[[Image: gctrlnewcode.png]]

Revision as of 04:32, 30 March 2012

What is Gctrl

Gctrl is a GUI (Graphical User Interface) program for use with GRBL. Gctrl is code that is meant to run on the software called "Processing". Gctrl provides control options for jogging and sending gcode.

Gctrl

How to Get Gctrl on Linux

  • Open Terminal and type:

git clone https://github.com/damellis/gctrl.git gctrl

Gctrl.png

Modify Gctrl code for Easier Connection with Arduino on Linux

  • Open the Gctrl folder

Gctrlfolder.png

  • Open gctrl.pde in gedit
  • Change a part of the code as annotated in the following:

Serial port = null; //change starts

String portname = "/dev/ttyACM0"; // Linux, Arduino Uno

//change ends

boolean streaming = false;

Gctrlnewcode.png