From 29f52516c23618a97c41b7b3991e49faa96f6528 Mon Sep 17 00:00:00 2001 From: Mike Causer Date: Tue, 27 Sep 2016 11:29:23 +1000 Subject: [PATCH] In TFT_Show_Font_ILI9341 example change init to begin --- .../examples/TFT_Show_Font_ILI9341/TFT_Show_Font_ILI9341.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STM32F1/libraries/Adafruit_ILI9341_STM/examples/TFT_Show_Font_ILI9341/TFT_Show_Font_ILI9341.ino b/STM32F1/libraries/Adafruit_ILI9341_STM/examples/TFT_Show_Font_ILI9341/TFT_Show_Font_ILI9341.ino index 13eee76..b1f2852 100644 --- a/STM32F1/libraries/Adafruit_ILI9341_STM/examples/TFT_Show_Font_ILI9341/TFT_Show_Font_ILI9341.ino +++ b/STM32F1/libraries/Adafruit_ILI9341_STM/examples/TFT_Show_Font_ILI9341/TFT_Show_Font_ILI9341.ino @@ -46,7 +46,7 @@ byte state = 0; unsigned int colour = red << 11; void setup(void) { - tft.init(); + tft.begin(); tft.setRotation(1); }