[i = s] posts by Steini in 2018-11-22 04:23 Edit
Symptom: You will notice a vertical pixel shift in IDLE animation in firmware 1.06. The screen showing both graphics for "Heating" and "Setting" contains the graphics shifted one pixel to the top compared to the other screens in the animation.
Fix: Replace the first screen in Maplib byte array (lines 116-127 of WordLib.h) with the following content which shifts the screen mentioned above one pixel to the bottom and results in a smooth IDLE animation without a pixel shift:
- 0x00,0x80,0x60,0x10,0x08,0x04,0x64,0x94,0x04,0x04,0xB4,0x4C,0x04,0x84,0x84,0x84,
- 0x84,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x84,0x44,0x24,0x64,0xA4,0x24,
- 0x24,0x24,0x24,0x24,0x24,0x24,0x24,0xE4,0x04,0x08,0x10,0x60,0x80,0x00,0x00,0x00,
- 0x00,0x00,0x80,0x60,0x10,0x08,0x04,0x84,0xC4,0xE4,0xE4,0xE4,0xE4,0xC4,0x84,0x04,
- 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
- 0x04,0x04,0x84,0xC4,0xE4,0xE4,0xE4,0xE4,0xC4,0x84,0x08,0x10,0x60,0x80,0x00,0x00,
- 0x00,0x07,0x18,0x20,0x40,0x80,0x82,0x81,0x80,0x82,0x82,0x85,0x85,0x88,0x8F,0x88,
- 0x88,0x88,0x8F,0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x8D,0x95,0xA7,0xB0,0xAF,0xA0,
- 0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xA0,0xBF,0x80,0x40,0x20,0x18,0x07,0x00,0x00,0x00,
- 0x00,0x00,0x07,0x18,0x20,0x40,0x80,0x84,0x8C,0x9C,0x9C,0x9C,0x9F,0x8F,0x87,0x83,
- 0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
- 0x83,0x83,0x87,0x8F,0x9F,0x9C,0x9C,0x9C,0x8C,0x84,0x40,0x20,0x18,0x07,0x00,0x00,
复制代码
|