xxxxxxxxxx
14
var showit = false;
function setup() {
createCanvas(400, 400);
frameRate(0.5); // adjust blinkrate here
fill(200,0,0);
noStroke();
}
function draw() {
background(0);
if ( showit ) circle(200,200,100);
showit = ! showit
}