Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

file myfile; byte outbyte; int sendgcode2grbl(string filename) { // initialise sd card an d open file SD.begin(); if(!(SD.

exists(filename))) return 0; myfile = SD.open(filename, FILE_READ); // initialise serial port Serial.begin(9600); // send data one byte at a time outbyte = myfile.read(); while(outbyte>-1) { Serial.write(outbyte); outbyte = myfile.read(); } // tidyup Serial.end() myfile.close(); return 1; }

You might also like