Correct comment typos

This commit is contained in:
Bodmer
2017-02-28 22:44:20 +00:00
committed by GitHub
parent 3314530bbb
commit 2b63925ab4

View File

@@ -60,9 +60,9 @@ int indexRed = 0; // Colour byte index in the array
int indexGreen = 1; int indexGreen = 1;
int indexBlue = 2; int indexBlue = 2;
long end = 10; // Whether we've heard from the microcontroller long end = 10;
int n = 0; // Whether we've heard from the microcontroller int n = 0;
boolean got_image = false; boolean got_image = false;
@@ -164,7 +164,7 @@ void draw() {
state = 3; state = 3;
break; break;
case 3: // Request pixels and reder them case 3: // Request pixels and render them
if ( serial.available() > 0 ) { if ( serial.available() > 0 ) {
// Add the latest byte from the serial port to array: // Add the latest byte from the serial port to array:
@@ -232,7 +232,7 @@ void draw() {
case 5: // Save the image tot he sketch folder case 5: // Save the image tot he sketch folder
println(); println();
String filename = "tft_screen_" + n + image_type; String filename = "tft_screen_" + n + image_type;
println("Saving image as \"" + filename); // Does not execute println("Saving image as \"" + filename);
if (save_border) if (save_border)
{ {
PImage partialSave = get(x_offset - border, y_offset - border, tft_width + 2*border, tft_height + 2*border); PImage partialSave = get(x_offset - border, y_offset - border, tft_width + 2*border, tft_height + 2*border);
@@ -282,4 +282,4 @@ void draw() {
System.err.println("Error state reached - check sketch!"); System.err.println("Error state reached - check sketch!");
break; break;
} }
} }