-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated update by Adabot (adafruit/adabot@5cb9ec6)
Updating https://github.com/adafruit/Adafruit_CircuitPython_AHTx0 to 1.0.1 from 1.0.0: > Merge pull request adafruit/Adafruit_CircuitPython_AHTx0#1 from kattni/example-i2c-update Updating https://github.com/adafruit/Adafruit_CircuitPython_ESP32SPI to 3.4.1 from 3.4.0: > Merge pull request adafruit/Adafruit_CircuitPython_ESP32SPI#99 from Flameeyes/master Updating https://github.com/adafruit/Adafruit_CircuitPython_ILI9341 to 1.2.1 from 1.2.0: > Merge pull request adafruit/Adafruit_CircuitPython_ILI9341#22 from makermelissa/master > Merge pull request adafruit/Adafruit_CircuitPython_ILI9341#21 from adafruit/setup-py-disabled > build.yml: add black formatting check Updating https://github.com/adafruit/Adafruit_CircuitPython_LPS2X to 2.0.0 from 1.1.1: > Merge pull request adafruit/Adafruit_CircuitPython_LPS2X#4 from adafruit/lps22 > build.yml: add black formatting check Updating https://github.com/adafruit/Adafruit_CircuitPython_Wiznet5k to 1.4.0 from 1.3.2: > Merge pull request adafruit/Adafruit_CircuitPython_Wiznet5k#20 from xorbit/master > Merge pull request adafruit/Adafruit_CircuitPython_Wiznet5k#14 from adafruit/pylint-update Updating https://github.com/adafruit/Adafruit_CircuitPython_AzureIoT to 2.2.1 from 2.2.0: > Merge pull request adafruit/Adafruit_CircuitPython_AzureIoT#16 from jimbobbennett/master Updating https://github.com/adafruit/Adafruit_CircuitPython_Display_Text to 2.7.0 from 2.6.1: > Merge pull request adafruit/Adafruit_CircuitPython_Display_Text#49 from kmatch98/background > Merge pull request adafruit/Adafruit_CircuitPython_Display_Text#48 from FoamyGuy/better_group_full_error Updating https://github.com/adafruit/Adafruit_CircuitPython_LED_Animation to 2.3.0 from 2.2.0: > Merge pull request adafruit/Adafruit_CircuitPython_LED_Animation#39 from rhooper/bugfixes > Merge pull request adafruit/Adafruit_CircuitPython_LED_Animation#38 from rhooper/sequence-one-shot > Merge pull request adafruit/Adafruit_CircuitPython_LED_Animation#40 from rhooper/pixelgrid Updating https://github.com/adafruit/Adafruit_CircuitPython_MiniMQTT to 3.1.0 from 3.0.0: > Merge pull request adafruit/Adafruit_CircuitPython_MiniMQTT#38 from brentru/on-message-enhancements Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA: > Added the following libraries: Adafruit_CircuitPython_ILI9341
- Loading branch information
1 parent
cfb1b1e
commit 5e4f624
Showing
10 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule esp32spi
updated
37 files
Submodule ili9341
updated
5 files
+3 −0 | .github/workflows/build.yml | |
+1 −1 | examples/ili9341_shield_simpletest.py | |
+1 −1 | examples/ili9341_simpletest.py | |
+1 −1 | requirements.txt | |
+50 −0 | setup.py |
Submodule lps2x
updated
5 files
+3 −0 | .github/workflows/build.yml | |
+4 −3 | README.rst | |
+154 −53 | adafruit_lps2x.py | |
+1 −1 | docs/index.rst | |
+3 −1 | examples/lps2x_simpletest.py |
Submodule wiznet5k
updated
4 files
+1 −1 | .github/workflows/build.yml | |
+17 −6 | adafruit_wiznet5k/adafruit_wiznet5k.py | |
+38 −29 | adafruit_wiznet5k/adafruit_wiznet5k_dhcp.py | |
+2 −2 | docs/conf.py |
Submodule display-text
updated
2 files
+99 −31 | adafruit_display_text/label.py | |
+125 −0 | examples/display_text_background_color_padding.py |
Submodule led-animation
updated
9 files
Submodule minimqtt
updated
6 files
+7 −0 | LICENSE | |
+0 −0 | adafruit_minimqtt/__init__.py | |
+51 −4 | adafruit_minimqtt/adafruit_minimqtt.py | |
+100 −0 | adafruit_minimqtt/matcher.py | |
+1 −1 | docs/api.rst | |
+119 −0 | examples/minimqtt_pub_sub_blocking_topic_callbacks.py |