diff --git a/apps/sweepclock/README.md b/apps/sweepclock/README.md index 51920f8f1..b808aa43b 100644 --- a/apps/sweepclock/README.md +++ b/apps/sweepclock/README.md @@ -6,7 +6,18 @@ The Sweep Clock provides a clock with a perfectly smooth sweep second hand with ## Usage -Use Button 1 (the top right button) to change the numeral types (currently European and Roman) +Use Button 1 (the top right button) to change the numeral type + +| Button 1 | | | +| ---- | ---- | ---- | +| Western | Roman | No Digits | + +Button 3 (bottom right button) is used to change the colour + +| Button 3 | | | +| ---- | ---- | ---- | +| | | | + ## Further Details @@ -14,8 +25,8 @@ For further details of design and working please visit [The Project Page](https: ## Requests -[Reach out to Adrian](https://www.github.com/awkirk71) if you have feature requests or notice bugs. +Reach out to adrian@adriankirk.com if you have feature requests or notice bugs. ## Creator -Made by [Adrian Kirk](https://www.github.com/awkirk71). +Made by [Adrian Kirk](mailto:adrian@adriankirk.com) diff --git a/apps/sweepclock/sweepclock.js b/apps/sweepclock/sweepclock.js index ed300af0e..9c53efa55 100644 --- a/apps/sweepclock/sweepclock.js +++ b/apps/sweepclock/sweepclock.js @@ -5,7 +5,7 @@ */ const screen_center_x = g.getWidth()/2; -const screen_center_y = g.getHeight()/2; +const screen_center_y = 10 + g.getHeight()/2; require("FontCopasetic40x58Numeric").add(Graphics); @@ -41,6 +41,14 @@ const color_schemes = [ minute_hand: [1.0,1.0,1.0], hour_hand: [1.0,1.0,1.0], numeral:[1.0,1.0,1.0] + }, + { + name: "blue", + background : [0.4,0.7,1.0], + second_hand: [0.5,0.5,0.5], + minute_hand: [1.0,1.0,1.0], + hour_hand: [1.0,1.0,1.0], + numeral:[1.0,1.0,1.0] } ];