From 93df9b473b83002f13e458c210dd522ddbebd7b8 Mon Sep 17 00:00:00 2001 From: prenticedavid Date: Mon, 6 Feb 2017 08:35:35 +0000 Subject: [PATCH] correct typo on write-only test --- examples/graphictest_kbv/graphictest_kbv.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/graphictest_kbv/graphictest_kbv.ino b/examples/graphictest_kbv/graphictest_kbv.ino index 9375d02..916b5a2 100644 --- a/examples/graphictest_kbv/graphictest_kbv.ino +++ b/examples/graphictest_kbv/graphictest_kbv.ino @@ -92,7 +92,7 @@ void setup(void) { uint16_t ID = tft.readID(); // Serial.print("ID = 0x"); Serial.println(ID, HEX); - if (ID == 0x00D3 == 0xD3D3) ID = 0x9481; // write-only shield + if (ID == 0xD3D3) ID = 0x9481; // write-only shield // ID = 0x9329; // force ID tft.begin(ID); }