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