adafruit-circuitpython-rgb-display 3.14.1__py3-none-any.whl → 3.14.2__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.4
2
2
  Name: adafruit-circuitpython-rgb-display
3
- Version: 3.14.1
3
+ Version: 3.14.2
4
4
  Summary: CircuitPython library for RGB displays.
5
5
  Author-email: Adafruit Industries <circuitpython@adafruit.com>
6
6
  License: MIT
@@ -0,0 +1,16 @@
1
+ adafruit_circuitpython_rgb_display-3.14.2.dist-info/licenses/LICENSE,sha256=LgLxmuGT-yzOZ0qYCW63SRPvZjD-WMNrJbkyFM0XVOI,1110
2
+ adafruit_rgb_display/__init__.py,sha256=swPLlB67JAtxLrDjyuS3bWv2uahufIbYsj2u3_cA7t4,210
3
+ adafruit_rgb_display/gc9a01a.py,sha256=1QxsBhbokCnQ8FRbwPZfXs7TpaU_tMrY2WGIT_ohK9w,3559
4
+ adafruit_rgb_display/hx8353.py,sha256=YzHs8EEqKYfEh9mJI9S6ZCTLf0Q00xMXXZJBRSgCxwE,1996
5
+ adafruit_rgb_display/hx8357.py,sha256=mCm_rZjiZ9VoOGfGwrut7Nm7ODS51sg9hUqyLOSmt28,3498
6
+ adafruit_rgb_display/ili9341.py,sha256=Xs6BMKfoLVqVQPPqrLrMV6p2D1f8o0LDKBWsf3zJDF8,3397
7
+ adafruit_rgb_display/rgb.py,sha256=17AXUPe303uG0nyphn7hIn8I_YNoUb-iuCj2cc8nTzE,11467
8
+ adafruit_rgb_display/s6d02a1.py,sha256=C1fYR20yW7Dn-RC_5-muFzLhhAGWZ5UCV07St51WgtA,2226
9
+ adafruit_rgb_display/ssd1331.py,sha256=smTaYoTNsixSK6yYOR0-XsJ1fIoQDt-5RKID6YjxZAw,4093
10
+ adafruit_rgb_display/ssd1351.py,sha256=u2_wAGdWHhHyG8XyImRxipF2ge1pxru4vTIUdp9496w,3740
11
+ adafruit_rgb_display/st7735.py,sha256=HCTpCAWESe6rGThodAW2cC7HNZI7x0jBtwRqOeQKKZo,8247
12
+ adafruit_rgb_display/st7789.py,sha256=5gtQWWp8DPoYnB4ilkqxr_IB9qjjqzeeShIrE08L0u8,3507
13
+ adafruit_circuitpython_rgb_display-3.14.2.dist-info/METADATA,sha256=m0bTpTon0BJjfpMT_Qe_UwR06MAexO-s5Eo6ZzIrm94,6508
14
+ adafruit_circuitpython_rgb_display-3.14.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ adafruit_circuitpython_rgb_display-3.14.2.dist-info/top_level.txt,sha256=cJwF7_bQzYW5T_mcKLceSSUQ99qb2Bmpz7KdRs_O0tA,21
16
+ adafruit_circuitpython_rgb_display-3.14.2.dist-info/RECORD,,
@@ -23,7 +23,7 @@ try:
23
23
  except ImportError:
24
24
  pass
25
25
 
26
- __version__ = "3.14.1"
26
+ __version__ = "3.14.2"
27
27
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
28
28
 
29
29
  # Command constants
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
  _SWRESET = const(0x01)
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
  _SWRESET = const(0x01)
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
 
@@ -31,7 +31,7 @@ except ImportError:
31
31
 
32
32
  from adafruit_bus_device import spi_device
33
33
 
34
- __version__ = "3.14.1"
34
+ __version__ = "3.14.2"
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
@@ -255,6 +255,19 @@ class Display:
255
255
  raise ValueError("Rotation must be 0/90/180/270")
256
256
  self._rotation = val
257
257
 
258
+ @property
259
+ def root_group(self) -> None:
260
+ """Placeholder attribute to catch displayio use"""
261
+ raise NotImplementedError(
262
+ "Please use a displayio driver for the display. This is the pixel-level driver."
263
+ )
264
+
265
+ @root_group.setter
266
+ def root_group(self, val) -> None:
267
+ raise NotImplementedError(
268
+ "Please use a displayio driver for the display. This is the pixel-level driver."
269
+ )
270
+
258
271
 
259
272
  class DisplaySPI(Display):
260
273
  """Base class for SPI type devices"""
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
  _SWRESET = const(0x01)
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
 
@@ -24,7 +24,7 @@ try:
24
24
  except ImportError:
25
25
  pass
26
26
 
27
- __version__ = "3.14.1"
27
+ __version__ = "3.14.2"
28
28
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
29
29
 
30
30
  _SETCOLUMN = const(0x15)
@@ -26,7 +26,7 @@ try:
26
26
  except ImportError:
27
27
  pass
28
28
 
29
- __version__ = "3.14.1"
29
+ __version__ = "3.14.2"
30
30
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
31
31
 
32
32
  _NOP = const(0x00)
@@ -25,7 +25,7 @@ try:
25
25
  except ImportError:
26
26
  pass
27
27
 
28
- __version__ = "3.14.1"
28
+ __version__ = "3.14.2"
29
29
  __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display.git"
30
30
 
31
31
  _NOP = const(0x00)
@@ -1,16 +0,0 @@
1
- adafruit_circuitpython_rgb_display-3.14.1.dist-info/licenses/LICENSE,sha256=LgLxmuGT-yzOZ0qYCW63SRPvZjD-WMNrJbkyFM0XVOI,1110
2
- adafruit_rgb_display/__init__.py,sha256=swPLlB67JAtxLrDjyuS3bWv2uahufIbYsj2u3_cA7t4,210
3
- adafruit_rgb_display/gc9a01a.py,sha256=fEBG9BUZmMP6Mowc0g1mEdw-4UXlkSiDrFHQwwah4Ys,3559
4
- adafruit_rgb_display/hx8353.py,sha256=ZnBQDWm7aDhn8d7AwAkxyqAVXHcuQaTWBphmduD84s0,1996
5
- adafruit_rgb_display/hx8357.py,sha256=8N_A8D2bZ5slf7_Gr1lELlyDge5fjD_JxP4JL0KloNw,3498
6
- adafruit_rgb_display/ili9341.py,sha256=-TnbNcST87sY80TdHM7TecZ9YgzN551MjooTUPimdtU,3397
7
- adafruit_rgb_display/rgb.py,sha256=f7iRyibptQAKCNeBczSO6QSMcHFLaiVwwnO3UVC6z9g,11020
8
- adafruit_rgb_display/s6d02a1.py,sha256=lkUrMW7t4Sz_DwDgik4JnhfT3Or2mHWmcM7vPJ_R57E,2226
9
- adafruit_rgb_display/ssd1331.py,sha256=aJ0M23MFn3pMaWYMGyMzuSoiRL_IlsQ2ncnTNuChrs0,4093
10
- adafruit_rgb_display/ssd1351.py,sha256=En7EkPumKxguN7KFJ0U8leuSzJCN1GOGjVOiwKf58s4,3740
11
- adafruit_rgb_display/st7735.py,sha256=J0ZNKar8rXcWOlZYtdwh7Nk34mBUZhYwh8G3cmnRIJQ,8247
12
- adafruit_rgb_display/st7789.py,sha256=_C_mZZGnSaPYhl6OyZocBFu6D0NS7xbljHFkWG6c-gU,3507
13
- adafruit_circuitpython_rgb_display-3.14.1.dist-info/METADATA,sha256=atmlhGhi1eDgG8Ya8Jo-xS_yFXDhXcqs-5rljf-NNLM,6508
14
- adafruit_circuitpython_rgb_display-3.14.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- adafruit_circuitpython_rgb_display-3.14.1.dist-info/top_level.txt,sha256=cJwF7_bQzYW5T_mcKLceSSUQ99qb2Bmpz7KdRs_O0tA,21
16
- adafruit_circuitpython_rgb_display-3.14.1.dist-info/RECORD,,