Update embedded-graphics and ssd1306, address breaking changes

This commit is contained in:
Jesse Braham 2023-06-28 09:08:34 -07:00 committed by Jesse Braham
parent 89ba8f6e30
commit 6869f8c783
14 changed files with 28 additions and 28 deletions

View File

@ -37,7 +37,7 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false}
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.7.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32"], path = "../esp-hal-smartled" }
@ -45,7 +45,7 @@ esp-println = { version = "0.5.0", features = ["esp32", "log"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
heapless = "0.7.16"

View File

@ -107,7 +107,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -125,7 +125,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -35,12 +35,12 @@ esp-hal-common = { version = "0.9.0", features = ["esp32c2"], path = "../esp
[dev-dependencies]
critical-section = "1.1.1"
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-backtrace = { version = "0.7.0", features = ["esp32c2", "panic-handler", "exception-handler", "print-uart"] }
esp-println = { version = "0.5.0", features = ["esp32c2"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
heapless = "0.7.16"

View File

@ -108,7 +108,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -126,7 +126,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -39,14 +39,14 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false}
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-backtrace = { version = "0.7.0", features = ["esp32c3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32c3"], path = "../esp-hal-smartled" }
esp-println = { version = "0.5.0", features = ["esp32c3"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
heapless = "0.7.16"

View File

@ -115,7 +115,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -133,7 +133,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -40,14 +40,14 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false}
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-backtrace = { version = "0.7.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32c6"], path = "../esp-hal-smartled" }
esp-println = { version = "0.5.0", features = ["esp32c6"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
heapless = "0.7.16"

View File

@ -115,7 +115,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -133,7 +133,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -40,14 +40,14 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false }
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-riscv32", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-backtrace = { version = "0.7.0", features = ["esp32h2", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32h2"], path = "../esp-hal-smartled" }
esp-println = { version = "0.5.0", features = ["esp32h2"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
heapless = "0.7.16"

View File

@ -115,7 +115,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -133,7 +133,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -38,7 +38,7 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false}
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.7.0", features = ["esp32s2", "panic-handler", "print-uart", "exception-handler"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32s2"], path = "../esp-hal-smartled" }
@ -46,7 +46,7 @@ esp-println = { version = "0.5.0", features = ["esp32s2"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
usb-device = { version = "0.2.9" }
usbd-serial = "0.1.1"

View File

@ -108,7 +108,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -126,7 +126,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();

View File

@ -40,7 +40,7 @@ aes = "0.8.2"
critical-section = "1.1.1"
crypto-bigint = { version = "0.5.2", default-features = false}
embassy-executor = { version = "0.2.0", features = ["nightly", "integrated-timers", "arch-xtensa", "executor-thread"] }
embedded-graphics = "0.7.1"
embedded-graphics = "0.8.0"
esp-alloc = "0.3.0"
esp-backtrace = { version = "0.7.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] }
esp-hal-smartled = { version = "0.2.0", features = ["esp32s3"], path = "../esp-hal-smartled" }
@ -48,7 +48,7 @@ esp-println = { version = "0.5.0", features = ["esp32s3", "log"] }
lis3dh-async = "0.7.0"
sha2 = { version = "0.10.6", default-features = false}
smart-leds = "0.3.0"
ssd1306 = "0.7.1"
ssd1306 = "0.8.0"
static_cell = "1.0.0"
usb-device = "0.2.9"
usbd-serial = "0.1.1"

View File

@ -107,7 +107,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();
@ -125,7 +125,7 @@ fn main() -> ! {
// Write buffer to display
display.flush().unwrap();
// Clear display buffer
display.clear();
display.clear(BinaryColor::Off).unwrap();
// Wait 5 seconds
block!(timer0.wait()).unwrap();