├── LICENSE ├── README.md └── assets ├── README.md ├── qt-py.gif └── qt-py2.gif /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Awesome QT Py
Awesome QT Py 3 |

4 | 5 | > A curated list of awesome Adafruit QT Py and Seeed Studio XIAO guides, hardware, software and resources. 6 | 7 | Adafruit QT Py and Seeed Studios XIAO are microcontroller centered electronics in a small form factor. With USB connectivity on such a small package, QT Py and XIAO provide robust capabilities in a very small space. 8 | 9 | ## Contents 10 | 11 | - [Typical Specifications](#typical-specifications) 12 | - [Introduction and Social Media](#introduction-and-social-media) 13 | - [Community](#community) 14 | - [Processor Boards](#processor-boards) 15 | - [Add-on Boards](#add-on-boards) 16 | - [Accessories](#accessories) 17 | - [In the news](#news) 18 | - [Videos](#videos) 19 | - [Development](#development) 20 | - [Contributing](#contributing) 21 | 22 | ## Typical Specifications 23 | 24 | - Dimensions: 21.8mm x 17.8mm x 5.8mm / 0.9" x 0.7" x 0.2" 25 | - Board pins: 14 (7x2) on a 0.1 inch spacing 26 | - USB: USB-C Connector 27 | - Approximate weight (depends on particular board): 2.2g / 0.1oz 28 | 29 | ## Introduction and Social Media 30 | - [About QT Py Video Short](https://www.youtube.com/shorts/0Qssr6B6MrU) 31 | - [Original Tutorial on the Adafruit QT Py](https://learn.adafruit.com/adafruit-qt-py) 32 | - [Adafruit Learning System Tutorials with QT Py](https://learn.adafruit.com/search?q=QT%20py) 33 | - [Adafruit Blog - posts on QT Py](https://blog.adafruit.com/?s=qt+py) 34 | - [Seeed Studio Blog - posts on XIAO](https://www.seeedstudio.com/blog/?s=xiao) 35 | - [Seeed Studio XIAO Introduction](https://wiki.seeedstudio.com/SeeedStudio_XIAO_Series_Introduction/) 36 | - [Getting Started with Seeed Studio XIAO SAMD21](https://wiki.seeedstudio.com/Seeeduino-XIAO/) 37 | - [Seeed Studio XIAO Compatible Software](https://wiki.seeedstudio.com/xiao_topic_page/) 38 | - [Seeed Studio XIAO Product Ecosystem](https://www.seeedstudio.com/xiao-series-page) 39 | - [XIAO Selector: How to Select the Right XIAO](https://www.seeedstudio.com/xiao-selector) 40 | 41 | ## Community 42 | 43 | - [/r/Adafruit QT Py Reddit](https://www.reddit.com/r/adafruit/search/?q=qt+py) 44 | - [QT Py on X/Twitter](https://twitter.com/search?q=qt%20py&src=typed_query) 45 | - [Seeed XIAO on X/Twitter](https://twitter.com/search?q=seeed%20xiao&src=typed_query&f=top) 46 | - [r/tinyXIAO Reddit](https://www.reddit.com/r/tinyXIAO/) 47 | - [Adafruit Discord](https://adafru.it/discord) - Search on QT Py or XIAO 48 | - [Seeed Studio Forum on XIAO](https://forum.seeedstudio.com/c/products/xiao/91) 49 | - [Adafruit Forums](https://forums.adafruit.com/) - Use Other Adafruit Boards for hardware, CircuitPython or Arduino 50 | 51 | ## Processor Boards 52 | 53 | ### Adafruit QT Py Processor Boards 54 | 55 | | Name | Processor | CircuitPython | Arduino | Wireless | Features | 56 | |--------------------|------------------|---|---|---|---------------------------------| 57 | | [QT Py RP2040](https://www.adafruit.com/product/4900) | RP2040 | Yes | Yes | No | Stemma QT I2C Port | 58 | | [QT Py ESP32 Pico](https://www.adafruit.com/product/5395) | ESP32 Pico V3 02 | MicroPython | Yes | WiFi+BLE+BT | 8MB Flash, 2MB PSRAM, Stemma QT Port | 59 | | [QT Py ESP32-C3 WiFi](https://www.adafruit.com/product/5405) | ESP32-C3 | MicroPython | Yes | WiFi | Stemma QT I2C Port | 60 | | [QT Py ESP32-S2](https://www.adafruit.com/product/5325) | ESP32-S2 | Yes | Yes | WiFi | 4MB Flash, 2MB PSRAM, Stemma QT I2C, chip antenna | 61 | | [QT Py ESP32-S2](https://www.adafruit.com/product/5348) | ESP32-S2 | Yes | Yes | WiFi | 4MB Flash, 2MB PSRAM, Stemma QT I2C, uFL antenna connector | 62 | | [QT Py S3](https://www.adafruit.com/product/5700) | ESP32-S3 | Yes | Yes | WiFi+BLE | 2MB PSRAM, Stemma QT Port 63 | | [QT Py ESP32-S3](https://www.adafruit.com/product/5426) | ESP32-S3 | Yes | Yes | WiFi+BLE | 8MB Flash, NO PSRAM, Stemma QT | 64 | | [QT Py - SAMD21](https://www.adafruit.com/product/4600) | ATSAMD21E18 | Yes | Yes | No | NeoPixel LED, Stemma QT I2C Port | 65 | | [CH552 QT Py](https://www.adafruit.com/product/5960) | CH552 | No | Yes | No | NeoPixel LED, Stemma QT I2C Port | 66 | 67 | ### Seeed Studio XIAO Processor Boards 68 | 69 | | Name | Processor | CircuitPython | Arduino | Wireless | Features | 70 | |--------------------|------------------|---|---|---|---------------------------------| 71 | | [XIAO ESP32C3](https://www.seeedstudio.com/Seeed-XIAO-ESP32C3-p-5431.html) | ESP32-C3 | Yes | Yes | WiFi | u.FL Antenna | 72 | | [XIAO ESP32C6](https://www.seeedstudio.com/Seeed-Studio-XIAO-ESP32C6-p-5884.html) | ESP32-C6 | No | Yes | WiFi6+BLE+802.15.4 | Zigbee/Thread Support | 73 | | [XIAO nRF52840](https://www.seeedstudio.com/Seeed-XIAO-BLE-nRF52840-p-5201.html) | nRF52840 | Yes | Yes | WiFi+BLE | Chip Antenna | 74 | | [XIAO nRF52840 Sense](https://www.seeedstudio.com/Seeed-XIAO-BLE-Sense-nRF52840-p-5253.html) | nRF52840 | Yes | Yes | WiFi+BLE | Microphone and 6-DOF IMU | 75 | | [XIAO RP2040](https://www.seeedstudio.com/XIAO-RP2040-v1-0-p-5026.html) | RP2040 | Yes | Yes | No | NeoPixel LED | 76 | | [XIAO RP2350](https://www.seeedstudio.com/Seeed-XIAO-RP2350-p-5944.html) | RP2350A | Yes | Yes | No | NeoPixel LED | 77 | | [XIAO SAMD21](https://www.seeedstudio.com/Seeeduino-XIAO-Arduino-Microcontroller-SAMD21-Cortex-M0+-p-4426.html) | ATSAMD21G18 | Yes | Yes | No | | 78 | | [XIAO ESP32S3](https://www.seeedstudio.com/XIAO-ESP32S3-p-5627.html) | ESP32-S3 | No | Yes | WiFi+BLE | Chip + u.FL Antenna | 79 | | [XIAO ESP32S3 Sense](https://www.seeedstudio.com/XIAO-ESP32S3-Sense-p-5639.html) | ESP32-S3 | No | Yes | WiFi+BLE | Camera, Microphone, u.FL Antenna | 80 | | [XIAO MG24](https://www.seeedstudio.com/Seeed-Studio-XIAO-MG24-p-6247.html) | EFR32MG24 | No | Yes | BLE | u.FL Antenna | 81 | | [XIAO MG24 Sense](https://www.seeedstudio.com/Seeed-XIAO-MG24-Sense-p-6248.html) | EFR32MG24 | No | Yes | BLE | Microphone, 6-DOF IMU, u.FL Antenna | 82 | | [XIAO RA4M1](https://www.seeedstudio.com/Seeed-XIAO-RA4M1-p-5943.html) | RA4M1 | No | Yes | No | | 83 | 84 | ### Other Processor Boards 85 | 86 | | Name | Processor | CircuitPython | Arduino | Wireless | Features | 87 | |--------------------|------------------|---|---|---|---------------------------------| 88 | | [Phyx LANA TNY](https://lectronz.com/products/lana-tny) | WCH CH32V203 | No | Yes | No | NeoPixel, Stemma QT/Qwiic | 89 | | [Phyx RICK TNY](https://lectronz.com/products/rick-tny) | RP2350A | Yes | Yes | No | NeoPixel | 90 | 91 | ## Add-on Boards 92 | 93 | Adafruit calls their QT Py size add-on boards "BFF" 94 | 95 | | Company | Name | Features | 96 | |---|---|---| 97 | | Adafruit | [EYESPI BFF for QT Py or Xiao](https://www.adafruit.com/product/5772) | 18 Pin EYESPI FPC Connector for connecting displays | 98 | | Adafruit | [microSD Card BFF Add-On for QT Py and Xiao](https://www.adafruit.com/product/5683) | Provides a microSD card slot | 99 | | Adafruit | [Audio BFF Add-on for QT Py and Xiao](https://www.adafruit.com/product/5769) | MAX98357 3 watt audio amplifier, microSD slot, connector for speaker | 100 | | Adafruit | [NeoKey BFF for Mechanical Key Add-On](https://www.adafruit.com/product/5695) | Add a Cherry MX compatible switch | 101 | | Adafruit | [BNO055 + BMP280 BFF Add-On for QT Py](https://www.adafruit.com/product/5937) | 9 degree-of-freedom (9DoF) motion plus pressure/altitude sensing | 102 | | Adafruit | [DC Power BFF Add-On for QT Py](https://www.adafruit.com/product/5882) | Power a QT Py or XIAO up to 20 volts DC | 103 | | Adafruit | [CAN Bus BFF Add-On for QT Py](https://www.adafruit.com/product/5877) | MCP26525 CAN controller+transceiver and connector | 104 | | Adafruit | [NeoPixel Driver BFF Add-On for QT Py and Xiao](https://www.adafruit.com/product/5645) | Level shift signal to 5V for NeoPixel LED driving | 105 | | Adafruit | [I2S Amplifier BFF Add-On for QT Py and Xiao](https://www.adafruit.com/product/5770) | MAX98357 audio amplifier and picoblade speaker connector | 106 | | Adafruit | [5x5 NeoPixel Grid BFF Add-On for QT Py and Xiao](https://www.adafruit.com/product/5646) | 25 (5x5) small RGB LEDs | 107 | | Seeed Studio | [Expansion Board Base for XIAO](https://www.seeedstudio.com/Seeeduino-XIAO-Expansion-board-p-4746.html) | Grove OLED - IIC, Uart, Analog/Digital | 108 | | Seeed Studio | [CAN Bus Breakout Board for XIAO and QT Py](https://www.seeedstudio.com/Seeed-Studio-CAN-Bus-Breakout-Board-for-XIAO-and-QT-Py-p-5702.html) | MCP2515 controller, SN65HVD230 transceiver chip, terminal blocks | 109 | | Seeed Studio | [Grove Base for XIAO](https://www.seeedstudio.com/Grove-Shield-for-Seeeduino-XIAO-p-4621.html) | 4/8 Grove ports + embedded battery management chip | 110 | | Seeed Studio | [Round Display for XIAO - 1.28-inch round touch screen](https://www.seeedstudio.com/Seeed-Studio-Round-Display-for-XIAO-p-5638.html) | 240×240 resolution, 65k colors, RTC, charge IC, TF card slot | 111 | | Seeed Studio | [6x10 RGB MATRIX for XIAO](https://www.seeedstudio.com/6x10-RGB-MATRIX-for-XIAO-p-5771.html) | 60 LEDs onboard, 1m*1m WS2812B LED | 112 | | Seeed Studio | [24GHz mmWave Sensor for XIAO](https://www.seeedstudio.com/Seeed-Studio-24GHz-mmWave-for-XIAO-p-5830.html) | Human Static Presence | 113 | | Seeed Studio | [ePaper Breakout Board](https://www.seeedstudio.com/ePaper-Breakout-Board-p-5804.html) | 24-pin FPC connection, addt'l 8-pin 2.54 header | 114 | | Seeed Studio | [GNSS add on Module for XIAO](https://www.seeedstudio.com/L76K-GNSS-Module-for-Seeed-Studio-XIAO-p-5864.html) | L76K GNSS Module, global tracking GPS, BeiDou, GLONASS, and QZSS | 115 | | Seeed Studio | [ReSpeaker Lite USB 2-Mic Array](https://www.seeedstudio.com/ReSpeaker-Lite-p-5928.html) | 2-Mic array based on XMOS' audio processing algorithms 116 | | Seeed Studio | [Grove Smart IR Gesture Sensor](https://www.seeedstudio.com/Grove-Smart-IR-Gesture-Sensor-p-5721.html) | infrared camera sensor, AI algorithm, over 15 gestures detection, I2C, SPI 117 | | Seeed Studio | [Grove - Vision AI Module V2 ](https://www.seeedstudio.com/Grove-Vision-AI-Module-V2-p-5851.html) | MCU-based vision AI module powered by Himax WiseEye2, Arm Cortex-M55 & Ethos-U55, TensorFlow and PyTorch 118 | | Evil Genius Labs | [One Inch Fibonacci64](https://www.evilgeniuslabs.org/one-inch-fibonacci64) | 64 RGB LEDs in a Fibonacci distribution | 119 | | Evil Genius Labs | [One Inch Fibonacci32](https://www.evilgeniuslabs.org/one-inch-fibonacci32) | 32 RGB LEDs in a Fibonacci distribution | 120 | | Evil Genius Labs | [Mega CycloHex](https://www.evilgeniuslabs.org/mega-cyclohex) | Hexagonally-nested rings with 228 RGB LEDs, 6 touch pads via an Adafruit QT Py SAMD21 | 121 | | Evil Genius Labs | [CycloHex](https://www.evilgeniuslabs.org/cyclohex) | Hexagonally-nested rings with 228 RGB LEDs, 6 touch pads via an Adafruit QT Py SAMD21 | 122 | | Evil Genius Labs | [Fibonacci64 Flower](https://www.evilgeniuslabs.org/fibonacci64-flower) | 64 RGB LEDs in a Fibonacci distribution | 123 | | Evil Genius Labs | [Fibonacci64 50mm Goggle Lens](https://www.evilgeniuslabs.org/fibonacci64-goggles) | 50mm circular disc with 64 RGB LEDs in a Fibonacci distribution | 124 | | Evil Genius Labs | [Fibonacci182 Card](https://www.evilgeniuslabs.org/fibonacci182-card) | 182 RGB LEDs in a Fibonacci distribution | 125 | | Evil Genius Labs | [Fibonacci64 Micro HDR](https://www.evilgeniuslabs.org/fibonacci64-micro-hdr) | 64 RGB LEDs in a Fibonacci distribution | 126 | | Evil Genius Labs | [Fibonacci64 Micro](https://www.evilgeniuslabs.org/fibonacci64-micro) | 64 RGB LEDs in a Fibonacci distribution | 127 | | Evil Genius Labs | [Fibonacci64 Nano](https://www.evilgeniuslabs.org/fibonacci64-nano) | 64 RGB LEDs in a Fibonacci distribution | 128 | | Cyborg5 / OSH Park | [IRHat2](https://oshpark.com/shared_projects/YQg2CQxf) | IoT Infrared Remote using Raspberry Pi Zero W and Adafruit QT Py Hat described [here](https://learn.adafruit.com/iot-ir-remote-using-raspberry-pi-zero-w-and-qtpy-hat/) | 129 | | SparkFun | [WVR Audio Development Board - USB Host Version](https://www.sparkfun.com/products/21308) | A sample player powered by an ESP32. XIAO is USB Host | 130 | 131 | ## Accessories 132 | 133 | | Company | Name | Features | 134 | |---|---|---| 135 | | Printables | [Case for Adafruit QT PY RP2040 and Seeed XIAO RP2040](https://www.printables.com/en/model/166430-case-for-adafruit-qt-py-rp2040-and-seeed-xiao-rp20/comments/363061) | 3D printable case | 136 | | Solder Party | [Xiao/QTPy FlexyPin Adapter](https://lectronz.com/products/xiao-qtpy-flexypin-adapter) | A breadboard adapter that doesn't require headers to be soldered to the QtPy | 137 | 138 | ## News 139 | - [Tom's Hardware Best RP2040 Boards 2024](https://www.tomshardware.com/best-picks/best-rp2040-boards) - Adafruit QT Py Rp2040 and Seeed XIAO RP2040, April 3, 2024 140 | - [Adafruit QT Py RP2040 Review: A tiny board for great projects](https://www.tomshardware.com/reviews/adafruit-qt-py-rp2040-review) - by Les Pounder, April 18, 2021 141 | 142 | ## Videos 143 | 144 | ### QT Py 145 | 146 | - [hackster.io QT Py Unboxing](https://www.hackster.io/videos/769) 147 | - [QT Py Videos on YouTube](https://www.youtube.com/results?search_query=qt+py) 148 | - [Adafruit QT Py - tiny but mighty](https://www.youtube.com/watch?v=dAYrv1azfT4) 149 | - [First Look at the Adafruit QT Py RP2040 - Fantastic Tiny RP2040 Board](https://www.youtube.com/watch?v=qfbPyu_1L18) 150 | - [Adafruit QT PI SAMD21 Board](https://www.youtube.com/watch?v=qwKIxXVd0lc) 151 | - [The first ESP32-C3 QT Py off the machine line](https://www.youtube.com/watch?v=whaBOyJfLSM) 152 | 153 | ## XIAO 154 | 155 | - [Seeeduino XIAO the Smallest Arduino, Getting Started Tutorial, Pinout, specifications, & Arduino IDE](https://www.youtube.com/watch?v=t1XsDqZjuQo) 156 | - [ESP32-C3 XIAO, the Smallest ESP32 Board, ESP32-C3 by Seeed Studio, XIAO ESP32-C3](https://www.youtube.com/watch?v=P215DJxGjQs) 157 | - [XIAO ESP32C6 Getting Started Tutorial, Seeed Studio, Smallest ESP32](https://www.youtube.com/watch?v=LnFYCHeL84w) 158 | - [Seeeduino XIAO - 32-bit Arduino-compatible Microcontroller](https://www.youtube.com/watch?v=pTwEnckaPYY) 159 | - [Unboxing and testing the Seeedstudio XIAO nerdhut.de](https://www.youtube.com/watch?v=oqDOyln_4dE) 160 | - [Seeed XIAO RP2040](https://www.youtube.com/watch?v=u61mOIfGdR8) 161 | 162 | ## Development 163 | 164 | - ["Hello XIAO" in PlatformIO](https://sigmdel.ca/michel/ha/xiao/seeeduino_xiao_platformio2_en.html) 165 | - [Creating XIAO Components on Flux.ai](https://wiki.seeedstudio.com/PCB_Design_XIAO/) 166 | 167 | ## Contributing 168 | 169 | Contributions and suggestions are always welcome! Please make GitHub pull requests to modify Awesome QY Py. 170 | 171 | ## License & Trademarks 172 | 173 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 174 | 175 | To the extent possible under law, the authors have waived all copyright and related or neighbouring rights to this work. 176 | -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | This subdirectory contains images and other assets for Awesome QT Py 2 | -------------------------------------------------------------------------------- /assets/qt-py.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/awesome-qt-py/888dd45a91b1263098eaf5f8f936466e7c78b2e6/assets/qt-py.gif -------------------------------------------------------------------------------- /assets/qt-py2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/awesome-qt-py/888dd45a91b1263098eaf5f8f936466e7c78b2e6/assets/qt-py2.gif --------------------------------------------------------------------------------