adafruit-circuitpython-rgb-display 3.12.3__py3-none-any.whl → 3.12.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: adafruit-circuitpython-rgb-display
3
- Version: 3.12.3
3
+ Version: 3.12.5
4
4
  Summary: CircuitPython library for RGB displays.
5
5
  Author-email: Adafruit Industries <circuitpython@adafruit.com>
6
6
  License: MIT
@@ -0,0 +1,15 @@
1
+ adafruit_rgb_display/__init__.py,sha256=4wOEGnSq7Q63i9G8CW4v5Cdc506UgMEwK_dS8xYpJ5k,209
2
+ adafruit_rgb_display/hx8353.py,sha256=_u4bK7NZul81swTPVwOQ9BCfT_rC_PkaNsGD2OWavwQ,2064
3
+ adafruit_rgb_display/hx8357.py,sha256=tmhzTLKZIjQivC2F_E7YCuyiqH1W4PodJQGEMvG4-m0,3566
4
+ adafruit_rgb_display/ili9341.py,sha256=QKHr93OVupou3lJA33BQV83Lu2R-UtP1vK_VIE4GveU,3512
5
+ adafruit_rgb_display/rgb.py,sha256=lPT8By7YEnL8g28kZi7rC7Bj2RXnghJv4keuLwuc6xQ,11772
6
+ adafruit_rgb_display/s6d02a1.py,sha256=76fJXVBYF9YX8i-PU4NQMVz-Di8fbzMd02M4d1qohNs,2295
7
+ adafruit_rgb_display/ssd1331.py,sha256=GUZ3MyIg1FZ-oDAronqzT_kBa3pWaLaM9FbI0Kxe6hg,4264
8
+ adafruit_rgb_display/ssd1351.py,sha256=nZp1EQ77ukGM94mN0I5W85g8kBA6SqLOppAq3_BxX4Y,3807
9
+ adafruit_rgb_display/st7735.py,sha256=RFYPtBw9x8_kMpV4GGOcXe2vaSmC0UGumZHd8bYQqXY,8457
10
+ adafruit_rgb_display/st7789.py,sha256=jVhOxuuEQzSYwCM2EWWYKh0KcZhB0V3szwyyWuLmMgA,3576
11
+ adafruit_circuitpython_rgb_display-3.12.5.dist-info/LICENSE,sha256=LgLxmuGT-yzOZ0qYCW63SRPvZjD-WMNrJbkyFM0XVOI,1110
12
+ adafruit_circuitpython_rgb_display-3.12.5.dist-info/METADATA,sha256=xRJUhpgKhYOjXfjJAPZaIcq0JvS2B6oupRVpIVixMHE,6430
13
+ adafruit_circuitpython_rgb_display-3.12.5.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
14
+ adafruit_circuitpython_rgb_display-3.12.5.dist-info/top_level.txt,sha256=cJwF7_bQzYW5T_mcKLceSSUQ99qb2Bmpz7KdRs_O0tA,21
15
+ adafruit_circuitpython_rgb_display-3.12.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -21,7 +21,7 @@ try:
21
21
  except ImportError:
22
22
  pass
23
23
 
24
- __version__ = "3.12.3"
24
+ __version__ = "3.12.5"
25
25
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
26
26
 
27
27
  _SWRESET = const(0x01)
@@ -21,7 +21,7 @@ try:
21
21
  except ImportError:
22
22
  pass
23
23
 
24
- __version__ = "3.12.3"
24
+ __version__ = "3.12.5"
25
25
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
26
26
 
27
27
  _SWRESET = const(0x01)
@@ -22,7 +22,7 @@ try:
22
22
  except ImportError:
23
23
  pass
24
24
 
25
- __version__ = "3.12.3"
25
+ __version__ = "3.12.5"
26
26
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
27
27
 
28
28
 
@@ -31,7 +31,7 @@ except ImportError:
31
31
 
32
32
  from adafruit_bus_device import spi_device
33
33
 
34
- __version__ = "3.12.3"
34
+ __version__ = "3.12.5"
35
35
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
36
36
 
37
37
  # This is the size of the buffer to be used for fill operations, in 16-bit
@@ -56,7 +56,7 @@ def color565(
56
56
  package namespace."""
57
57
  if isinstance(r, (tuple, list)): # see if the first var is a tuple/list
58
58
  if len(r) >= 3:
59
- red, g, b = r
59
+ red, g, b = r[0:3]
60
60
  else:
61
61
  raise ValueError(
62
62
  "Not enough values to unpack (expected 3, got %d)" % len(r)
@@ -22,7 +22,7 @@ try:
22
22
  except ImportError:
23
23
  pass
24
24
 
25
- __version__ = "3.12.3"
25
+ __version__ = "3.12.5"
26
26
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
27
27
 
28
28
  _SWRESET = const(0x01)
@@ -22,7 +22,7 @@ try:
22
22
  except ImportError:
23
23
  pass
24
24
 
25
- __version__ = "3.12.3"
25
+ __version__ = "3.12.5"
26
26
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
27
27
 
28
28
 
@@ -149,7 +149,5 @@ class SSD1331(DisplaySPI):
149
149
  with self.spi_device as spi:
150
150
  if command is not None:
151
151
  spi.write(bytearray([command]))
152
- print(bytearray([command]))
153
152
  if data is not None:
154
153
  spi.write(data)
155
- print(data)
@@ -21,7 +21,7 @@ try:
21
21
  except ImportError:
22
22
  pass
23
23
 
24
- __version__ = "3.12.3"
24
+ __version__ = "3.12.5"
25
25
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
26
26
 
27
27
  _SETCOLUMN = const(0x15)
@@ -23,7 +23,7 @@ try:
23
23
  except ImportError:
24
24
  pass
25
25
 
26
- __version__ = "3.12.3"
26
+ __version__ = "3.12.5"
27
27
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
28
28
 
29
29
  _NOP = const(0x00)
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.12.3"
27
+ __version__ = "3.12.5"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
  _NOP = const(0x00)
@@ -1,15 +0,0 @@
1
- adafruit_rgb_display/__init__.py,sha256=4wOEGnSq7Q63i9G8CW4v5Cdc506UgMEwK_dS8xYpJ5k,209
2
- adafruit_rgb_display/hx8353.py,sha256=kkpLCfqpaE2GH-mu7Ga6OoLiBzFBpurWZuGWWE3OjdQ,2064
3
- adafruit_rgb_display/hx8357.py,sha256=SelQGJiq0aTBiYM9Bs90rUEKPjKhuXtWgqyymJnGVD4,3566
4
- adafruit_rgb_display/ili9341.py,sha256=l78IcwqAcAM_kL1sWPECOsqmZigVvRI9BB-Z8Q0tITQ,3512
5
- adafruit_rgb_display/rgb.py,sha256=bH_j9ukAqJAoU_tO26zJ50cvWP81SVISJ5fcThNULNM,11767
6
- adafruit_rgb_display/s6d02a1.py,sha256=I8iUHMhnBxOTT1VsXzE-HDT0i4N1G6reLAxXGK0_TBw,2295
7
- adafruit_rgb_display/ssd1331.py,sha256=nf1Zckm-akyJvbZGn9A0qbJn6BOeBxcbVpuT7eiXgDA,4336
8
- adafruit_rgb_display/ssd1351.py,sha256=aVTK--Te3q4mdlzinZVmxbHE000V-IK0wSwaIlswNCk,3807
9
- adafruit_rgb_display/st7735.py,sha256=EotL1ckvMNdq2dbCEzhldnDKf-ILPOw_1qv1MpZC7I4,8457
10
- adafruit_rgb_display/st7789.py,sha256=f77EZJyJ2Dfo-ThQwv0L60h5inBxTQvhCCIHXr4VCRg,3576
11
- adafruit_circuitpython_rgb_display-3.12.3.dist-info/LICENSE,sha256=LgLxmuGT-yzOZ0qYCW63SRPvZjD-WMNrJbkyFM0XVOI,1110
12
- adafruit_circuitpython_rgb_display-3.12.3.dist-info/METADATA,sha256=AU_A7n1NslLZnhEjiT8IPTrBJOWA0nkblD-s_zeVwqY,6430
13
- adafruit_circuitpython_rgb_display-3.12.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
14
- adafruit_circuitpython_rgb_display-3.12.3.dist-info/top_level.txt,sha256=cJwF7_bQzYW5T_mcKLceSSUQ99qb2Bmpz7KdRs_O0tA,21
15
- adafruit_circuitpython_rgb_display-3.12.3.dist-info/RECORD,,