File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change
1
+ 0.0.4
2
+ -----
3
+
4
+ * Add support for 320x240 2.0" LCD (Display HAT Mini)
5
+ * Add support for 240x135 1.14" LCD (@slabua)
6
+ * Rework numpy RGB888 to RGB565
7
+ * Support displaying numpy arrays (@zecktos)
8
+
1
9
0.0.3
2
10
-----
3
11
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Install this library by running:
27
27
sudo pip install st7789
28
28
````
29
29
30
- See example of usage in the examples folder.
30
+ You might also need to enable I2C and SPI in raspi-config. See example of usage in the examples folder.
31
31
32
32
33
33
# Licensing & History
@@ -52,6 +52,15 @@ Modified from 'Modified from 'Adafruit Python ILI9341' written by Tony DiCola fo
52
52
MIT license, all text above must be included in any redistribution
53
53
54
54
# Changelog
55
+
56
+ 0.0.4
57
+ -----
58
+
59
+ * Add support for 320x240 2.0" LCD (Display HAT Mini)
60
+ * Add support for 240x135 1.14" LCD (@slabua )
61
+ * Rework numpy RGB888 to RGB565
62
+ * Support displaying numpy arrays (@zecktos )
63
+
55
64
0.0.3
56
65
-----
57
66
Original file line number Diff line number Diff line change 26
26
import RPi .GPIO as GPIO
27
27
28
28
29
- __version__ = '0.0.3 '
29
+ __version__ = '0.0.4 '
30
30
31
31
BG_SPI_CS_BACK = 0
32
32
BG_SPI_CS_FRONT = 1
Original file line number Diff line number Diff line change 11
11
'Topic :: System :: Hardware' ]
12
12
13
13
setup (name = 'ST7789' ,
14
- version = '0.0.3 ' ,
14
+ version = '0.0.4 ' ,
15
15
description = 'Library to control ST7789 TFT LCD displays.' ,
16
- long_description = open ('README.md' ).read () + ' \n ' + open ( 'CHANGELOG.txt' ). read () ,
16
+ long_description = open ('README.md' ).read (),
17
17
long_description_content_type = 'text/markdown' ,
18
18
license = 'MIT' ,
19
19
author = 'Philip Howard' ,
You can’t perform that action at this time.
0 commit comments