File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
## [ Unreleased] - ReleaseDate
8
8
9
+ ### Fixed
10
+
11
+ - [ #177 ] ( https://github.com/jamwaffles/ssd1306/pull/177 ) Fixed a few spelling mistakes.
12
+
9
13
### Changed
10
14
11
15
- ** (breaking)** [ #175 ] ( https://github.com/jamwaffles/ssd1306/pull/175 ) Increased MSRV to 1.57.0
15
19
### Added
16
20
17
21
- [ #161 ] ( https://github.com/jamwaffles/ssd1306/pull/161 ) Added a ` set_mirror ` method to enable or disable display mirroring.
18
- - [ #166 ] ( https://github.com/jamwaffles/ssd1306/pull/166 ) Added ` DisplaySize ` configuration for 64x32 displays
22
+ - [ #166 ] ( https://github.com/jamwaffles/ssd1306/pull/166 ) Added ` DisplaySize ` configuration for 64x32 displays.
19
23
20
24
## [ 0.7.0] - 2021-07-08
21
25
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ pub enum Command {
63
63
StartLine ( u8 ) ,
64
64
/// Reverse columns from 127-0
65
65
SegmentRemap ( bool ) ,
66
- /// Set multipex ratio from 15-63 (MUX-1)
66
+ /// Set multiplex ratio from 15-63 (MUX-1)
67
67
Multiplex ( u8 ) ,
68
68
/// Scan from COM[n-1] to COM0 (where N is mux ratio)
69
69
ReverseComDir ( bool ) ,
Original file line number Diff line number Diff line change 5
5
pub enum DisplayRotation {
6
6
/// No rotation, normal display
7
7
Rotate0 ,
8
- /// Rotate by 90 degress clockwise
8
+ /// Rotate by 90 degrees clockwise
9
9
Rotate90 ,
10
- /// Rotate by 180 degress clockwise
10
+ /// Rotate by 180 degrees clockwise
11
11
Rotate180 ,
12
- /// Rotate 270 degress clockwise
12
+ /// Rotate 270 degrees clockwise
13
13
Rotate270 ,
14
14
}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ pub trait DisplaySize {
38
38
/// Vertical offset in pixels
39
39
const OFFSETY : u8 = 0 ;
40
40
41
- /// Size of framebuffer. Because the display is monocrome , this is
41
+ /// Size of framebuffer. Because the display is monochrome , this is
42
42
/// width * height / 8
43
43
type Buffer : AsMut < [ u8 ] > + NewZeroed ;
44
44
You can’t perform that action at this time.
0 commit comments