Here’s a simple plotting function, written in uLisp, that will allow you to plot data to an Adafruit 128x64 monochrome OLED display, or any other compatible I2C display (based on an SSD1306 driver chip). It’s compact enough to run in uLisp on an Arduino Uno, with space to spare for the program to plot the data:
A restriction with this function is that it can only plot one value or pixel in each column. For many applications, such as plotting the value from a sensor against time, this is exactly what you want, so this minimal routine is ideal.
The circuit
Here’s the circuit:
The capacitor and resistor ensure the display is reset cleanly when power is applied.
The program
Here’s the program:
(defun wbs (s &rest b)
(dolist (i b) (write-byte i s)))
(defun int ()
(with-i2c (s 61)
(wbs s 0 #x8D #x14 #x20 #x01 #xA1 #xAF)))
(defun plt (x y)
(with-i2c (s 61)
(wbs s 0 #x21 x x #x22 0 7)
(restart-i2c s)
(write-byte #x40 s)
(dotimes (p 8)
(if (<= 0 y 7)
(write-byte (ash 1 y) s)
(write-byte 0 s))
(setq y (- y 8)))))
The routine wbs writes multiple bytes to the display via I2C. The function (int) should be called first to initialise the display. The plot routine, (plt x y) then plots a point on the display at (x, y) where (0, 0) is the lower left corner of the display, x can be from 0 to 127, and y can be from 0 to 63.
Demo program
Here’s the simple demo program I used to generate the display in the photograph:
(defun tst ()
(int)
(let ((y 32))
(dotimes (x 128)
(plt x y)
(incf y (- (* 2 (random 2)) 1)))))
For more information and a C version of the program see my article on Technoblogy: Tiny Function Plotter