mirror of
https://github.com/tinyvision-ai-inc/pico-ice.git
synced 2025-12-30 11:47:27 +00:00
4 lines
178 B
Python
Executable File
4 lines
178 B
Python
Executable File
from machine import Pin
|
|
import ice
|
|
fpga = ice.fpga(cdone=Pin(26), clock=Pin(24), creset=Pin(27), cram_cs=Pin(9), cram_mosi=Pin(8), cram_sck=Pin(10), frequency=48)
|
|
fpga.start() |