Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!
void draw() {
background(255);
int s = second(); // Values from 0 - 61 (60 or 61 are leap-seconds)
int m = minute(); // Values from 0 - 59
int h = hour(); // Values from 0 - 23
line(s, 0, s, 33);
line(m, 33, m, 66);
line(h, 66, h, 100);
}
The minute() function returns the current minute as a value from 0 - 59.
minute()
int
millis()
second()
hour()
day()
month()
year()