Skip to content

Commit

Permalink
Raise version, minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodmer committed May 20, 2019
1 parent 3ce71a0 commit 2e73d7d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions TFT_eFEX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void TFT_eFEX::drawJpeg(String filename, int16_t xpos, int16_t ypos, TFT_eSprite
if (decoded) {
// render the image onto the screen at given coordinates

// retrieve infomration about the image
// retrieve information about the image
uint16_t *pImg;
uint16_t mcu_w = JpegDec.MCUWidth;
uint16_t mcu_h = JpegDec.MCUHeight;
Expand Down Expand Up @@ -367,7 +367,7 @@ void TFT_eFEX::drawJpeg(const uint8_t arrayname[], uint32_t array_size, int16_t
if (decoded) {
// render the image onto the screen at given coordinates

// retrieve infomration about the image
// retrieve information about the image
uint16_t *pImg;
uint16_t mcu_w = JpegDec.MCUWidth;
uint16_t mcu_h = JpegDec.MCUHeight;
Expand Down Expand Up @@ -642,7 +642,7 @@ void TFT_eFEX::listSPIFFS(void) {

static const char line[] PROGMEM = "=================================================";
Serial.println(FPSTR(line));
Serial.println(F(" File name Size"));
Serial.println(F(" File name Size"));
Serial.println(FPSTR(line));

while (dir.next()) {
Expand Down Expand Up @@ -674,7 +674,7 @@ void TFT_eFEX::listSPIFFS(void) {
static const char line[] PROGMEM = "=================================================";

Serial.println(FPSTR(line));
Serial.println(F(" File name Size"));
Serial.println(F(" File name Size"));
Serial.println(FPSTR(line));

fs::File root = SPIFFS.open("/");
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TFT_eFRX",
"version": "0.0.4",
"version": "0.0.5",
"keywords": "tft, ePaper, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789",
"description": "A TFT_eSPI expansion library for ESP8266 and ESP32",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TFT_eFEX
version=0.0.4
version=0.0.5
author=Bodmer
maintainer=Bodmer
sentence=A function extension library for TFT_eSPI
Expand Down

0 comments on commit 2e73d7d

Please sign in to comment.