Skip to content

Commit a4c937a

Browse files
committed
Version 2.14
1 parent 87c9571 commit a4c937a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

lib/tftLib/src/tft.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// first release on 09/2019
2-
// updated on Oct 07 2023
2+
// updated on Oct 08 2023
33

44
#include "Arduino.h"
55
#include "tft.h"

lib/tftLib/src/tft.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// first release on 09/2019
2-
// updated on Oct 07 2023
2+
// updated on Oct 08 2023
33

44

55
#pragma once

src/common.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
// created: 10.Feb.2022
2-
// updated: 23.Sep.2023
2+
// updated: 08.Oct.2023
33

44
#pragma once
55
#pragma GCC optimize("Os") // optimize for code size
66

77
#define _SSID "mySSID" // Your WiFi credentials here
88
#define _PW "myWiFiPassword"
99
#define DECODER 1 // (0)VS1053 , (1)MAX98357A PCM5102A... (2)AC101 (3)ES8388 (4)WM8978
10-
#define TFT_CONTROLLER 3 // (0)ILI9341, (1)HX8347D, (2)ILI9486a, (3)ILI9486b, (4)ILI9488, (5)ST7796, (6)ST7796RPI
10+
#define TFT_CONTROLLER 0 // (0)ILI9341, (1)HX8347D, (2)ILI9486a, (3)ILI9486b, (4)ILI9488, (5)ST7796, (6)ST7796RPI
1111
#define DISPLAY_INVERSION 0 // (0) off (1) on
12-
#define TFT_ROTATION 3 // 1 or 3 (landscape)
12+
#define TFT_ROTATION 1 // 1 or 3 (landscape)
1313
#define TFT_FREQUENCY 80000000 // 80000000, 40000000, 27000000, 20000000, 10000000
14-
#define TP_VERSION 3 // (0)ILI9341, (1)ILI9341RPI, (2)HX8347D, (3)ILI9486, (4)ILI9488, (5)ST7796, (3)ST7796RPI
14+
#define TP_VERSION 0 // (0)ILI9341, (1)ILI9341RPI, (2)HX8347D, (3)ILI9486, (4)ILI9488, (5)ST7796, (3)ST7796RPI
1515
#define TP_ROTATION 3 // 1 or 3 (landscape)
1616
#define AUDIOTASK_CORE 1 // 0 or 1
1717
#define AUDIOTASK_PRIO 2 // 0 ... 24 Priority of the Task (0...configMAX_PRIORITIES -1)

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
MiniWebRadio -- Webradio receiver for ESP32
55
66
first release on 03/2017 */String Version="\
7-
Version 2.13b Sep 29/2023 ";
7+
Version 2.14 Oct 08/2023 ";
88

99
/* 2.8" color display (320x240px) with controller ILI9341 or HX8347D (SPI) or
1010
3.5" color display (480x320px) wiht controller ILI9486 or ILI9488 (SPI)

0 commit comments

Comments
 (0)