mirror of
				https://github.com/alexandrebobkov/ESP-Nodes.git
				synced 2025-11-04 01:38:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			422 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			422 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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);
 | 
						|
}
 |