inkplate-6-arduino-library/test/test.ino

23 lines
375 B
Arduino
Raw Normal View History

2020-09-09 10:27:49 +02:00
#include "Inkplate.h"
2020-09-10 13:50:09 +02:00
2020-09-21 15:21:25 +02:00
Inkplate display(INKPLATE_1BIT);
2020-09-07 11:40:01 +02:00
void setup()
{
Serial.begin(115200);
2020-09-09 10:27:49 +02:00
display.begin();
2020-09-21 15:23:30 +02:00
Serial.println(display.joinAP("", ""));
2020-09-09 10:27:49 +02:00
delay(500);
2020-09-07 11:40:01 +02:00
}
void loop()
{
2020-09-09 10:27:49 +02:00
display.clearDisplay();
2020-09-07 11:40:01 +02:00
2020-09-21 15:21:25 +02:00
Serial.println(display.drawBitmapFromWeb("http://img.cale.es/bmp/fasani/5e5ff140694ee", 0, 0, 1, 0));
2020-09-14 12:07:34 +02:00
display.display();
2020-09-07 11:40:01 +02:00
delay(5000);
}