mirror of
https://github.com/tinyvision-ai-inc/pico-ice.git
synced 2025-12-31 03:57:26 +00:00
4 lines
177 B
Python
Executable File
4 lines
177 B
Python
Executable File
from machine import Pin
|
|
import ice
|
|
fpga = ice.fpga(cdone=Pin(40), clock=Pin(21), creset=Pin(31), cram_cs=Pin(5), cram_mosi=Pin(4), cram_sck=Pin(6), frequency=48)
|
|
fpga.start() |