Skip to content

Releases: cat-in-136/ws2812-esp32-rmt-driver

v0.12.0

03 Mar 15:46
v0.12.0
Compare
Choose a tag to compare

What's Changed

  • introduce new_with_rmt_driver() to be able to use multiple mem blocks for TxRmtDriver to mitigate flickering by @weber-software in #62

New Contributors

Full Changelog: v0.11.0...v0.12.0

v0.10.0

08 Nov 13:39
v0.10.0
f41bdd9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.0...v0.10.0

v0.9.0

06 Jul 15:26
v0.9.0
ae9f8b7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.8.0...v0.9.0

v0.8.0

08 Jun 22:16
v0.8.0
210e651
Compare
Choose a tag to compare

What's Changed

New Contributors

Upgrade guide

The default feature has been changed. The default feature is no longer to load smart-leds API and load only the driver API. unstable feature is no longer used. Some replacement examples are shown below:

v0.7.1 v0.8.0
ws2812-esp32-rmt-driver = "*" ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] }
ws2812-esp32-rmt-driver = { version = "*", features = ["embedded-graphics-core", "unstable"]} ws2812-esp32-rmt-driver = { version = "*", features = ["embedded-graphics-core"]}
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds"]} ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] }
ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds", "unstable"]} ws2812-esp32-rmt-driver = { version = "*", features = ["smart-leds-trait"] }
ws2812-esp32-rmt-driver = { version = "*", default-features = false} ws2812-esp32-rmt-driver = "*"

Full Changelog: v0.7.1...v0.8.0

v0.7.1

03 Feb 02:38
v0.7.1
ecb9db9
Compare
Choose a tag to compare

What's Changed

  • Use standard Result type instead of anyhow since it's not needed by @faern in #36
  • fix build failure due to breaking change in embedded-hal-async by @cat-in-136 in #38
  • add runner to easily flash and monitor by executing cargo run by @cat-in-136 in #39
  • Add easier support for riscv based ESP32 by @faern in #37

Full Changelog: v0.7.0...v0.7.1

v0.7.0

07 Jan 03:08
v0.7.0
18a3290
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.7.0

v0.6.0

10 Jul 15:02
v0.6.0
c41e6bd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.6.0

v0.5.0

24 Dec 07:45
v0.5.0
2ce49d4
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @vojty made their first contribution in #22

Full Changelog: v0.4.1...v0.5.0

v0.4.1

24 Dec 07:35
v0.4.1
f2f293c
Compare
Choose a tag to compare

There is no code-change since 0.4.0. This release is intended for the people who use this crate with ws2812-esp32-rmt-driver = "0.4" in [dependency] of Cargo.toml.

What's Changed

  • Restrict esp-idf version to up-to 0.31 in advance of support for esp-idf 0.32 by @cat-in-136 in #25

Full Changelog: v0.4.0...v0.4.1