You are reading a single comment by @HughB and its replies. Click here to read the full conversation.
  • Hi there @andiohn,

    Its not that hard to get started. You can do an aweful lot in the emulator.
    Personally I prefer to try running the code in RAM on the Bangle as it is truer to what it
    will look like when finished.

    The challenge is finding the best colour match and a good free
    font. Once you have identified a font that looks like it works you then need to try it.

    Below is some basic code to try:

    
    g.clear();
    g.setColor('#000');
    g.fillRect(0,0,g.getWidth(), g.getHeight());
    
    g.setFont('Vector',100);
    g.setFontAlign(0,-1);
    
    g.setColor('#f2f');
    g.drawString("09", g.getWidth()/2, 0);
    
    g.setColor('#fb8');
    g.drawString("30", g.getWidth()/2, g.getHeight()/2);
    
    

    This will produce a watch like this:


    1 Attachment

    • download (1).png
About

Avatar for HughB @HughB started