232 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			232 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C++
		
	
	
	
/*
 | 
						|
  There are four different methods of plotting anti-aliased fonts to the screen.
 | 
						|
 | 
						|
  This sketch uses method 2, using graphics calls plotting direct to the TFT:
 | 
						|
    tft.drawString(string, x, y);
 | 
						|
    tft.drawNumber(integer, x, y);
 | 
						|
    tft.drawFloat(float, dp, x, y); // dp = number of decimal places
 | 
						|
 | 
						|
  setTextDatum() and setTextPadding() functions work with those draw functions.
 | 
						|
 | 
						|
  This method is good for static text that does not change often because changing
 | 
						|
  values may flicker.
 | 
						|
  
 | 
						|
*/
 | 
						|
//  The fonts used are in the sketch data folder, press Ctrl+K to view.
 | 
						|
 | 
						|
//  Upload the fonts and icons to SPIFFS (must set at least 1M for SPIFFS) using the
 | 
						|
//  "Tools"  "ESP8266 (or ESP32) Sketch Data Upload" menu option in the IDE.
 | 
						|
//  To add this option follow instructions here for the ESP8266:
 | 
						|
//  https://github.com/esp8266/arduino-esp8266fs-plugin
 | 
						|
//  or for the ESP32:
 | 
						|
//  https://github.com/me-no-dev/arduino-esp32fs-plugin
 | 
						|
 | 
						|
//  Close the IDE and open again to see the new menu option.
 | 
						|
 | 
						|
// A processing sketch to create new fonts can be found in the Tools folder of TFT_eSPI
 | 
						|
// https://github.com/Bodmer/TFT_eSPI/tree/master/Tools/Create_Smooth_Font/Create_font
 | 
						|
 | 
						|
// This sketch uses font files created from the Noto family of fonts:
 | 
						|
// https://www.google.com/get/noto/
 | 
						|
 | 
						|
#define AA_FONT_SMALL "NotoSansBold15"
 | 
						|
#define AA_FONT_LARGE "NotoSansBold36"
 | 
						|
 | 
						|
// Font files are stored in SPIFFS, so load the linbrary
 | 
						|
#include <FS.h>
 | 
						|
 | 
						|
#include <SPI.h>
 | 
						|
#include <TFT_eSPI.h>       // Hardware-specific library
 | 
						|
 | 
						|
TFT_eSPI tft = TFT_eSPI();
 | 
						|
 | 
						|
void setup(void) {
 | 
						|
 | 
						|
  Serial.begin(250000);
 | 
						|
 | 
						|
  tft.begin();
 | 
						|
 | 
						|
  tft.setRotation(1);
 | 
						|
 | 
						|
  if (!SPIFFS.begin()) {
 | 
						|
    Serial.println("SPIFFS initialisation failed!");
 | 
						|
    while (1) yield(); // Stay here twiddling thumbs waiting
 | 
						|
  }
 | 
						|
  Serial.println("\r\nSPIFFS available!");
 | 
						|
 | 
						|
  // ESP32 will crash if any of the fonts are missing
 | 
						|
  bool font_missing = false;
 | 
						|
  if (SPIFFS.exists("/NotoSansBold15.vlw")    == false) font_missing = true;
 | 
						|
  if (SPIFFS.exists("/NotoSansBold36.vlw")    == false) font_missing = true;
 | 
						|
 | 
						|
  if (font_missing)
 | 
						|
  {
 | 
						|
    Serial.println("\r\nFont missing in SPIFFS, did you upload it?");
 | 
						|
    while(1) yield();
 | 
						|
  }
 | 
						|
  else Serial.println("\r\nFonts found OK.");
 | 
						|
}
 | 
						|
 | 
						|
void loop() {
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
 | 
						|
  tft.setTextColor(TFT_WHITE, TFT_BLACK); // Set the font colour and the background colour
 | 
						|
 | 
						|
  tft.setTextDatum(TC_DATUM); // Top Centre datum
 | 
						|
 | 
						|
  int xpos = tft.width() / 2; // Half the screen width
 | 
						|
  int ypos = 10;
 | 
						|
 | 
						|
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
  // Small font
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
 | 
						|
  tft.loadFont(AA_FONT_SMALL); // Must load the font first
 | 
						|
 | 
						|
  tft.drawString("Small 15pt font", xpos, ypos);
 | 
						|
 | 
						|
  ypos += tft.fontHeight();   // Get the font height and move ypos down
 | 
						|
 | 
						|
  tft.setTextColor(TFT_GREEN, TFT_BLACK);
 | 
						|
 | 
						|
  // If the string does not fit the screen width, then the next character will wrap to a new line
 | 
						|
  tft.drawString("Ode To A Small Lump Of Green Putty I Found In My Armpit One Midsummer Morning", xpos, ypos);
 | 
						|
 | 
						|
  tft.setTextColor(TFT_GREEN, TFT_BLUE); // Background colour does not match the screen background!
 | 
						|
  tft.drawString("Anti-aliasing causes odd looking shadow effects if the text and screen background colours are not the same!", xpos, ypos + 60);
 | 
						|
 | 
						|
  tft.unloadFont(); // Remove the font to recover memory used
 | 
						|
 | 
						|
  delay(5000);
 | 
						|
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
  // Large font
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
 | 
						|
  tft.loadFont(AA_FONT_LARGE); // Load another different font
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
 | 
						|
  tft.setTextColor(TFT_GREEN, TFT_BLUE); // Change the font colour and the background colour
 | 
						|
 | 
						|
  tft.drawString("36pt font", xpos, ypos);
 | 
						|
 | 
						|
  ypos += tft.fontHeight();  // Get the font height and move ypos down
 | 
						|
 | 
						|
  // Set text padding to 100 pixels wide area to over-write old values on screen
 | 
						|
  tft.setTextPadding(100);
 | 
						|
 | 
						|
  // Draw changing numbers - likely to flicker using this plot method!
 | 
						|
  for (int i = 0; i <= 20; i++) {
 | 
						|
    tft.drawFloat(i / 10.0, 1, xpos, ypos);
 | 
						|
    delay (200);
 | 
						|
  }
 | 
						|
 | 
						|
  tft.unloadFont(); // Remove the font to recover memory used
 | 
						|
 | 
						|
  delay(5000);
 | 
						|
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
  // Setting the 12 datum positions works with free fonts
 | 
						|
  // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 | 
						|
 | 
						|
  // Integer numbers, floats and strings can be drawn relative to a x,y datum, e.g.:
 | 
						|
  // tft.drawNumber( 123, x, y);
 | 
						|
  // tft.drawFloat( 1.23, dp, x, y); // Where dp is number of decimal places to show
 | 
						|
  // tft.drawString( "Abc", x, y);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
 | 
						|
  tft.setTextColor(TFT_DARKGREY, TFT_BLACK);
 | 
						|
 | 
						|
  // Use middle of screen as datum
 | 
						|
  xpos = tft.width() /2;
 | 
						|
  ypos = tft.height()/2;
 | 
						|
 | 
						|
  tft.loadFont(AA_FONT_SMALL);
 | 
						|
  tft.setTextDatum(TL_DATUM);
 | 
						|
  tft.drawString("[Top left]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(TC_DATUM);
 | 
						|
  tft.drawString("[Top centre]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(TR_DATUM);
 | 
						|
  tft.drawString("[Top right]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(ML_DATUM);
 | 
						|
  tft.drawString("[Middle left]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(MC_DATUM);
 | 
						|
  tft.drawString("[Middle centre]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(MR_DATUM);
 | 
						|
  tft.drawString("[Middle right]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(BL_DATUM);
 | 
						|
  tft.drawString("[Bottom left]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(BC_DATUM);
 | 
						|
  tft.drawString("[Bottom centre]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(BR_DATUM);
 | 
						|
  tft.drawString("[Bottom right]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(L_BASELINE);
 | 
						|
  tft.drawString("[Left baseline]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(C_BASELINE);
 | 
						|
  tft.drawString("[Centre baseline]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.fillScreen(TFT_BLACK);
 | 
						|
  tft.setTextDatum(R_BASELINE);
 | 
						|
  tft.drawString("[Right baseline]", xpos, ypos);
 | 
						|
  drawDatumMarker(xpos, ypos);
 | 
						|
  delay(1000);
 | 
						|
 | 
						|
  tft.unloadFont(); // Remove the font to recover memory used
 | 
						|
 | 
						|
  delay(4000);
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
// Draw a + mark centred on x,y
 | 
						|
void drawDatumMarker(int x, int y)
 | 
						|
{
 | 
						|
  tft.drawLine(x - 5, y, x + 5, y, TFT_GREEN);
 | 
						|
  tft.drawLine(x, y - 5, x, y + 5, TFT_GREEN);
 | 
						|
}
 |