This is a library that alows any machine or robot to be controlled by G-code.
Features- Serial or character input
- Customisable
G-code is the instructions that 3D printer and CNC used to create there part. G-code is a set of instruction commands sent to the controller of the machine to be performed. Position, feed rate, and tool used are some of the items that G-code can control. The G-code can either be sent from the computer or saved on an SD card.
Why make this library?This library allows any machine or robot to be controlled by G-code. It makes it quick and easy to set up with CNC and machine software and gives much better control over the communications and commands.
Why use this?If your project requires computer control or a set of instruction, a library like this will help simplify this process of making it your self.
FunctionsSETUPgcode(),gcode(void (*CallBack)()),gcode(int numbercommands, commandscallback *commandArray),gcode(int numbercommands, commandscallback *commandArray, void (*CallBack)());
This function is used to declare this class so that it can be used in the program. There are 4 different functions, each with variables that can be set. The callback is used to link a call back function used after each command is available. commandArray is an array of callback that interupt the program to execute the command. Numbercommands is the number of items within commandArray.
void begin(),void begin(int bitrate)
This function must be called if the serial interface is wanting to be used. Bitrate is the bitrate of the serial port. If this is called, there is no need to Serial.begin();, it is apart of the begin function.
SENDvoid comment(String comment)
This function is to send comments back through the serial. Comment would be the comment that would be sent back.
RECEIVEbool available(),bool available(char inChar)
This function reads the incoming data and returns true then the command is ready to for the program to read an control the machine. InChar is the input from a source like an SD card.
double GetValue(char commandLetter)
This function is to return the values for a command letter. CommandLetter is the command letter that is requested to be returned.
Comments