digitalsputnik / ApolloFirmware

Micropython software for the Apollo lamps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SD card and APA do not work :(

KKallas opened this issue · comments

needs to fixed ASAP

Apollo Controller board:

card = machine.SDCard(width=1, slot=3, sck=machine.Pin(14), cs=machine.Pin(13), miso=machine.Pin(12), mosi=machine.Pin(15))

Wroom Kit v4.1

card = machine.SDCard(slot=3, width=1, sck=machine.Pin(14), cs=machine.Pin(13), miso=machine.Pin(2), mosi=machine.Pin(15))
#card = machine.SDCard(slot=3) #eidf documation claims miso pin 12 instad of 2 as in the source 
os.mount(card,"/sd")