├── 00_UF2 ├── Pico_MircoPython_210418.uf2 ├── README.md └── image │ ├── MicroPython.gif │ └── cover.jpg ├── 01_Blink ├── Blink.py └── README.md ├── 02_GPIO ├── GPIO.py ├── README.md └── image │ ├── Schematic.png │ └── physical.png ├── 03_PWM ├── PWM.py └── README.md ├── 04_ADC ├── ADC.py ├── README.md └── image │ ├── Schematic.png │ └── physical.png ├── 05_UART ├── README.md ├── UART.py └── image │ └── Schematic.png ├── 06_I2C ├── I2C_TEST │ ├── I2C_TEST.py │ └── README.md ├── ICM20948 │ ├── ICM20948.py │ └── README.md ├── README.md └── image │ └── Schematic.png ├── 07_SPI ├── LCD │ ├── LCD_TEST.py │ └── README.md ├── README.md ├── XPT2046 │ ├── README.md │ └── XPT2046_TEST.py └── image │ ├── Schematic1.png │ └── Schematic2.png ├── 08_PIO ├── README.md ├── image │ ├── Schematic1.png │ ├── Schematic2.png │ └── Schematic3.png └── ws2812b │ └── ws2812b.py └── README.md /00_UF2/Pico_MircoPython_210418.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/00_UF2/Pico_MircoPython_210418.uf2 -------------------------------------------------------------------------------- /00_UF2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/00_UF2/README.md -------------------------------------------------------------------------------- /00_UF2/image/MicroPython.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/00_UF2/image/MicroPython.gif -------------------------------------------------------------------------------- /00_UF2/image/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/00_UF2/image/cover.jpg -------------------------------------------------------------------------------- /01_Blink/Blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/01_Blink/Blink.py -------------------------------------------------------------------------------- /01_Blink/README.md: -------------------------------------------------------------------------------- 1 | # Blink 2 | ## 实现功能 3 | 对GPIO25每秒进行一次反转,使Pico板载LED循环亮一秒灭一秒. -------------------------------------------------------------------------------- /02_GPIO/GPIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/02_GPIO/GPIO.py -------------------------------------------------------------------------------- /02_GPIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/02_GPIO/README.md -------------------------------------------------------------------------------- /02_GPIO/image/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/02_GPIO/image/Schematic.png -------------------------------------------------------------------------------- /02_GPIO/image/physical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/02_GPIO/image/physical.png -------------------------------------------------------------------------------- /03_PWM/PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/03_PWM/PWM.py -------------------------------------------------------------------------------- /03_PWM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/03_PWM/README.md -------------------------------------------------------------------------------- /04_ADC/ADC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/04_ADC/ADC.py -------------------------------------------------------------------------------- /04_ADC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/04_ADC/README.md -------------------------------------------------------------------------------- /04_ADC/image/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/04_ADC/image/Schematic.png -------------------------------------------------------------------------------- /04_ADC/image/physical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/04_ADC/image/physical.png -------------------------------------------------------------------------------- /05_UART/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/05_UART/README.md -------------------------------------------------------------------------------- /05_UART/UART.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/05_UART/UART.py -------------------------------------------------------------------------------- /05_UART/image/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/05_UART/image/Schematic.png -------------------------------------------------------------------------------- /06_I2C/I2C_TEST/I2C_TEST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/I2C_TEST/I2C_TEST.py -------------------------------------------------------------------------------- /06_I2C/I2C_TEST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/I2C_TEST/README.md -------------------------------------------------------------------------------- /06_I2C/ICM20948/ICM20948.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/ICM20948/ICM20948.py -------------------------------------------------------------------------------- /06_I2C/ICM20948/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/ICM20948/README.md -------------------------------------------------------------------------------- /06_I2C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/README.md -------------------------------------------------------------------------------- /06_I2C/image/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/06_I2C/image/Schematic.png -------------------------------------------------------------------------------- /07_SPI/LCD/LCD_TEST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/07_SPI/LCD/LCD_TEST.py -------------------------------------------------------------------------------- /07_SPI/LCD/README.md: -------------------------------------------------------------------------------- 1 | # LCD_TEST 2 | ## 实现功能 3 | * LCD显示和触摸测试程序 -------------------------------------------------------------------------------- /07_SPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/07_SPI/README.md -------------------------------------------------------------------------------- /07_SPI/XPT2046/README.md: -------------------------------------------------------------------------------- 1 | # XPT2046_TEST 2 | ## 实现功能 3 | * 触摸测试,在命令行中显示当前触摸信息 -------------------------------------------------------------------------------- /07_SPI/XPT2046/XPT2046_TEST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/07_SPI/XPT2046/XPT2046_TEST.py -------------------------------------------------------------------------------- /07_SPI/image/Schematic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/07_SPI/image/Schematic1.png -------------------------------------------------------------------------------- /07_SPI/image/Schematic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/07_SPI/image/Schematic2.png -------------------------------------------------------------------------------- /08_PIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/08_PIO/README.md -------------------------------------------------------------------------------- /08_PIO/image/Schematic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/08_PIO/image/Schematic1.png -------------------------------------------------------------------------------- /08_PIO/image/Schematic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/08_PIO/image/Schematic2.png -------------------------------------------------------------------------------- /08_PIO/image/Schematic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/08_PIO/image/Schematic3.png -------------------------------------------------------------------------------- /08_PIO/ws2812b/ws2812b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/08_PIO/ws2812b/ws2812b.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveshareteam/Pico_MircoPython_Examples/HEAD/README.md --------------------------------------------------------------------------------