Reinier Balt
78ffda673e
migrate minimum set of drivers to make tests pass
5 years ago
Caemor
15e557951f
Further improvements around acronym lowercases,...
5 years ago
Caemor
9d95eeb64b
cargo fmt
5 years ago
Caemor
ba1b90e2f3
Removed #[allow(non_camel_case_types)] to fix issues
5 years ago
Edwin Svensson
c3a4cde815
skip closure/task
5 years ago
Edwin Svensson
04476e6671
fix tests
5 years ago
Edwin Svensson
9a1575b2ec
API change to partially fix #70
5 years ago
Mitch Souders
96d505647d
Add support for ep5in65f
5 years ago
Robin Appelman
5cb7de5929
make reset timing device specific
...
reset timings seem to be device specific, trying to reset the 7in5_v2 with timings from other devices does not reset the display.
Timings taken from https://github.com/waveshare/e-Paper/blob/master/RaspberryPi%26JetsonNano/python/lib/waveshare_epd
5 years ago
Michael Beaumont
9167c643f9
Add epd2in9bc to README, add example
6 years ago
Caemor
409676423d
Mainly improved Documenation
6 years ago
Caemor
ec72357b55
Update/Include new update_and_display trait
6 years ago
Caemor
8da294dd5e
Update embedded-graphics,
...
remove useless Featuregates (Doesn't change size)
Update and integrate a few important examples and remove the others
6 years ago
Caemor
dcaed6fb3e
Update embedded-graphics and update epd4in2-blue-pill-exampleg
6 years ago
Christoph Grabo
a9f27e51ae
Use embedded_hal::digital::v2 (v1 is deprecated)
6 years ago
dbr
3e56353cb6
embedded-graphics 0.5.0 removed the with_ prefix from some methods
...
with_stroke() to stroke()
with_fill() to fill()
with_style() to style()
6 years ago
Chris
7b4a7f0578
v0.3.2 - some timing fixes ( #29 )
...
* Fixed some missing wait_until_idle calls
* prepared release of 0.3.2
* cargo fmt
This is known to fail on travis because it uses the deprecated old digital v1 embedded hal pins
7 years ago
Chris
63321f7e2c
Fix: Timing Issues after display_frame
...
epd1in54 and epd2in9 were both missing a necessary wait_until_idle call at the end of their display_frame function which sometimes caused invalid/ignored commands/inputs afterwards.
7 years ago
Chris
5c0744ff01
Various improvements ( #25 )
...
- Added is_busy to Waveshare_Interface
- Added IS_BUSY_LOW const for all supported epds
- Added is_busy to DisplayInterface
- moved width, height and default_background_color directly to epd4in2 module
- Added VarDisplay (a variable buffersize display/graphic driver)
- Removed all Buffers (Buffer1in54,...) and instead made specialised Displays (Display1in54,...) with included Buffers
- Updated and added more examples
- Cargo fmt/clippy
- Improved Docs/Readmes
7 years ago
Chris
d7f3cdca97
Edition 2018 ( #24 )
...
* "cargo fix --edition" for the library
* Switch to 2018 edition
* Use cargo fix edition-idioms and remove the internal renaming from embedded_hal to hal
* Updated Readme
* run cargo fmt
7 years ago
Chris
b9395b5eff
Prepare release
...
- fix cargo fmt error
- rename forgotten stuff
7 years ago
Chris
ebb33661c3
cleanup of a few tested/resolved todos
7 years ago
Chris
e518265273
Run cargo fmt (reverted for constants and some graphic calculations)
7 years ago
Chris
22e3ee22b2
Include `set_lut` in WaveshareDisplay Trait
7 years ago
Chris
0204e72cb5
Some last doc changes
7 years ago
Chris
3fc25d71e5
Improved Documentation
7 years ago
Chris
697a781ff2
Remove more or less duplicate test cases for 2in9 buffer
7 years ago
Chris
520317f351
Fixed examples and more small improvements
7 years ago
Chris
139096297b
Generalise graphics once more
...
Change u16 positions to u32 to adapt to embedded graphics unsigned coordinates
Furthermore added epd4in2 defaults graphics buffer
7 years ago
Chris
9289d689b7
Fix epd1in54 example, test if old bugs are fixed
7 years ago
Chris
8904066de6
Moved constants of type_a to its own file
7 years ago
Chris
468425881c
readd data_x_times
7 years ago
Chris
89489da657
Renaming of WaveshareInterface and Connectioninterface
...
WaveshareInterface -> WaveshareDisplay
traits::interface::ConnectionInterface -> interface::DisplayInterface
7 years ago
Chris
87832f6043
Made SPI shareable
...
Disown spi for better shareabilty
7 years ago
Chris
6a24acf62b
Removed data_x_times function
7 years ago
Chris
2f4ebfecab
Fix previous Delay Commit
...
Some stuff was forgotten in the previous commit
7 years ago
Chris
fabc5f262e
Make delay a function parameter
...
This change makes delay a function parameter where necessary and stops the need of owning the delay
7 years ago
Chris
1791388a8b
Renamed folder `interface` to `traits`
7 years ago
Chris
0ddaf9679a
Deletion of single u8 data Transfers and renaming of various functions
...
command_with_data -> cmd_with_data
command -> cmd
multiple_data -> data
7 years ago
Chris
829a9e71eb
Fix previous Delay Commit
...
Some stuff was forgotten in the previous commit
7 years ago
Chris
38dc5126ee
Make delay a function parameter
...
This change makes delay a function parameter where necessary and stops the need of owning the delay
7 years ago
Chris
6efa864014
Renamed folder `interface` to `traits`
7 years ago
Chris
7612aad99a
Deletion of single u8 data Transfers and renaming of various functions
...
command_with_data -> cmd_with_data
command -> cmd
multiple_data -> data
7 years ago
Christoph Groß
80090d8df2
Added testcases for default size and color of the various displays
7 years ago
Christoph Groß
fa6bce5ee7
Cleanup of WaveshareInterface
...
-Removed update_and_display_frame
-removed update_and_display_partial_frame
-Renamed get_width and get_height to just width and height
7 years ago
Christoph Groß
e0cf10bf4e
Moved Colors into its own module
7 years ago
Christoph Groß
cd593c51cb
Make the code more readable with a few already introduced adapter functions (e.g. command_with_data)
7 years ago
Christoph Groß
7fa1a27f40
Shortened TypeDefinitions,
...
made init a private function,
added a crate internal extended waveshareinterface,
added a combined Connection_interface::data_and_command function,
added a wake_up function,
added a updated_and_display_partial_frame_function
7 years ago
Christoph Groß
cd98033204
first steps to rustfmt althought it sometimes doesn#t exactly looks good
7 years ago
Christoph Groß
49bad9c547
fixed the wrong reference to the epd2in9 display instead of the 1in54
7 years ago