Faster Display With Scroll
Prompt
Prompt
The display is a bit slow. Can you rewrite the plot_signal_with_gain function so that the scroll() function is used to move the display to the left by one pixel?
ChatGPT GPT-4 Response
To make the display update faster and to create a scrolling effect that moves the waveform to the left by one pixel, you can modify the plot_signal_with_gain
function to use the scroll()
method of the SSD1306 library. This will shift the entire display content to the left by one pixel, and then you can plot the new data point at the right edge of the display. Here's how you can implement this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
In this updated function, the display is scrolled left by one pixel at the beginning of each update cycle using display.scroll(-1, 0)
. This creates room to draw the new data point at the far right edge (WIDTH - 1
) of the display. The loop that clears the last column before drawing the new point is optional and can be adjusted or removed depending on the visual effect you're aiming for.
Remember, while scroll()
improves the visual fluidity by creating a continuous scrolling effect, the update rate can still be limited by the display's physical refresh rate and the speed at which your MicroPython script can run. Experiment with the utime.sleep(0.1)
delay at the end of the main loop to find a balance between smoothness and speed that works for your specific application.
Problems
On the SSD1306 driver, there was no speedup since the display.show() sent the entire frame buffer. This step was much slower then pixel updates in the frame buffer.