Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <esp_err.h>
#include "qrcodegen.h"
#include "qrcode.h"
esp_qrcode_get_size(esp_qrcode_handle_t)
esp_qrcode_get_module(esp_qrcode_handle_t, int, int)
Files
loading...
SourceVuESP-IDF Framework and Exampleswifi_prov_mgr samplemanaged_components/espressif__qrcode/esp_qrcode_wrapper.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <stdio.h> #include <esp_err.h> #include "qrcodegen.h" #include "qrcode.h" int esp_qrcode_get_size(esp_qrcode_handle_t qrcode) { return qrcodegen_getSize(qrcode); }{ ... } bool esp_qrcode_get_module(esp_qrcode_handle_t qrcode, int x, int y) { return qrcodegen_getModule(qrcode, x, y); }{ ... }
Details
Show:
from
Types: Columns: