Skip to content

Commit

Permalink
Merge pull request #1 from zyla/display-ssd1306
Browse files Browse the repository at this point in the history
SSD1306 display support
  • Loading branch information
zyla authored Oct 25, 2023
2 parents a0b8102 + 35fb414 commit a4d31de
Show file tree
Hide file tree
Showing 3 changed files with 242 additions and 98 deletions.
48 changes: 48 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,17 @@ embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "889d482",
reqwless = { version = "0.8.0", features = ["alloc", "log"] }

embedded-graphics = "0.8.1"
st7735-lcd = "0.9.0"

static_cell = { version = "1.2.0", features = ["nightly"] }
embedded-text = "0.6.6"

# display drivers
st7735-lcd = {version = "0.9.0", optional = true }
ssd1306 = { version = "0.8.3", optional = true }
display-interface = { version = "0.4.1", optional = true }

[features]
default = ["display-st7735"]
#default = ["display-ssd1306"]
display-st7735 = ["st7735-lcd"]
display-ssd1306 = ["ssd1306", "display-interface"]
Loading

0 comments on commit a4d31de

Please sign in to comment.