ADAFRUIT.md: Fix broken links and typo.

pull/99/head
Peter Hinch 2025-03-31 10:39:17 +01:00
rodzic 701149bc3a
commit 330bb07d89
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -58,14 +58,14 @@ i2c = machine.I2C(scl=pscl, sda=psda)
# Adafruit - use of the onboard SD card # Adafruit - use of the onboard SD card
If the SD card is to be used, the official `scdard.py` driver should be If the SD card is to be used, the official `sdcard.py` driver should be
employed. This may be found employed. This may be found
[here](https://github.com/micropython/micropython/tree/master/drivers/sdcard). [here](https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/storage/sdcard/sdcard.py).
It is necessary to initialise the SPI bus before accessing the SD card. This is It is necessary to initialise the SPI bus before accessing the SD card. This is
because the display drivers use a high baudrate unsupported by SD cards. Ensure because the display drivers use a high baudrate unsupported by SD cards. Ensure
applications do this before the first SD card access and before subsequent ones applications do this before the first SD card access and before subsequent ones
if the display has been refreshed. See if the display has been refreshed. See
[sdtest.py](https://github.com/micropython/micropython/blob/master/drivers/sdcard/sdtest.py). [sdtest.py](https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/storage/sdcard/sdtest.py).
# Notes on OLED displays # Notes on OLED displays