Skip to content

Commit 1c25662

Browse files
committed
DRIVERS.md: Update link to official SSD1306 driver.
1 parent a1d752a commit 1c25662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

writer/DRIVERS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ format of the Python font file which is provided in this doc.
3838

3939
Where the buffer is held on the MicroPython host the driver should be
4040
subclassed from the official `framebuf.FrameBuffer` class. An example of such a
41-
driver is the [official SSD1306 driver](https://github.com/micropython/micropython/blob/master/drivers/display/ssd1306.py).
41+
driver is the [official SSD1306 driver](https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/display/ssd1306/ssd1306.py).
4242
In addition the driver class should have bound variables `width` and `height`
4343
containing the size of the display in pixels, plus a `show` method which copies
4444
the buffer to the physical device.
@@ -65,7 +65,7 @@ for a full list. These drivers are subclassed from `framebuf.FrameBuffer` and
6565
have been tested with `writer`, `nanogui` and `microgui`. The following are a
6666
few samples:
6767

68-
* The [SSD1306 OLED driver](https://github.com/micropython/micropython/blob/master/drivers/display/ssd1306.py)
68+
* The [SSD1306 OLED driver](https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/display/ssd1306/ssd1306.py)
6969
* The [Nokia 5110](https://github.com/mcauser/micropython-pcd8544/blob/master/pcd8544_fb.py)
7070
* The [SSD1331 colour OLED](https://github.com/peterhinch/micropython-nano-gui/blob/master/drivers/ssd1331/ssd1331.py)
7171
* The [HX1230 96x68 LCD](https://github.com/mcauser/micropython-hx1230/blob/master/hx1230_fb.py)

0 commit comments

Comments
 (0)