Skip to content

Commit 1cc128a

Browse files
committed
Added and corrected some examples for Inkplate5
1 parent caab7e8 commit 1cc128a

File tree

298 files changed

+77754
-170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

298 files changed

+77754
-170
lines changed

examples/Inkplate5/Advanced/Communications/Inkplate5_Bluetooth_Peripheral_Mode/Inkplate5_Bluetooth_Peripheral_Mode.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66
https://soldered.com/learn/add-inkplate-6-board-definition-to-arduino-ide/
77
88
This example shows how to use Inkplate as a peripheral device over Bluetooth.
9+
More about peripheral mode: https://inkplate.readthedocs.io/en/latest/peripheral-mode.html
10+
911
Upload this example to the Inkplate and connect your phone to it via Bluetooth.
1012
First, you have to pair the Inkplate with your phone in Bluetooth settings in your phone, then go to the
1113
Serial Bluetooth Terminal app and you can find the Inkplate in the device list. You can use another similar app.
1214
If Bluetooth starts successfully, you can send commands from your phone.
1315
1416
Want to learn more about Inkplate? Visit www.inkplate.io
1517
Looking to get support? Write on our forums: https://forum.soldered.com/
16-
21 March 2023 by Soldered
18+
28 March 2023 by Soldered
1719
*/
1820

1921
// Next 3 lines are a precaution, you can ignore those, and the example would also work without them
@@ -25,6 +27,7 @@
2527
#include "BluetoothSerial.h"
2628
#include "Inkplate.h"
2729

30+
// Include peripheral functions
2831
#include "Peripheral.h"
2932

3033
#define BUFFER_SIZE 1000

examples/Inkplate5/Advanced/Communications/Inkplate5_Bluetooth_Peripheral_Mode/Peripheral.h

Lines changed: 187 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
Want to learn more about Inkplate? Visit www.inkplate.io
2525
Looking to get support? Write on our forums: https://forum.soldered.com/
26-
20 March 2023 by Soldered
26+
28 March 2023 by Soldered
2727
*/
2828

2929
#include "Inkplate.h"
@@ -58,7 +58,11 @@ void run(char commandBuffer[], size_t n)
5858
{
5959
if ((e - s) > 0)
6060
{
61-
int x, x1, x2, y, y1, y2, x3, y3, l, c, w, h, r, n, rx, ry, xc, yc;
61+
int x, x1, x2, y, y1, y2, x3, y3, l, c, w, h, r, n, rx, ry, xc, yc, yr;
62+
uint8_t hr, min, sec, wday, day, mon, k, as, am, ah, ad, aw, amc, v;
63+
bool ie, ip;
64+
System::rtcCountdownSrcClock sc;
65+
uint32_t ep, ae;
6266
char b;
6367
char temp[150];
6468
switch (*(s + 1))
@@ -393,6 +397,187 @@ void run(char commandBuffer[], size_t n)
393397
// sprintf(temp, "display.drawLine(%d, %d, %d, %d, %d)\n\r", x1, y1, x2, y2, c);
394398
// Serial.print(temp);
395399
display.fillElipse(rx, ry, xc, yc, c);
400+
break;
401+
case 'W':
402+
sscanf(s + 3, "%d,%d,%d", &hr, &min, &sec);
403+
// sprintf(temp, "display.rtcSetTime(%d, %d, %d);\n\r", hr, min, sec);
404+
// Serial.println(temp);
405+
display.rtcSetTime(hr, min, sec);
406+
break;
407+
case 'X':
408+
sscanf(s + 3, "%d,%d,%d,%d", &wday, &day, &mon, &yr);
409+
// sprintf(temp, "display.rtcSetDate(%d, %d, %d, %d);\n\r", wday, day, mon, yr);
410+
// Serial.println(temp);
411+
display.rtcSetDate(wday, day, mon, yr);
412+
break;
413+
case 'Y':
414+
sscanf(s + 3, "%d", &ep);
415+
// sprintf(temp, "display.rtcSetEpoch(%d);\n\r", ep);
416+
// Serial.println(temp);
417+
display.rtcSetEpoch(ep);
418+
break;
419+
case 'Z':
420+
sscanf(s + 3, "%c", &b);
421+
if (b == '?')
422+
{
423+
Serial.print("#Z(");
424+
Serial.print(display.rtcGetEpoch());
425+
Serial.println(")*");
426+
Serial.flush();
427+
}
428+
break;
429+
case 'a':
430+
sscanf(s + 3, "%d", &k);
431+
if (k > 6)
432+
{
433+
Serial.println("INVALID");
434+
break;
435+
}
436+
display.rtcGetRtcData();
437+
Serial.print("#a(");
438+
switch (k)
439+
{
440+
case 0:
441+
Serial.print(display.rtcGetSecond());
442+
break;
443+
case 1:
444+
Serial.print(display.rtcGetMinute());
445+
break;
446+
case 2:
447+
Serial.print(display.rtcGetHour());
448+
break;
449+
case 3:
450+
Serial.print(display.rtcGetDay());
451+
break;
452+
case 4:
453+
Serial.print(display.rtcGetWeekday());
454+
break;
455+
case 5:
456+
Serial.print(display.rtcGetMonth());
457+
break;
458+
case 6:
459+
Serial.print(display.rtcGetYear());
460+
break;
461+
}
462+
Serial.println(")*");
463+
Serial.flush();
464+
break;
465+
case 'b':
466+
sscanf(s + 3, "%d,%d,%d,%d,%d", &as, &am, &ah, &ad, &aw);
467+
// sprintf(temp, "display.rtcSetAlarm(%d, %d, %d, %d, %d);\n\r", as, am, ah, ad, aw);
468+
// Serial.println(temp);
469+
display.rtcSetAlarm(as, am, ah, ad, aw);
470+
break;
471+
case 'c':
472+
sscanf(s + 3, "%d,%d", &ae, &amc);
473+
// sprintf(temp, "display.rtcSetAlarmEpoch(%d, %d);\n\r", ae, amc);
474+
// Serial.println(temp);
475+
display.rtcSetAlarmEpoch(ae, amc);
476+
break;
477+
case 'd':
478+
sscanf(s + 3, "%c", &b);
479+
if (b == '?')
480+
{
481+
Serial.print("#d(");
482+
Serial.print(display.rtcCheckAlarmFlag());
483+
Serial.println(")*");
484+
Serial.flush();
485+
}
486+
break;
487+
case 'e':
488+
sscanf(s + 3, "%c", &b);
489+
if (b == '1')
490+
{
491+
// Serial.println("display.rtcClearAlarmFlag()");
492+
display.rtcClearAlarmFlag();
493+
Serial.flush();
494+
}
495+
break;
496+
case 'f':
497+
sscanf(s + 3, "%d", &k);
498+
if (k > 4)
499+
{
500+
Serial.println("INVALID");
501+
break;
502+
}
503+
Serial.print("#f(");
504+
switch (k)
505+
{
506+
case 0:
507+
Serial.print(display.rtcGetAlarmSecond());
508+
break;
509+
case 1:
510+
Serial.print(display.rtcGetAlarmMinute());
511+
break;
512+
case 2:
513+
Serial.print(display.rtcGetAlarmHour());
514+
break;
515+
case 3:
516+
Serial.print(display.rtcGetAlarmDay());
517+
break;
518+
case 4:
519+
Serial.print(display.rtcGetAlarmWeekday());
520+
break;
521+
}
522+
Serial.println(")*");
523+
Serial.flush();
524+
break;
525+
case 'g':
526+
sscanf(s + 3, "%d,%d,%d,%d", &sc, &v, &ie, &ip);
527+
528+
if (sc > 3)
529+
{
530+
Serial.println("ERROR");
531+
break;
532+
}
533+
534+
// sprintf(temp, "display.rtcTimerSet(%d, %d, %d, %d);\n\r", sc, v, ie, ip);
535+
// Serial.println(temp);
536+
display.rtcTimerSet(sc, v, ie, ip);
537+
break;
538+
case 'h':
539+
sscanf(s + 3, "%c", &b);
540+
if (b == '?')
541+
{
542+
Serial.print("#h(");
543+
Serial.print(display.rtcCheckTimerFlag());
544+
Serial.println(")*");
545+
Serial.flush();
546+
}
547+
break;
548+
case 'i':
549+
sscanf(s + 3, "%c", &b);
550+
if (b == '1')
551+
{
552+
// Serial.println("display.rtcClearTimerFlag()");
553+
display.rtcClearTimerFlag();
554+
}
555+
break;
556+
case 'j':
557+
sscanf(s + 3, "%c", &b);
558+
if (b == '1')
559+
{
560+
// Serial.println("display.rtcDisableTimer()");
561+
display.rtcDisableTimer();
562+
}
563+
break;
564+
case 'k':
565+
sscanf(s + 3, "%c", &b);
566+
if (b == '?')
567+
{
568+
Serial.print("#k(");
569+
Serial.print(display.rtcIsSet());
570+
Serial.println(")*");
571+
Serial.flush();
572+
}
573+
break;
574+
case 'l':
575+
sscanf(s + 3, "%c", &b);
576+
if (b == '1')
577+
{
578+
// Serial.println("display.rtcReset()");
579+
display.rtcReset();
580+
}
396581
break;
397582
}
398583
*s = 0;

examples/Inkplate5/Advanced/Communications/Inkplate5_EasyC/Inkplate5_EasyC.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
Want to learn more about Inkplate? Visit www.inkplate.io
1616
Looking to get support? Write on our forums: https://forum.soldered.com/
17-
21 March 2023 by Soldered
17+
28 March 2023 by Soldered
1818
*/
1919

2020
// Next 3 lines are a precaution, you can ignore those, and the example would also work without them
@@ -42,7 +42,7 @@ void setup()
4242
// specify it
4343
if (!bme680.begin())
4444
{
45-
display.setTextSize(2); // Set text scaling to two (text will be two times bigger than normal (5x7 px))
45+
display.setTextSize(4); // Set text scaling to two (text will be two times bigger than normal (5x7 px))
4646
display.println("Sensor init failed!");
4747
display.println("Check sensor wiring/connection!");
4848
display.partialUpdate();

examples/Inkplate5/Advanced/Communications/Inkplate5_EasyC/icons.h

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -401,46 +401,46 @@ int pressure_icon_h = 128;
401401

402402

403403
const uint8_t logo[] PROGMEM = {
404-
0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
404+
0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
405405
0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
406406
0x0,0x1f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
407407
0x0,0x7f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
408408
0x1,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
409-
0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
409+
0x3,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
410410
0x1f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
411-
0x3f,0xfc,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
412-
0x7f,0xf0,0x7f,0xfc,0x0,0xf,0xe0,0x0,0x7f,0x0,0x3f,0x0,0xf,0xf0,0x0,0x3f,0xff,0x87,0xfc,0x0,0x1f,0xff,0xc7,0xf0,0x0,
413-
0x7f,0xc0,0x1f,0xfc,0x0,0x3f,0xf8,0x1,0xff,0xe0,0x3f,0x0,0xf,0xff,0x80,0x3f,0xff,0x87,0xff,0xe0,0x3f,0xff,0xc7,0xff,0xc0,
414-
0x7f,0x0,0x7,0xfc,0x0,0x7f,0xfe,0x7,0xff,0xf0,0x3f,0x0,0xf,0xff,0xe0,0x3f,0xff,0x87,0xff,0xf8,0x1f,0xff,0xc7,0xff,0xf0,
415-
0x7e,0x3,0x3,0xfc,0x0,0xff,0xfe,0x7,0xff,0xf8,0x3f,0x0,0xf,0xff,0xf8,0x3f,0xff,0x87,0xff,0xfc,0x3f,0xff,0xc7,0xff,0xf8,
416-
0x7e,0x7,0xc1,0xf8,0x0,0xff,0xfc,0xf,0xff,0xfc,0x3f,0x0,0xf,0xff,0xf8,0x3f,0xff,0xc7,0xff,0xfe,0x1f,0xff,0xc7,0xff,0xfc,
417-
0x7e,0xf,0xe0,0xf0,0x1,0xfc,0x38,0x1f,0xe1,0xfe,0x3f,0x0,0xf,0xc3,0xfc,0x3f,0x0,0x7,0xe0,0xfe,0x1f,0x0,0x7,0xe3,0xfe,
418-
0x7e,0xf,0xf8,0x0,0x1,0xf8,0x8,0x1f,0xc0,0xfe,0x3f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x3f,0x0,0x7,0xe0,0xfe,
419-
0x7e,0xf,0xfe,0x0,0x1,0xf8,0x0,0x3f,0x80,0x7e,0x1f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x0,0x7,0xe0,0x7e,
420-
0x7e,0x7,0xff,0x0,0x1,0xfc,0x0,0x3f,0x0,0x7e,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x3e,0x1f,0x0,0x7,0xe0,0x7f,
421-
0x7f,0x7,0xff,0xc0,0x1,0xff,0x0,0x3f,0x0,0x7f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x7e,0x3f,0x0,0x7,0xe0,0x3f,
422-
0x7f,0x81,0xff,0xf0,0x0,0xff,0xe0,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xe0,0xfe,0x1f,0xff,0x7,0xe0,0x3f,
423-
0x7f,0xf0,0x7f,0xf8,0x0,0x7f,0xf8,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xfb,0xfc,0x3f,0xff,0x7,0xe0,0x3f,
424-
0x7f,0xf8,0x1f,0xf8,0x0,0x7f,0xfc,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x3f,0x3f,0xff,0x7,0xff,0xfc,0x1f,0xff,0x7,0xe0,0x3f,
425-
0x3f,0xfe,0x7,0xf8,0x0,0x1f,0xfe,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xff,0xf8,0x3f,0xff,0x7,0xe0,0x3f,
426-
0xf,0xff,0x81,0xf8,0x0,0x7,0xff,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xf0,0x1f,0x0,0x7,0xe0,0x3f,
427-
0x3,0xff,0x81,0xf8,0x0,0x0,0xff,0x3f,0x0,0x7f,0x1f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xe0,0x3f,0x0,0x7,0xe0,0x3f,
428-
0x1,0xff,0xc1,0xf8,0x0,0x0,0x3f,0x1f,0x80,0x7e,0x3f,0x80,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe3,0xf0,0x1f,0x0,0x7,0xe0,0x7f,
429-
0x0,0x7f,0xc1,0xf8,0x0,0x0,0x3f,0x1f,0x80,0x7e,0x3f,0xc0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe3,0xf0,0x3f,0x0,0x7,0xe0,0x7e,
430-
0x3c,0x1f,0xc1,0xf8,0x0,0xe0,0x3f,0x1f,0xc0,0xfe,0x1f,0xe0,0xf,0xc1,0xfc,0x3f,0x0,0x7,0xe1,0xf8,0x1f,0x0,0x7,0xe0,0xfe,
431-
0x7e,0x7,0xc1,0xf8,0x1,0xfe,0xff,0xf,0xff,0xfc,0xf,0xff,0xcf,0xff,0xf8,0x3f,0xff,0xc7,0xe1,0xfc,0x3f,0xff,0xc7,0xff,0xfc,
432-
0xff,0x3,0x81,0xf8,0x1,0xff,0xfe,0xf,0xff,0xf8,0x7,0xff,0xcf,0xff,0xf8,0x3f,0xff,0xc7,0xe0,0xfc,0x1f,0xff,0xc7,0xff,0xf8,
433-
0xff,0x80,0x3,0xf8,0x3,0xff,0xfe,0x7,0xff,0xf8,0x3,0xff,0x8f,0xff,0xf0,0x3f,0xff,0xc7,0xe0,0xfe,0x3f,0xff,0xc7,0xff,0xf8,
434-
0xff,0xe0,0xf,0xf8,0x0,0xff,0xfc,0x3,0xff,0xf0,0x1,0xff,0xcf,0xff,0xe0,0x3f,0xff,0xc7,0xe0,0x7e,0x1f,0xff,0xc7,0xff,0xe0,
435-
0xff,0xf8,0x3f,0xf8,0x0,0x3f,0xf0,0x0,0xff,0xc0,0x0,0xff,0xcf,0xff,0x0,0x3f,0xff,0xc7,0xe0,0x7f,0x3f,0xff,0xc7,0xff,0x80,
436-
0x7f,0xfc,0xff,0xf0,0x0,0x2,0x40,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
411+
0x3f,0xfc,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
412+
0x7f,0xf0,0x3f,0xfc,0x0,0x7,0xc0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
413+
0x7f,0xc0,0xf,0xfc,0x0,0x3f,0xfc,0x1,0xff,0xe0,0x3f,0x0,0xf,0xff,0x80,0x3f,0xff,0x87,0xff,0xf0,0x1f,0xff,0xc7,0xff,0xc0,
414+
0x7f,0x80,0x7,0xfc,0x0,0x7f,0xfe,0x3,0xff,0xf0,0x3f,0x0,0xf,0xff,0xe0,0x3f,0xff,0x87,0xff,0xf8,0x1f,0xff,0xc7,0xff,0xf0,
415+
0x7e,0x7,0x3,0xfc,0x0,0xff,0xfe,0x7,0xff,0xf8,0x3f,0x0,0xf,0xff,0xf0,0x3f,0xff,0x87,0xff,0xfc,0x1f,0xff,0xc7,0xff,0xf8,
416+
0x7e,0x7,0x81,0xf8,0x1,0xff,0xfe,0xf,0xff,0xfc,0x3f,0x0,0xf,0xff,0xf8,0x3f,0xff,0x87,0xff,0xfe,0x1f,0xff,0xc7,0xff,0xfc,
417+
0x7e,0xf,0xe0,0xf0,0x1,0xfc,0x3c,0x1f,0xe1,0xfe,0x3f,0x0,0xf,0xc7,0xfc,0x3f,0xff,0x87,0xe1,0xfe,0x1f,0xff,0x87,0xe7,0xfe,
418+
0x7e,0xf,0xf8,0x0,0x1,0xf8,0x0,0x1f,0xc0,0xfe,0x3f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x80,0x7,0xe0,0xfe,
419+
0x7e,0xf,0xfe,0x0,0x1,0xf8,0x0,0x1f,0x80,0x7e,0x3f,0x0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x80,0x7,0xe0,0x7e,
420+
0x7e,0x7,0xff,0x80,0x1,0xfc,0x0,0x3f,0x80,0x7e,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x80,0x7,0xe0,0x7f,
421+
0x7e,0x3,0xff,0xc0,0x1,0xff,0x80,0x3f,0x0,0x7f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe0,0x7e,0x1f,0x80,0x7,0xe0,0x7f,
422+
0x7f,0x81,0xff,0xf0,0x0,0xff,0xc0,0x3f,0x0,0x7f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xe0,0xfe,0x1f,0xff,0x87,0xe0,0x3f,
423+
0x7f,0xf0,0x7f,0xf8,0x0,0x7f,0xf8,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xff,0xfe,0x1f,0xff,0x87,0xe0,0x3f,
424+
0x7f,0xf8,0x1f,0xf8,0x0,0x3f,0xfe,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xff,0xfc,0x1f,0xff,0x87,0xe0,0x3f,
425+
0x1f,0xfe,0x7,0xf8,0x0,0x1f,0xfe,0x3f,0x0,0x3f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0xff,0x7,0xff,0xf8,0x1f,0xff,0x87,0xe0,0x3f,
426+
0xf,0xff,0x81,0xf8,0x0,0x3,0xff,0x3f,0x0,0x7f,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xf0,0x1f,0x80,0x7,0xe0,0x3f,
427+
0x7,0xff,0x81,0xf8,0x0,0x0,0xff,0x3f,0x0,0x7e,0x3f,0x0,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xff,0xe0,0x1f,0x80,0x7,0xe0,0x7f,
428+
0x1,0xff,0xc1,0xf8,0x0,0x0,0x3f,0x3f,0x80,0x7e,0x3f,0x80,0xf,0xc0,0x7e,0x3f,0x0,0x7,0xe3,0xf0,0x1f,0x80,0x7,0xe0,0x7e,
429+
0x0,0x7f,0xc1,0xf8,0x0,0x0,0x3f,0x1f,0x80,0x7e,0x3f,0xc0,0xf,0xc0,0xfe,0x3f,0x0,0x7,0xe1,0xf0,0x1f,0x80,0x7,0xe0,0x7e,
430+
0x3c,0x1f,0xc1,0xf8,0x0,0xe0,0x3f,0x1f,0xc0,0xfe,0x1f,0xff,0x8f,0xc1,0xfc,0x3f,0x0,0x7,0xe1,0xf8,0x1f,0x80,0x7,0xe0,0xfe,
431+
0x7e,0xf,0x81,0xf8,0x1,0xfc,0xff,0xf,0xf3,0xfc,0xf,0xff,0x8f,0xdf,0xfc,0x3f,0xff,0x87,0xe1,0xfc,0x1f,0xff,0xc7,0xef,0xfc,
432+
0xff,0x3,0x1,0xf8,0x1,0xff,0xfe,0xf,0xff,0xfc,0x7,0xff,0x8f,0xff,0xf8,0x3f,0xff,0x87,0xe0,0xfc,0x1f,0xff,0xc7,0xff,0xfc,
433+
0xff,0x80,0x7,0xf8,0x1,0xff,0xfe,0x7,0xff,0xf0,0x3,0xff,0x8f,0xff,0xf0,0x3f,0xff,0x87,0xe0,0x7e,0x1f,0xff,0xc7,0xff,0xf0,
434+
0xff,0xe0,0xf,0xf8,0x1,0xff,0xfc,0x3,0xff,0xf0,0x1,0xff,0x8f,0xff,0xe0,0x3f,0xff,0x87,0xe0,0x7e,0x1f,0xff,0xc7,0xff,0xe0,
435+
0xff,0xf8,0x3f,0xf8,0x0,0x3f,0xf0,0x0,0xff,0xc0,0x0,0xff,0x8f,0xff,0x0,0x3f,0xff,0x87,0xe0,0x7f,0x1f,0xff,0xc7,0xff,0x0,
436+
0x7f,0xfe,0x7f,0xf0,0x0,0x7,0x80,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
437437
0x3f,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
438438
0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
439-
0x0,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
439+
0x1,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
440440
0x0,0x7f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
441441
0x0,0x1f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
442442
0x0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
443-
0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
443+
0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
444444
};
445445
int logo_w = 200;
446446
int logo_h = 40;

0 commit comments

Comments
 (0)