Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix of typos #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Examples/TFT_Touch_Draw_2-4/TFT_Touch_Draw_2-4.ino
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TFT_Touch touch = TFT_Touch(DCS, DCLK, DIN, DOUT);
int ColorPaletteHigh = 30; // Height of palette boxes
int color = TFT_WHITE; //Starting paint brush color

// Pallete button colour sequence
// Palette button colour sequence
unsigned int colors[10] = {TFT_RED, TFT_GREEN, TFT_BLUE, TFT_BLACK, TFT_CYAN, TFT_YELLOW, TFT_WHITE, TFT_MAGENTA, TFT_BLACK, TFT_BLACK};

void setup()
Expand Down
6 changes: 3 additions & 3 deletions Examples/TFT_Touch_Raw/TFT_Touch_Raw.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Open up the Serial Monitor Window from the IDE and set to 38400 baud to see the
information from screen contacts

By using a stylus at the screen extremes or touch zone limits this sketch can be
used to check tha calibration values.
used to check then calibration values.

IMPORTANT: The 2.4" screen orientation used for calibration is with the SD Card slot on the left!

Expand Down Expand Up @@ -54,8 +54,8 @@ Adapted by Rowboteer 13/5/15

// This is the screen size for the raw to coordinate transformation
// width and height specified for landscape orientation
#define HRES 320 /* Default screen resulution for X axis */
#define VRES 320 /* Default screen resulution for Y axis */
#define HRES 320 /* Default screen resolution for X axis */
#define VRES 320 /* Default screen resolution for Y axis */

#include <TFT_Touch.h>

Expand Down