├── README.md ├── example ├── ST7789 │ ├── LCDTest.py │ ├── fonts │ │ ├── vga1_16x32.py │ │ └── vga2_8x8.py │ ├── logo.bin │ └── st7789.py ├── buzzer │ ├── buzzer_PWM.py │ ├── buzzer_music.py │ └── music.py ├── buzzer_PWM.py ├── joystick.py ├── led.py ├── led │ ├── led.py │ └── led_PWM.py ├── led_PWM.py ├── mic.py ├── music │ ├── buzzer_music.py │ └── music.py ├── oled_ssd1306 │ ├── astronaut.py │ ├── board.py │ ├── oled-anime.py │ ├── oled-image.py │ ├── oled.py │ └── ssd1306.py ├── servo.py ├── ws2812.py └── ws2812 │ ├── rgb_example3.py │ └── ws2812.py ├── lecture ├── ball.py ├── bingdwendwen-rgb565 │ ├── bingdwendwen-1.png.bin │ ├── bingdwendwen-2.png.bin │ ├── bingdwendwen-3.png.bin │ └── bingdwendwen.png.bin ├── board.py ├── button.py ├── buzzer_music.py ├── external-merge-sort.py ├── hid.py ├── ir-test-2.py ├── ir-test.py ├── mma7660.py ├── mpy-sge+nes-v20220301.uf2 ├── mpy-sge-pmrn-hid-v20220118.uf2 ├── mpy-sge-pmrn-v20220118.uf2 ├── nes.py ├── rp2040-ani.py ├── rp2040-jpgs │ ├── rp2040-0.jpg │ ├── rp2040-1.jpg │ ├── rp2040-10.jpg │ ├── rp2040-11.jpg │ ├── rp2040-2.jpg │ ├── rp2040-3.jpg │ ├── rp2040-4.jpg │ ├── rp2040-5.jpg │ ├── rp2040-6.jpg │ ├── rp2040-7.jpg │ ├── rp2040-8.jpg │ ├── rp2040-9.jpg │ └── rp2040.mp4 ├── vga2_8x8.py └── yasnake.py └── 使用说明书例程 ├── button.py ├── joystick.py ├── led.py ├── mic.py ├── 显示屏模块 ├── fonts │ ├── vga1_16x32.py │ └── vga2_8x8.py ├── logo.bin ├── main.py └── st7789.py ├── 红外收发模块 ├── ir_rx │ ├── __init__.py │ ├── acquire.py │ ├── main.py │ ├── mce.py │ ├── nec.py │ ├── philips.py │ ├── print_error.py │ └── sony.py └── ir_tx_example │ ├── __init__.py │ ├── mce.py │ ├── mcetest.py │ ├── nec.py │ ├── philips.py │ ├── rp2_rmt.py │ ├── sony.py │ └── test.py └── 运动传感器模块 ├── main.py └── mma7660.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/README.md -------------------------------------------------------------------------------- /example/ST7789/LCDTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ST7789/LCDTest.py -------------------------------------------------------------------------------- /example/ST7789/fonts/vga1_16x32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ST7789/fonts/vga1_16x32.py -------------------------------------------------------------------------------- /example/ST7789/fonts/vga2_8x8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ST7789/fonts/vga2_8x8.py -------------------------------------------------------------------------------- /example/ST7789/logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ST7789/logo.bin -------------------------------------------------------------------------------- /example/ST7789/st7789.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ST7789/st7789.py -------------------------------------------------------------------------------- /example/buzzer/buzzer_PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/buzzer/buzzer_PWM.py -------------------------------------------------------------------------------- /example/buzzer/buzzer_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/buzzer/buzzer_music.py -------------------------------------------------------------------------------- /example/buzzer/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/buzzer/music.py -------------------------------------------------------------------------------- /example/buzzer_PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/buzzer_PWM.py -------------------------------------------------------------------------------- /example/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/joystick.py -------------------------------------------------------------------------------- /example/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/led.py -------------------------------------------------------------------------------- /example/led/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/led/led.py -------------------------------------------------------------------------------- /example/led/led_PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/led/led_PWM.py -------------------------------------------------------------------------------- /example/led_PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/led_PWM.py -------------------------------------------------------------------------------- /example/mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/mic.py -------------------------------------------------------------------------------- /example/music/buzzer_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/music/buzzer_music.py -------------------------------------------------------------------------------- /example/music/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/music/music.py -------------------------------------------------------------------------------- /example/oled_ssd1306/astronaut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/astronaut.py -------------------------------------------------------------------------------- /example/oled_ssd1306/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/board.py -------------------------------------------------------------------------------- /example/oled_ssd1306/oled-anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/oled-anime.py -------------------------------------------------------------------------------- /example/oled_ssd1306/oled-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/oled-image.py -------------------------------------------------------------------------------- /example/oled_ssd1306/oled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/oled.py -------------------------------------------------------------------------------- /example/oled_ssd1306/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/oled_ssd1306/ssd1306.py -------------------------------------------------------------------------------- /example/servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/servo.py -------------------------------------------------------------------------------- /example/ws2812.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ws2812.py -------------------------------------------------------------------------------- /example/ws2812/rgb_example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ws2812/rgb_example3.py -------------------------------------------------------------------------------- /example/ws2812/ws2812.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/example/ws2812/ws2812.py -------------------------------------------------------------------------------- /lecture/ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/ball.py -------------------------------------------------------------------------------- /lecture/bingdwendwen-rgb565/bingdwendwen-1.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/bingdwendwen-rgb565/bingdwendwen-1.png.bin -------------------------------------------------------------------------------- /lecture/bingdwendwen-rgb565/bingdwendwen-2.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/bingdwendwen-rgb565/bingdwendwen-2.png.bin -------------------------------------------------------------------------------- /lecture/bingdwendwen-rgb565/bingdwendwen-3.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/bingdwendwen-rgb565/bingdwendwen-3.png.bin -------------------------------------------------------------------------------- /lecture/bingdwendwen-rgb565/bingdwendwen.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/bingdwendwen-rgb565/bingdwendwen.png.bin -------------------------------------------------------------------------------- /lecture/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/board.py -------------------------------------------------------------------------------- /lecture/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/button.py -------------------------------------------------------------------------------- /lecture/buzzer_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/buzzer_music.py -------------------------------------------------------------------------------- /lecture/external-merge-sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/external-merge-sort.py -------------------------------------------------------------------------------- /lecture/hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/hid.py -------------------------------------------------------------------------------- /lecture/ir-test-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/ir-test-2.py -------------------------------------------------------------------------------- /lecture/ir-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/ir-test.py -------------------------------------------------------------------------------- /lecture/mma7660.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/mma7660.py -------------------------------------------------------------------------------- /lecture/mpy-sge+nes-v20220301.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/mpy-sge+nes-v20220301.uf2 -------------------------------------------------------------------------------- /lecture/mpy-sge-pmrn-hid-v20220118.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/mpy-sge-pmrn-hid-v20220118.uf2 -------------------------------------------------------------------------------- /lecture/mpy-sge-pmrn-v20220118.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/mpy-sge-pmrn-v20220118.uf2 -------------------------------------------------------------------------------- /lecture/nes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/nes.py -------------------------------------------------------------------------------- /lecture/rp2040-ani.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-ani.py -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-0.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-1.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-10.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-11.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-2.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-3.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-4.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-5.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-6.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-7.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-8.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040-9.jpg -------------------------------------------------------------------------------- /lecture/rp2040-jpgs/rp2040.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/rp2040-jpgs/rp2040.mp4 -------------------------------------------------------------------------------- /lecture/vga2_8x8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/vga2_8x8.py -------------------------------------------------------------------------------- /lecture/yasnake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/lecture/yasnake.py -------------------------------------------------------------------------------- /使用说明书例程/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/button.py -------------------------------------------------------------------------------- /使用说明书例程/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/joystick.py -------------------------------------------------------------------------------- /使用说明书例程/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/led.py -------------------------------------------------------------------------------- /使用说明书例程/mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/mic.py -------------------------------------------------------------------------------- /使用说明书例程/显示屏模块/fonts/vga1_16x32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/显示屏模块/fonts/vga1_16x32.py -------------------------------------------------------------------------------- /使用说明书例程/显示屏模块/fonts/vga2_8x8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/显示屏模块/fonts/vga2_8x8.py -------------------------------------------------------------------------------- /使用说明书例程/显示屏模块/logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/显示屏模块/logo.bin -------------------------------------------------------------------------------- /使用说明书例程/显示屏模块/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/显示屏模块/main.py -------------------------------------------------------------------------------- /使用说明书例程/显示屏模块/st7789.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/显示屏模块/st7789.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/__init__.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/acquire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/acquire.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/main.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/mce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/mce.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/nec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/nec.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/philips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/philips.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/print_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/print_error.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_rx/sony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_rx/sony.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/__init__.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/mce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/mce.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/mcetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/mcetest.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/nec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/nec.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/philips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/philips.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/rp2_rmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/rp2_rmt.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/sony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/sony.py -------------------------------------------------------------------------------- /使用说明书例程/红外收发模块/ir_tx_example/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/红外收发模块/ir_tx_example/test.py -------------------------------------------------------------------------------- /使用说明书例程/运动传感器模块/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/运动传感器模块/main.py -------------------------------------------------------------------------------- /使用说明书例程/运动传感器模块/mma7660.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EETree-git/RP2040_Game_Kit/HEAD/使用说明书例程/运动传感器模块/mma7660.py --------------------------------------------------------------------------------