blob: d2008356b202664f647b7fc707a41ccd592711d8 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef DRAW_QRCODE_H
#define DRAW_QRCODE_H
class GxEPD2_GFX_BASE_CLASS;
int draw_qrcode(GxEPD2_GFX_BASE_CLASS &display, int16_t x, int16_t y, String &text);
void draw_qrcode_wlan(GxEPD2_GFX_BASE_CLASS &display, int16_t x, int16_t y, const char *ssid, const char *psk);
#endif
|