Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!

void draw() {
background(0);
noStroke();
fill(255);
rect(0, 40, sketchWidth, 20);
rect(0, 60, sketchWidth / 2, 20);
}
System variable that stores the width of the display window. The value of sketchWidth is ordinarily 144.
sketchHeight