You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,25 @@
1
1
# MicroPython Driver for the Waveshare Pico OLED 1.3
2
2
3
-
This is (hopefully) a better MicroPython driver for the [Waveshare Pico-Oled-1.3](https://www.waveshare.com/product/pico-oled-1.3.htm).
3
+
This is (hopefully) an improved MicroPython driver for the [Waveshare Pico-Oled-1.3](https://www.waveshare.com/product/pico-oled-1.3.htm) derived from the one provided by Waveshare.
4
4
5
5
<imgsrc="example.gif" />
6
6
7
7
## Features
8
8
9
9
- Derived from the MicroPython Driver for the pico OLED 1.3 by Waveshare.
10
-
-initialization and access to the state of `key0` and `key1` via the display object.
10
+
-Initialization and access to the state of `key0` and `key1` via the display object.
11
11
- Better character display capabilities:
12
-
- Better variable width font than the build-in font provided by `framebuf`.
12
+
- Better fixed and variable width fonts than the build-in font provided by `framebuf`.
13
13
- Better `text` function:
14
-
-automatic wrapping of text
14
+
-Automatic wrapping of text.
15
15
- Returns endpoint coordinates of last written character.
16
16
17
17
## Usage
18
18
19
19
- Connect the display to the Raspberry Pi Pico W.
20
20
- Flash the Pico W with the latest [MicroPython](https://micropython.org/download/rp2-pico-w/).
21
21
- Copy the codebase to the Raspberry Pi Pico or (Pico W).
22
-
i- Use as below:
22
+
- Use as below:
23
23
```
24
24
>>> import PicoOled13
25
25
>>> display=PicoOled13.get()
@@ -33,7 +33,7 @@ i- Use as below:
33
33
34
34
## Acknowledgements
35
35
36
-
- The [pico-2fa-totp](https://github.com/eddmann/pico-2fa-totp) created by [Edd Mann](https://github.com/eddmann) which created the use-case for writing this driver
36
+
- The [pico-2fa-totp](https://github.com/eddmann/pico-2fa-totp) created by [Edd Mann](https://github.com/eddmann), and my derivative [fork ](https://github.com/samveen/pico-mpy-2fa-totp) which created the use-case for writing this driver
37
37
38
38
- Pico-oled-1.3 driver by [Waveshare](https://www.waveshare.com/wiki/Pico-OLED-1.3#Examples)
0 commit comments