Sorry if cross-posting is a faux pas here, but I need help with this as soon as possible and I thought maybe I asked in the wrong forum the first time.
I have a Raspberry Pi 2 with a no-touch HDMI backpack. I want to program some fairly simple graphics based on SPI input values. I have found sample code in Python for reading my analog values via MCP3008 and SPI. I'm trying to draw some bell curves on a graph according to those analog values (two values determine coordinates of a point, third value determines width of the curve beneath that point) in more or less real time (I'll be polling the MCP3008 inputs, but would like to instantly redraw when changes are detected). I do not need, or want, a GUI.
Can anyone give me a little direction how to code some basic drawing? In a way that can work with those analog input values?