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 66
77## [ Unreleased] - ReleaseDate
88
9+ ### Fixed
10+
11+ - [ #177 ] ( https://github.com/jamwaffles/ssd1306/pull/177 ) Fixed a few spelling mistakes.
12+
913### Changed
1014
1115- ** (breaking)** [ #175 ] ( https://github.com/jamwaffles/ssd1306/pull/175 ) Increased MSRV to 1.57.0
1519### Added
1620
1721- [ #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.
1923
2024## [ 0.7.0] - 2021-07-08
2125
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ pub enum Command {
6363 StartLine ( u8 ) ,
6464 /// Reverse columns from 127-0
6565 SegmentRemap ( bool ) ,
66- /// Set multipex ratio from 15-63 (MUX-1)
66+ /// Set multiplex ratio from 15-63 (MUX-1)
6767 Multiplex ( u8 ) ,
6868 /// Scan from COM[n-1] to COM0 (where N is mux ratio)
6969 ReverseComDir ( bool ) ,
Original file line number Diff line number Diff line change 55pub enum DisplayRotation {
66 /// No rotation, normal display
77 Rotate0 ,
8- /// Rotate by 90 degress clockwise
8+ /// Rotate by 90 degrees clockwise
99 Rotate90 ,
10- /// Rotate by 180 degress clockwise
10+ /// Rotate by 180 degrees clockwise
1111 Rotate180 ,
12- /// Rotate 270 degress clockwise
12+ /// Rotate 270 degrees clockwise
1313 Rotate270 ,
1414}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ pub trait DisplaySize {
3838 /// Vertical offset in pixels
3939 const OFFSETY : u8 = 0 ;
4040
41- /// Size of framebuffer. Because the display is monocrome , this is
41+ /// Size of framebuffer. Because the display is monochrome , this is
4242 /// width * height / 8
4343 type Buffer : AsMut < [ u8 ] > + NewZeroed ;
4444
You can’t perform that action at this time.
0 commit comments