blob: 2dbcec6df58965d0c0a5baef58b94a8785ebe2f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "sharp/Adafruit_SharpMem.h"
#define SHARP_SCK 12
#define SHARP_MOSI 13
#define SHARP_SS 6
Adafruit_SharpMem display(SHARP_SCK, SHARP_MOSI, SHARP_SS, 144, 168);
#define BLACK 0
#define WHITE 1
static TaskHandle_t sharpHandle;
void sharpTask(void *arg);
void sharpInit(void)
{
display.begin();
display.clearDisplay();
display.setTextSize(3);
display.setTextColor(BLACK);
display.setCursor(0, 0);
display.println("Hello!");
xTaskCreate(sharpTask, "sharp", 512, nullptr, TASK_PRIO_LOW, &sharpHandle);
}
void sharpTask([[maybe_unused]] void *arg)
{
while (1) {
display.refresh();
delay(500);
}
}
|