Acknowledged

Instinct E 40mm screen size discrepancy

In the simulator version 7.4.3,  for the Instinct E 40mm, deviceSettings.screenHeight and screenWidth return 166, but the simulator screen is 164x164 pixels.

Parents Comment Children
  • I meant to write that the bottom and right sides get clipped.

  • On the I2s, the bezel covers 7 pixels on the right side below the subscreen.  Could be something like that here were some pixels are actually covered.  What happens when you use the actual dc width in an app?

  • I don't follow you at all. I think I will wait for the official Garmin ruling on this.

  • Sounds like it may be similar to what you see with the I2s where the visible part of the screen below the subscreen is actually 7 pixels narrower than the part of the screen with the subscreen (7 pixels on the right)

  • A watchface type app.

    If you run your cursor to the edge of the display, you will see the highest x&y co-ordinates reported as 163.

    IF you draw:

            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,164,164);
    the whole square is displayed.
    but if you draw:
            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,165,165);
    the left and right sides of the square get clipped.