digitalsputnik / ApolloFirmware

Micropython software for the Apollo lamps
BSD 3-Clause "New" or "Revised" License
3 stars 0 forks source link

SD card and APA do not work :( #14

Closed KKallas closed 2 years ago

KKallas commented 2 years ago

needs to fixed ASAP

KKallas commented 2 years ago

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")