You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Early versions of led-bargraph had a --steps N option to configure the resolution (# of bars) available in the bargraph display.
This was removed when the library & application was refactored to support #12 and hardcoded to be 24 (the resolution of the Adafruit bargraph).
Exit Criteria: A --resolution N option to configure the the # of bars available in the display, with error handling/validation to ensure the value is reasonable (e.g. positive) and the right thing happens when the range > resolution.
The text was updated successfully, but these errors were encountered:
This closes#12.
* Minor version bump `0.1.0` -> `0.2.0` due to API changes.
* Rewrite implementation to follow the `embedded-hal` interface.
* Rewrite the API to be more consistent and move bargraph specific
features from `ht16k33`.
* Add `--debug` and `--trace` log levels.
* Add `--as-is` to skip chip initialization if desired.
* Add initial (trivial) `--show/show` support. (Issue #6)
* Use Enums for feature values.
* Hardcode the resolution, will need to make configurable later
(Issue #13).
* Make `clippy` happy.
* Added `embedded-hal` keyword for `crates.io`, since we're now
compliant :)
This closes#12.
* Minor version bump `0.1.0` -> `0.2.0` due to API changes.
* Rewrite implementation to follow the `embedded-hal` interface.
* Rewrite the API to be more consistent and move bargraph specific
features from `ht16k33`.
* Add `--debug` and `--trace` log levels.
* Add `--as-is` to skip chip initialization if desired.
* Add initial (trivial) `--show/show` support. (Issue #6)
* Use Enums for feature values.
* Hardcode the resolution, will need to make configurable later
(Issue #13).
* Make `clippy` happy.
* Added `embedded-hal` keyword for `crates.io`, since we're now
compliant :)
* Drop CI support for Rust `1.24.0`, there's been no request to support
it and it's quite old.
This closes#12.
* Minor version bump `0.1.0` -> `0.2.0` due to API changes.
* Rewrite implementation to follow the `embedded-hal` interface.
* Rewrite the API to be more consistent and move bargraph specific
features from `ht16k33`.
* Add `--debug` and `--trace` log levels.
* Add `--as-is` to skip chip initialization if desired.
* Add initial (trivial) `--show/show` support. (Issue #6)
* Use Enums for feature values.
* Hardcode the resolution, will need to make configurable later
(Issue #13).
* Make `clippy` happy.
* Added `embedded-hal` keyword for `crates.io`, since we're now
compliant :)
* Drop CI support for Rust `1.24.0`, there's been no request to support
it and it's quite old.
Early versions of
led-bargraph
had a--steps N
option to configure the resolution (# of bars) available in the bargraph display.This was removed when the library & application was refactored to support #12 and hardcoded to be
24
(the resolution of the Adafruit bargraph).Exit Criteria: A
--resolution N
option to configure the the # of bars available in the display, with error handling/validation to ensure the value is reasonable (e.g. positive) and the right thing happens when the range > resolution.The text was updated successfully, but these errors were encountered: