aboutsummaryrefslogtreecommitdiff
path: root/examples/PIO_TestPatterns
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2021-10-16 15:08:55 +0100
committerGitHub <noreply@github.com>2021-10-16 15:08:55 +0100
commit39e85dd687b68540ee7a8bfeeb0ba4db365cf2c4 (patch)
treeaf2d55c63dabc2bd28ecc7a53fdf9cc9978157db /examples/PIO_TestPatterns
parentfaccc17bbb10f95594a88f0a2b42d6cf89ebd0af (diff)
parent7ed06c1217b748edcd0a5c2bf5ff4722194c05e1 (diff)
Merge pull request #200 from mcauser/typos
Fix some typos
Diffstat (limited to 'examples/PIO_TestPatterns')
-rw-r--r--examples/PIO_TestPatterns/README.md2
-rw-r--r--examples/PIO_TestPatterns/src/main.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/PIO_TestPatterns/README.md b/examples/PIO_TestPatterns/README.md
index 291bee2..cba07a2 100644
--- a/examples/PIO_TestPatterns/README.md
+++ b/examples/PIO_TestPatterns/README.md
@@ -1,6 +1,6 @@
# Test Patterns
-Simple solid colors, gradients and test line patterns, could be used to test matrixes for proper operation, flickering and estimate fillrate timings.
+Simple solid colors, gradients and test line patterns, could be used to test matrices for proper operation, flickering and estimate fillrate timings.
Should be build and uploaded as a [platformio](https://platformio.org/) project
diff --git a/examples/PIO_TestPatterns/src/main.cpp b/examples/PIO_TestPatterns/src/main.cpp
index 92a2413..9402e9e 100644
--- a/examples/PIO_TestPatterns/src/main.cpp
+++ b/examples/PIO_TestPatterns/src/main.cpp
@@ -94,7 +94,7 @@ void setup(){
matrix->begin();
matrix->setBrightness8(255);
- // longer latch blanking could help to elliminate ghosting in some cases
+ // longer latch blanking could help to eliminate ghosting in some cases
//matrix->setLatBlanking(2);
ledbuff = (CRGB *)malloc(NUM_LEDS * sizeof(CRGB)); // allocate buffer for some tests
@@ -383,7 +383,7 @@ void IRAM_ATTR mxfill(CRGB *leds){
//
/**
- * The one for 256+ matrixes
+ * The one for 256+ matrices
* otherwise this:
* for (uint8_t i = 0; i < MATRIX_WIDTH; i++) {}
* turns into an infinite loop