Hello,
I am trying to adapt my forerunner 945 watchface to the forerunner 965.
Before, I was doing this to add the background :
function initialize() {
WatchFace.initialize();
background = new WatchUi.Bitmap({
:rezId=>Rez.Drawables.totoro,
:locX=>0,
:locY=>0
});
}function onUpdate(dc) {
dc.clearClip();
// Background
background.draw(dc);
background.setLocation(0, 0);
}


