Merge pull request #9078 from GMagician/1.1.x-bmp-fix

[1.1.x] Clockwise bmp fix
This commit is contained in:
Scott Lahteine 2018-01-06 13:53:27 -06:00 committed by GitHub
commit b83c49befb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -474,8 +474,8 @@
const unsigned char cw_bmp[] PROGMEM = {
0x03,0xF8,0x00, // 000000111111100000000000
0x0F,0xF7,0x00, // 000011111111111000000000
0x17,0x0F,0x00, // 000111100000111100000000
0x0F,0xFE,0x00, // 000011111111111000000000
0x1E,0x0F,0x00, // 000111100000111100000000
0x38,0x07,0x00, // 001110000000011100000000
0x38,0x03,0x80, // 001110000000001110000000
0x70,0x03,0x80, // 011100000000001110000000
@ -484,9 +484,9 @@
0x70,0x03,0x80, // 011100000000001110000000
0x70,0x01,0x00, // 011100000000000100000000
0x70,0x00,0x00, // 011100000000000000000000
0x68,0x00,0x00, // 001110000000000000000000
0x38,0x00,0x00, // 001110000000000000000000
0x38,0x07,0x00, // 001110000000011100000000
0x17,0x0F,0x00, // 000111100000111100000000
0x1E,0x0F,0x00, // 000111100000111100000000
0x0F,0xFE,0x00, // 000011111111111000000000
0x03,0xF8,0x00 // 000000111111100000000000
};