From e1a87f8733272621da0f5fce4ce9b7771fec9d7c Mon Sep 17 00:00:00 2001 From: Adam Haile Date: Wed, 4 Sep 2019 18:19:42 -0400 Subject: [PATCH] Allow building as normal Arduino project --- grbl/grbl.ino | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 grbl/grbl.ino diff --git a/grbl/grbl.ino b/grbl/grbl.ino new file mode 100644 index 00000000..59d5e5bc --- /dev/null +++ b/grbl/grbl.ino @@ -0,0 +1,29 @@ +/*********************************************************************** +This sketch compiles and uploads Grbl to your 328p-based Arduino! + +To use: +- Clone or download the code from this repository to your computer + +- Open this file in the Arduino IDE + +- Select your Arduino Board and Serial Port in the Tools drop-down menu. + NOTE: Grbl only officially supports 328p-based Arduinos, like the Uno. + Using other boards will likely not work! + +- Then just click 'Upload'. That's it! + +For advanced users: + If you'd like to see what else Grbl can do, there are some additional + options for customization and features you can enable or disable. + Open the 'config.h' file in your favorite text editor. Inside are + dozens of feature descriptions and #defines. Simply comment or + uncomment the #defines or alter their assigned values, save your + changes, and then click 'Upload' here. + +Copyright (c) 2015 Sungeun K. Jeon +Released under the MIT-license. See license.txt for details. +***********************************************************************/ + +#include "grbl.h" + +// Do not alter this file!