├── ADkeyboard ├── draw │ └── main.py └── main.py ├── ADrotary ├── .keep └── README.md ├── DHT11 ├── DHT22.py ├── main.py └── 引脚图.jpg ├── DS1302 ├── DS1302.py ├── LCD1602_clock │ ├── DS1302.py │ ├── esp8266_i2c_lcd.py │ ├── lcd_api.py │ └── main.py ├── ds1302.jpg └── main.py ├── HC-SR04 ├── hcsr04.py └── main.py ├── LICENSE ├── MG996R └── main.py ├── NEC_遥控 ├── .keep └── README.md ├── Pico-R3-A4-Pinout.pdf ├── Pin └── main.py ├── README.md ├── SG90 └── main.py ├── ULN2003 ├── Stepper.py └── main.py ├── VL53L0X ├── .keep ├── README.md └── vl53l0x.py ├── bmp180 ├── .keep ├── bmp180.py ├── demo.py └── readme.md ├── bmp280 ├── .keep ├── bmp280.py ├── main.py └── readme.md ├── empty ├── boot.py └── main.py ├── esp01 └── esp01.py ├── gps ├── .keep ├── demo.py ├── neo6.py └── readme.md ├── hc12 ├── HC-HID_V1.2.exe ├── MYUART.py └── uar.py ├── ina3221 ├── .keep ├── 1.jpg ├── address.jpg ├── ex3221.py ├── ina3221.py ├── readme.md └── 建议将A0与GND相连.jpg ├── lcd1602 ├── esp8266_i2c_lcd.py ├── lcd_api.py └── main.py ├── lcd2004 ├── lcd2004.py └── main.py ├── max7219 ├── main.py ├── max7219.py └── 连线.jpg ├── mlx90614 ├── .keep ├── README.md └── mlx90614.py ├── pca9685 ├── LICENSE ├── README.md ├── docs │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── make.bat │ ├── motor.rst │ ├── pca9685.rst │ └── servo.rst ├── main.py ├── motor.py ├── pca9685.py ├── servo.py ├── setup.py ├── stepper.py └── 接线.png ├── rotary ├── .keep ├── readme.md ├── rotary.py ├── rotary_irq_esp.py ├── rotary_irq_pyb.py └── rotary_irq_rp2.py ├── rp2-pico-20210206-unstable-v1.14-9-g9dedcf122.uf2 ├── rp2-pico-20220117-v1.18.uf2 ├── ssd1306 ├── badapple25s │ ├── bad.data │ ├── main.py │ └── ssd1306.py ├── badapplecz │ ├── bad.data │ └── main.py ├── main.py ├── pbm │ ├── WeAct Studio Download Tool 烧录教程.mp4 │ ├── a.jpg │ ├── a.pbm │ ├── b.jpg │ ├── b.pbm │ ├── lifegame-main (1).zip │ ├── lifegame-main.zip │ ├── main.py │ └── pbm.py └── ssd1306.py ├── tm1637 ├── main.py └── tm1637.py ├── wifi ├── LICENSE ├── README.md └── wifiat.py └── ws2812 ├── main.py └── pico_python_ws2812b-main ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── fireflies.py ├── flash.py ├── rainbow.py └── thermometer.py ├── pico_ws2812b.jpg └── ws2812b.py /ADkeyboard/draw/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ADkeyboard/draw/main.py -------------------------------------------------------------------------------- /ADkeyboard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ADkeyboard/main.py -------------------------------------------------------------------------------- /ADrotary/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ADrotary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ADrotary/README.md -------------------------------------------------------------------------------- /DHT11/DHT22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DHT11/DHT22.py -------------------------------------------------------------------------------- /DHT11/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DHT11/main.py -------------------------------------------------------------------------------- /DHT11/引脚图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DHT11/引脚图.jpg -------------------------------------------------------------------------------- /DS1302/DS1302.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/DS1302.py -------------------------------------------------------------------------------- /DS1302/LCD1602_clock/DS1302.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/LCD1602_clock/DS1302.py -------------------------------------------------------------------------------- /DS1302/LCD1602_clock/esp8266_i2c_lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/LCD1602_clock/esp8266_i2c_lcd.py -------------------------------------------------------------------------------- /DS1302/LCD1602_clock/lcd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/LCD1602_clock/lcd_api.py -------------------------------------------------------------------------------- /DS1302/LCD1602_clock/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/LCD1602_clock/main.py -------------------------------------------------------------------------------- /DS1302/ds1302.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/ds1302.jpg -------------------------------------------------------------------------------- /DS1302/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/DS1302/main.py -------------------------------------------------------------------------------- /HC-SR04/hcsr04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/HC-SR04/hcsr04.py -------------------------------------------------------------------------------- /HC-SR04/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/HC-SR04/main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/LICENSE -------------------------------------------------------------------------------- /MG996R/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/MG996R/main.py -------------------------------------------------------------------------------- /NEC_遥控/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEC_遥控/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/NEC_遥控/README.md -------------------------------------------------------------------------------- /Pico-R3-A4-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/Pico-R3-A4-Pinout.pdf -------------------------------------------------------------------------------- /Pin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/Pin/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/README.md -------------------------------------------------------------------------------- /SG90/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/SG90/main.py -------------------------------------------------------------------------------- /ULN2003/Stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ULN2003/Stepper.py -------------------------------------------------------------------------------- /ULN2003/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ULN2003/main.py -------------------------------------------------------------------------------- /VL53L0X/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VL53L0X/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/VL53L0X/README.md -------------------------------------------------------------------------------- /VL53L0X/vl53l0x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/VL53L0X/vl53l0x.py -------------------------------------------------------------------------------- /bmp180/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bmp180/bmp180.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp180/bmp180.py -------------------------------------------------------------------------------- /bmp180/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp180/demo.py -------------------------------------------------------------------------------- /bmp180/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp180/readme.md -------------------------------------------------------------------------------- /bmp280/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bmp280/bmp280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp280/bmp280.py -------------------------------------------------------------------------------- /bmp280/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp280/main.py -------------------------------------------------------------------------------- /bmp280/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/bmp280/readme.md -------------------------------------------------------------------------------- /empty/boot.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /empty/main.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /esp01/esp01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/esp01/esp01.py -------------------------------------------------------------------------------- /gps/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gps/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/gps/demo.py -------------------------------------------------------------------------------- /gps/neo6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/gps/neo6.py -------------------------------------------------------------------------------- /gps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/gps/readme.md -------------------------------------------------------------------------------- /hc12/HC-HID_V1.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/hc12/HC-HID_V1.2.exe -------------------------------------------------------------------------------- /hc12/MYUART.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/hc12/MYUART.py -------------------------------------------------------------------------------- /hc12/uar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/hc12/uar.py -------------------------------------------------------------------------------- /ina3221/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ina3221/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/1.jpg -------------------------------------------------------------------------------- /ina3221/address.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/address.jpg -------------------------------------------------------------------------------- /ina3221/ex3221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/ex3221.py -------------------------------------------------------------------------------- /ina3221/ina3221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/ina3221.py -------------------------------------------------------------------------------- /ina3221/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/readme.md -------------------------------------------------------------------------------- /ina3221/建议将A0与GND相连.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ina3221/建议将A0与GND相连.jpg -------------------------------------------------------------------------------- /lcd1602/esp8266_i2c_lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/lcd1602/esp8266_i2c_lcd.py -------------------------------------------------------------------------------- /lcd1602/lcd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/lcd1602/lcd_api.py -------------------------------------------------------------------------------- /lcd1602/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/lcd1602/main.py -------------------------------------------------------------------------------- /lcd2004/lcd2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/lcd2004/lcd2004.py -------------------------------------------------------------------------------- /lcd2004/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/lcd2004/main.py -------------------------------------------------------------------------------- /max7219/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/max7219/main.py -------------------------------------------------------------------------------- /max7219/max7219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/max7219/max7219.py -------------------------------------------------------------------------------- /max7219/连线.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/max7219/连线.jpg -------------------------------------------------------------------------------- /mlx90614/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mlx90614/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/mlx90614/README.md -------------------------------------------------------------------------------- /mlx90614/mlx90614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/mlx90614/mlx90614.py -------------------------------------------------------------------------------- /pca9685/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/LICENSE -------------------------------------------------------------------------------- /pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/README.md -------------------------------------------------------------------------------- /pca9685/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/Makefile -------------------------------------------------------------------------------- /pca9685/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/conf.py -------------------------------------------------------------------------------- /pca9685/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/index.rst -------------------------------------------------------------------------------- /pca9685/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/make.bat -------------------------------------------------------------------------------- /pca9685/docs/motor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/motor.rst -------------------------------------------------------------------------------- /pca9685/docs/pca9685.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/pca9685.rst -------------------------------------------------------------------------------- /pca9685/docs/servo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/docs/servo.rst -------------------------------------------------------------------------------- /pca9685/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/main.py -------------------------------------------------------------------------------- /pca9685/motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/motor.py -------------------------------------------------------------------------------- /pca9685/pca9685.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/pca9685.py -------------------------------------------------------------------------------- /pca9685/servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/servo.py -------------------------------------------------------------------------------- /pca9685/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/setup.py -------------------------------------------------------------------------------- /pca9685/stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/stepper.py -------------------------------------------------------------------------------- /pca9685/接线.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/pca9685/接线.png -------------------------------------------------------------------------------- /rotary/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rotary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rotary/readme.md -------------------------------------------------------------------------------- /rotary/rotary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rotary/rotary.py -------------------------------------------------------------------------------- /rotary/rotary_irq_esp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rotary/rotary_irq_esp.py -------------------------------------------------------------------------------- /rotary/rotary_irq_pyb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rotary/rotary_irq_pyb.py -------------------------------------------------------------------------------- /rotary/rotary_irq_rp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rotary/rotary_irq_rp2.py -------------------------------------------------------------------------------- /rp2-pico-20210206-unstable-v1.14-9-g9dedcf122.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rp2-pico-20210206-unstable-v1.14-9-g9dedcf122.uf2 -------------------------------------------------------------------------------- /rp2-pico-20220117-v1.18.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/rp2-pico-20220117-v1.18.uf2 -------------------------------------------------------------------------------- /ssd1306/badapple25s/bad.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/badapple25s/bad.data -------------------------------------------------------------------------------- /ssd1306/badapple25s/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/badapple25s/main.py -------------------------------------------------------------------------------- /ssd1306/badapple25s/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/badapple25s/ssd1306.py -------------------------------------------------------------------------------- /ssd1306/badapplecz/bad.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/badapplecz/bad.data -------------------------------------------------------------------------------- /ssd1306/badapplecz/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/badapplecz/main.py -------------------------------------------------------------------------------- /ssd1306/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/main.py -------------------------------------------------------------------------------- /ssd1306/pbm/WeAct Studio Download Tool 烧录教程.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/WeAct Studio Download Tool 烧录教程.mp4 -------------------------------------------------------------------------------- /ssd1306/pbm/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/a.jpg -------------------------------------------------------------------------------- /ssd1306/pbm/a.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/a.pbm -------------------------------------------------------------------------------- /ssd1306/pbm/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/b.jpg -------------------------------------------------------------------------------- /ssd1306/pbm/b.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/b.pbm -------------------------------------------------------------------------------- /ssd1306/pbm/lifegame-main (1).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/lifegame-main (1).zip -------------------------------------------------------------------------------- /ssd1306/pbm/lifegame-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/lifegame-main.zip -------------------------------------------------------------------------------- /ssd1306/pbm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/main.py -------------------------------------------------------------------------------- /ssd1306/pbm/pbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/pbm/pbm.py -------------------------------------------------------------------------------- /ssd1306/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ssd1306/ssd1306.py -------------------------------------------------------------------------------- /tm1637/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/tm1637/main.py -------------------------------------------------------------------------------- /tm1637/tm1637.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/tm1637/tm1637.py -------------------------------------------------------------------------------- /wifi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/wifi/LICENSE -------------------------------------------------------------------------------- /wifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/wifi/README.md -------------------------------------------------------------------------------- /wifi/wifiat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/wifi/wifiat.py -------------------------------------------------------------------------------- /ws2812/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/main.py -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak 3 | -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/LICENSE -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/README.md -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/examples/fireflies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/examples/fireflies.py -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/examples/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/examples/flash.py -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/examples/rainbow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/examples/rainbow.py -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/examples/thermometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/examples/thermometer.py -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/pico_ws2812b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/pico_ws2812b.jpg -------------------------------------------------------------------------------- /ws2812/pico_python_ws2812b-main/ws2812b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maysrp/pico_micropython/HEAD/ws2812/pico_python_ws2812b-main/ws2812b.py --------------------------------------------------------------------------------