Difference between revisions of "Tft.drawLine()"

From Microduino Wiki
Jump to: navigation, search
 
Line 48: Line 48:
  
  
[[https://wiki.microduino.cc/index.php/TFT_ST7735_Grammar_Handbook Return to TFT_ST7735 Grammar Handbook]]
+
[[https://wiki.microduino.cc/index.php/TFT_ST7735_Syntax_Manual Return to TFT_ST7735 Syntax Manual]]

Latest revision as of 03:32, 4 August 2016

tft.drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color)
  • Effect:

Draw a line with any angle on the TFT screen


  • Parameters:

x0:x coordinate of the starting point

y0:y coordinate of the starting point

x1:x coordinate of the ending point

y1:y coordinate of the ending point

color:color of the line


  • Example:
#define sclk 13
#define mosi 11
#define cs   5
#define dc   4
#define rst  -1  // you can also connect this to the Arduino reset

#include <Adafruit_GFX.h>    // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library
#include <SPI.h>

#if defined(__SAM3X8E__)
    #undef __FlashStringHelper::F(string_literal)
    #define F(string_literal) string_literal
#endif

Adafruit_ST7735 tft = Adafruit_ST7735(cs, dc, mosi, sclk, rst);

void setup(void) {
  tft.initR(INITR_BLACKTAB);   // initialize a ST7735S chip, black tab
  tft.fillScreen(ST7735_BLACK);
  tft.drawLine(10, 20, 80, 150, ST7735_GREEN);
}

void loop() {  }


[Return to TFT_ST7735 Syntax Manual]