Search found 5 matches

by kbradley89
Thu Feb 04, 2021 9:49 am
Forum: Raspberry Pi microcontroller boards
Topic: Pico Mounting SD Card
Replies: 41
Views: 195795

Re: Pico Mounting SD Card

The build works like a charm, I can now log data on the built in flash and whenever someone wants to get the data they can press a button and it copies the data to the SD card. I'm doing this as I'm trying to reduce power consumption, and I've read that writing to an SD card has a relatively high po...
by kbradley89
Wed Feb 03, 2021 11:42 am
Forum: Raspberry Pi microcontroller boards
Topic: Pico Mounting SD Card
Replies: 41
Views: 195795

Re: Pico Mounting SD Card

Thanks Roberthh, I'll try out the new firmware at some point this week. I'm impressed with how quickly you were able to implement it; I hope it wasn't too much of an inconvenience for you.
by kbradley89
Tue Feb 02, 2021 11:29 am
Forum: Raspberry Pi microcontroller boards
Topic: Pico Mounting SD Card
Replies: 41
Views: 195795

Re: Pico Mounting SD Card

Thanks for the help. For now I think I can cope with the in built storage, I had hoped for the possibility of larger storage from an SD card and the ability for others to view the files on the SD card without extra software which seems necessary if you want to get the files from the in built storage...
by kbradley89
Tue Feb 02, 2021 9:12 am
Forum: Raspberry Pi microcontroller boards
Topic: Pico Mounting SD Card
Replies: 41
Views: 195795

Re: Pico Mounting SD Card

That is interesting, I'm not sure how to use the pins though as I don't seem to be having any luck with any built in SD class modules and it doesn't look like they translate to valid spi pins (e.g. GP5 is designated SPI0 CSn according to the getting started guides rather than a clk). The two built i...
by kbradley89
Sun Jan 31, 2021 10:13 pm
Forum: Raspberry Pi microcontroller boards
Topic: Pico Mounting SD Card
Replies: 41
Views: 195795

Pico Mounting SD Card

Hey, I'm attempting to mount an SD card to a Pico using a Adalogger Featherwing board. My circuit is: https://i.imgur.com/9i2rmBw.png I am attempting to use https://github.com/micropython/micropython/blob/master/drivers/sdcard/sdcard.py this driver with the code: import sdcard import os import utime...