Okay, the first version of my analogical clock is now available on the file sharing area !

I hope that you will like it and that it will be useful for you.
require("draw")
require("string")
showgraph()
keypad(0)
fullscreen(1)
draw.onbuffer()
pi = math.pi
repeat
h,m,s=gettime()
b,c,d=getdate()
if h>11 then h1=h-12 else h1=h end
h1=h1+m/60
str1=string.format("%02d:%02d:%02d",h,m,s)
str2=string.format("%02d",d)
str3=string.format("%02d/%02d/%02d",d,c,B)
x1,y1=80+50*math.cos((s-15)*pi/30),100+50*math.sin((s-15)*pi/30)
x2,y2=80+50*math.cos((m-15)*pi/30),100+50*math.sin((m-15)*pi/30)
x3,y3=80+50*math.cos((h1-3)*pi/6),100+50*math.sin((h1-3)*pi/6)
draw.circle(80,100,52)
draw.circle(80,100,54)
draw.circle(80,100,3,3)
draw.line(80,48,80,52)
draw.line(80,148,80,152)
draw.line(128,100,132,100)
draw.line(29,100,32,100)
draw.line(124,125.5,121,123.5)
draw.line(105.5,144,103.5,141)
draw.line(54.5,144,56.5,141)
draw.line(36,125.5,39,123.5)
draw.line(36,74.5,39,76.5)
draw.line(54.5,56,56.5,59)
draw.line(105.5,56,103.5,59)
draw.line(124,74.5,121,76.5)
draw.line(80,100,x1,y1)
draw.line(80,100,5*(x2-80)/6+80,5*(y2-100)/6+100)
draw.line(80,100,3*x3/5+32,3*y3/5+40,1,2)
draw.pixel(80,100,0)
draw.text(20,5,"Analogical Clock V1.0",2,10,1)
draw.text(5,23,"Settime:UP About:DOWN Exit:<=")
draw.text(63,156,str1,2,9)
draw.text(119,98,str2,1,6)
draw.text(63,165,str3,1,6)
draw.rect(21,42,139,173,2)
draw.update()
draw.clear()
if testkey(K_DOWN) then showconsole() print(" Analogical Clock for Classpad by Pierre Brian v1.0")
print(" ")
print(" Press -> to exit")
waitkey(K_RIGHT) showgraph() clear() end
if testkey(K_UP) then showconsole() clear() print("Hour ?")
H=tonumber(input("Hour :"))
print(" ")
print("Minute ?")
M=tonumber(input("Minute :"))
print(" ")
settime(H,M)
showgraph() print(" Press -> to exit")
clear()
end
until testkey(K_BACK)