https://github.com/rust-embedded-community/ssd1306/blob/27d63b412c850b2ac3f3c758a04347aa35d0b3c7/src/mode/terminal.rs#L627 This line of code uses `.next_back()`, which only prints the final character of the string. Earlier revisions apparently used `.last()` which would evaluate the whole iterator. (I can confirm that changing it back to `.last()` works.)