From 2f057dda25f7d5d78dda52d39fb8c767cba97782 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Sat, 21 Dec 2024 10:57:09 -0600 Subject: [PATCH] fix connection_manager with .mpy extension. add section to readme about generating single example image. --- README.md | 7 +++++++ settings_required.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80e616d..dd644b5 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,13 @@ python3 create_requirement_images.py learn --guide [Learn Guide Name] python3 create_requirement_images.py learn -g [Learn Guide Name] ``` +### Generate Single Library Bundle Example Image +```shell +python3 create_requirement_images.py bundle [path to example].py +# e.g. +python3 create_requirement_images.py bundle Adafruit_CircuitPythonBundle/libraries/helpers/wiz/wiz_buttons_controller.py +``` + ### Help Command The help command will list all possible commands and arguments. diff --git a/settings_required.py b/settings_required.py index a27d3d3..287b8dc 100644 --- a/settings_required.py +++ b/settings_required.py @@ -13,7 +13,7 @@ "adafruit_minimqtt", "adafruit_portalbase", "adafruit_azureiot", - "adafruit_connection_manager", + "adafruit_connection_manager.mpy", ]