1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Initial ESP8266 HW SPI implementation

ILI9341 lib as a client for SPI lib
This commit is contained in:
Andrey Filimonov
2015-04-01 07:10:31 +03:00
parent 61f3d12909
commit 4626a9df80
24 changed files with 2227 additions and 76 deletions

View File

@ -0,0 +1,26 @@
/* Draw Boxes - Demonstrate drawRectangle and fillRectangle
fillScreen(INT16U XL,INT16U XR,INT16U YU,INT16U YD,INT16U color);
fillRectangle(INT16U poX, INT16U poY, INT16U length, INT16U width, INT16U color);
drawRectangle(INT16U poX, INT16U poY, INT16U length,INT16U width,INT16U color);
*/
#include <stdint.h>
#include <TFTv2.h>
#include <SPI.h>
void setup()
{
TFT_BL_ON; // turn on the background light
Tft.TFTinit(); // init TFT library
Tft.fillScreen(80, 160, 50, 150,RED);
Tft.fillRectangle(30, 120, 100,65,YELLOW);
Tft.drawRectangle(100, 170, 120,60,BLUE);
}
void loop()
{
}
/*********************************************************************************************************
END FILE
*********************************************************************************************************/