1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Migrate from astyle to clang-format (#8464)

This commit is contained in:
Maxim Prokhorov
2022-02-20 19:23:33 +03:00
committed by Max Prokhorov
parent 46190b61f1
commit 19b7a29720
241 changed files with 15925 additions and 16197 deletions

View File

@ -8,21 +8,19 @@
#include <TFTv2.h>
#include <SPI.h>
void setup() {
TFT_BL_ON; // turn on the background light
Tft.TFTinit(); //init TFT library
TFT_BL_ON; // turn on the background light
Tft.TFTinit(); // init TFT library
Tft.drawLine(0, 0, 239, 319, RED); //start: (0, 0) end: (239, 319), color : RED
Tft.drawLine(0, 0, 239, 319, RED); // start: (0, 0) end: (239, 319), color : RED
Tft.drawVerticalLine(60, 100, 100, GREEN); // Draw a vertical line
// start: (60, 100) length: 100 color: green
Tft.drawHorizontalLine(30, 60, 150, BLUE); //Draw a horizontal line
//start: (30, 60), high: 150, color: blue
Tft.drawHorizontalLine(30, 60, 150, BLUE); // Draw a horizontal line
// start: (30, 60), high: 150, color: blue
}
void loop() {
}
void loop() {}
/*********************************************************************************************************
END FILE