RGBMatrixEmulator 0.16.4__tar.gz → 0.16.5__tar.gz
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.
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/PKG-INFO +4 -4
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/README.md +3 -3
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/pi5_adapter/__init__.py +5 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/version.py +1 -1
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/.gitignore +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/LICENSE +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/base.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/fps.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/base.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/image.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/image_web_socket.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/main.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/single_file.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/server.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/client.js +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/icon.ico +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/styles.css +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/browser_adapter/static/index.html +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/pi5_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/pygame_adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/raw_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/raw_adapter/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/sixel_adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/terminal_adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/tkinter_adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/turtle_adapter.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/cli/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/cli/command.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/cli/config.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/canvas.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/matrix.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/options.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/graphics/__init__.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/graphics/color.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/graphics/font.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/icon.png +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/adapter_loader.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/emulator_config.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/pixel_style.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/logger.py +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/py.typed +0 -0
- {rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RGBMatrixEmulator
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.5
|
|
4
4
|
Summary: A PC emulator for Raspberry Pi LED matrices driven by rpi-rgb-led-matrix
|
|
5
5
|
Project-URL: Homepage, https://github.com/ty-porter/RGBMatrixEmulator
|
|
6
6
|
Author-email: Tyler Porter <tyler.b.porter@gmail.com>
|
|
@@ -228,10 +228,10 @@ Please see the [README for the `browser` display adapter](RGBMatrixEmulator/adap
|
|
|
228
228
|
|
|
229
229
|
### Raspberry Pi 5 Adapter
|
|
230
230
|
|
|
231
|
-
> [!
|
|
232
|
-
> This adapter is
|
|
231
|
+
> [!WARNING]
|
|
232
|
+
> This adapter is deprecated. It will be removed no later than July 1, 2026. Please use native `rpi-rgb-led-matrix` Raspberry Pi 5 support.
|
|
233
233
|
|
|
234
|
-
RGBME can be used to "bridge" scripts written for `rpi-rgb-led-matrix` to Raspberry Pi model 5 through [Adafruit Blinka](https://github.com/adafruit/Adafruit_Blinka) and the [Adafruit-Blinka-Raspberry-Pi5-Piomatter](https://github.com/adafruit/Adafruit_Blinka_Raspberry_Pi5_Piomatter) libraries.
|
|
234
|
+
RGBME can be used to "bridge" scripts written for `rpi-rgb-led-matrix` to Raspberry Pi model 5 through [Adafruit Blinka](https://github.com/adafruit/Adafruit_Blinka) and the [Adafruit-Blinka-Raspberry-Pi5-Piomatter](https://github.com/adafruit/Adafruit_Blinka_Raspberry_Pi5_Piomatter) libraries.
|
|
235
235
|
|
|
236
236
|
Please see the [README for the `pi5` display adapter](RGBMatrixEmulator/adapters/pi5_adapter/README.md) for further information regarding its configuration and usage.
|
|
237
237
|
|
|
@@ -196,10 +196,10 @@ Please see the [README for the `browser` display adapter](RGBMatrixEmulator/adap
|
|
|
196
196
|
|
|
197
197
|
### Raspberry Pi 5 Adapter
|
|
198
198
|
|
|
199
|
-
> [!
|
|
200
|
-
> This adapter is
|
|
199
|
+
> [!WARNING]
|
|
200
|
+
> This adapter is deprecated. It will be removed no later than July 1, 2026. Please use native `rpi-rgb-led-matrix` Raspberry Pi 5 support.
|
|
201
201
|
|
|
202
|
-
RGBME can be used to "bridge" scripts written for `rpi-rgb-led-matrix` to Raspberry Pi model 5 through [Adafruit Blinka](https://github.com/adafruit/Adafruit_Blinka) and the [Adafruit-Blinka-Raspberry-Pi5-Piomatter](https://github.com/adafruit/Adafruit_Blinka_Raspberry_Pi5_Piomatter) libraries.
|
|
202
|
+
RGBME can be used to "bridge" scripts written for `rpi-rgb-led-matrix` to Raspberry Pi model 5 through [Adafruit Blinka](https://github.com/adafruit/Adafruit_Blinka) and the [Adafruit-Blinka-Raspberry-Pi5-Piomatter](https://github.com/adafruit/Adafruit_Blinka_Raspberry_Pi5_Piomatter) libraries.
|
|
203
203
|
|
|
204
204
|
Please see the [README for the `pi5` display adapter](RGBMatrixEmulator/adapters/pi5_adapter/README.md) for further information regarding its configuration and usage.
|
|
205
205
|
|
|
@@ -13,6 +13,11 @@ except ImportError:
|
|
|
13
13
|
|
|
14
14
|
class Pi5Adapter(BaseAdapter):
|
|
15
15
|
def __init__(self, width, height, options):
|
|
16
|
+
Logger.warning(
|
|
17
|
+
"The Pi5 adapter is deprecated. rpi-rgb-led-matrix now provides Raspberry Pi 5 support natively. "
|
|
18
|
+
"This adapter will be removed no later than July 1, 2026.",
|
|
19
|
+
)
|
|
20
|
+
|
|
16
21
|
super().__init__(width, height, options)
|
|
17
22
|
self.matrix = None
|
|
18
23
|
self.framebuffer = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/pygame_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/sixel_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/terminal_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/tkinter_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/adapters/turtle_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/emulation/options.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/graphics/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/adapter_loader.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/emulator_config.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.4 → rgbmatrixemulator-0.16.5}/RGBMatrixEmulator/internal/pixel_style.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|