File tree Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ You can also export images directly from The GIMP by saving as `.bmp` and choosi
28
28
Load a BMP image of the Rust logo and display it in the center of the display. From
29
29
[ ` examples/bmp.rs ` ] ( examples/bmp.rs ) :
30
30
31
- ``` rust,ignore
31
+ ``` rust
32
32
#![no_std]
33
33
#![no_main]
34
34
@@ -111,7 +111,7 @@ The full changelog can be found [here](CHANGELOG.md). A tl;dr version is shown b
111
111
112
112
Version 0.1.x
113
113
114
- ``` rust,ignore
114
+ ``` rust
115
115
use ssd1331 :: {prelude :: * , Builder };
116
116
117
117
let mut disp : GraphicsMode <_ > = Builder :: new (). connect_spi (spi , dc ). into ();
@@ -126,7 +126,7 @@ disp.get_rotation();
126
126
127
127
Version 0.2.x
128
128
129
- ``` rust,ignore
129
+ ``` rust
130
130
use ssd1331 :: {Ssd1331 , DisplayRotation };
131
131
132
132
let mut disp = Ssd1331 :: new (spi , dc , DisplayRotation :: Rotate0 );
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ extern crate embedded_hal as hal;
96
96
const DISPLAY_WIDTH : u8 = 96 ;
97
97
const DISPLAY_HEIGHT : u8 = 64 ;
98
98
99
- mod check_readme;
100
99
mod command;
101
100
mod display;
102
101
mod displayrotation;
You can’t perform that action at this time.
0 commit comments