mirror of https://github.com/espruino/BangleApps
|
||
---|---|---|
.. | ||
img | ||
ChangeLog | ||
README.md | ||
app.png | ||
interface.html | ||
lib.js | ||
metadata.json | ||
screenshot.png | ||
screenshot2.png | ||
settings.js |
README.md
Clock Backgrounds
This app provides a library (clockbg
) that can be used by clocks to
provide different backgrounds for them.
Usage
By default the app provides just a red/green/blue background but it can easily be configured.
You can either:
- Go to the Clock Backgrounds app in the App Loader and use pre-made image backgrounds (or upload your own)
- Go to the
Backgrounds
app on the Bangle itself, and choose between:Solid Color
- one color that never changesRandom Color
- a new color every time the clock startsImage
- choose from a previously uploaded imageSquares
- a randomly generated pattern of squares in the selected color palette
Usage in code
Just use the following to use this library within your code:
// once at the start
let background = require("clockbg");
// to fill the whole area
background.fillRect(Bangle.appRect);
// to fill just one part of the screen
background.fillRect(x1, y1, x2, y2);
You should also add "dependencies" : { "clockbg":"module" },
to your app's metadata to
ensure that the clock background library is automatically loaded.
Features to be added
A few features could be added that would really improve functionality:
- When 'fast loading', 'random' backgrounds don't update at the moment
- Support for >1 image to be uploaded (requires some image management in
interface.html
), and choose randomly between them - Support for gradients (random colors)
- More types of auto-generated pattern (as long as they can be generated quickly or in the background)
- Storing 'clear' areas of uploaded images so clocks can easily position themselves