App:Library:LVGL:docs:3rd party libraries:QR code

提供: robot-jp wiki
ナビゲーションに移動検索に移動

https://docs.lvgl.io/8.2/libs/qrcode.html

QR code

英文 自動翻訳

QR code generation with LVGL. Uses QR-Code-generator by nayuki.

LVGLによるQRコードの生成。nayukiによるQRコードジェネレーターを使用しています。
戻る : Previous


Get started

英文 自動翻訳
  • Download or clone this repository
    • Download from GitHub
    • Clone: git clone https://github.com/lvgl/lv_lib_qrcode.git
  • Include the library: #include "lv_lib_qrcode/lv_qrcode.h"
  • Test with the following code:
 const char * data = "Hello world";
 
 /*Create a 100x100 QR code*/
 lv_obj_t * qr = lv_qrcode_create(lv_scr_act(), 100, lv_color_hex3(0x33f), lv_color_hex3(0xeef));
 
 /*Set data*/
 lv_qrcode_update(qr, data, strlen(data));
  • このリポジトリをダウンロードまたは複製します
    • GitHubからダウンロード
    • クローン:git clone https://github.com/lvgl/lv_lib_qrcode.git
  • ライブラリを含める:#include "lv_lib_qrcode/lv_qrcode.h"
  • 次のコードでテストします。
 const char * data = "Hello world";
 
 / *100x100QRコードを作成します*/
 lv_obj_t * qr = lv_qrcode_createlv_scr_act()、100lv_color_hex30x33f)、lv_color_hex30xeef));
 
 /*データを設定*/
 lv_qrcode_updateqrdatastrlendata));
戻る : Previous


Notes

英文 自動翻訳
  • QR codes with less data are smaller, but they scaled by an integer number to best fit to the given size.
  • データ量の少ないQRコードは小さくなりますが、与えられたサイズに最適になるように整数倍でスケーリングされます。
戻る : Previous


Example

英文 自動翻訳

Create a QR Code

LVGL docs 3rdPartyLibs QRcode 01.png

戻る : Previous


API

英文 自動翻訳

Functions

lv_obj_t *lv_qrcode_create(lv_obj_t *parent, lv_coord_t size, lv_color_t dark_color, lv_color_t light_color)

Create an empty QR code (an lv_canvas) object.
Parameters
  • parent -- point to an object where to create the QR code
  • size -- width and height of the QR code
  • dark_color -- dark color of the QR code
  • light_color -- light color of the QR code
Returns
pointer to the created QR code object

lv_res_t lv_qrcode_update(lv_obj_t *qrcode, const void *data, uint32_t data_len)

Set the data of a QR code object
Parameters
  • qrcode -- pointer to aQ code object
  • data -- data to display
  • data_len -- length of data in bytes
Returns
LV_RES_OK: if no error; LV_RES_INV: on error

void lv_qrcode_delete(lv_obj_t *qrcode)

DEPRECATED: Use normal lv_obj_del instead Delete a QR code object
Parameters
qrcode -- pointer to a QR code object

Variables

const lv_obj_class_t lv_qrcode_class


機能

lv_obj_t * lv_qrcode_create(lv_obj_t * parent、lv_coord_t size、lv_color_t dark_color、lv_color_t light_color)

空のQRコード(lv_canvas)オブジェクトを作成します。
パラメーター
  • 親-QRコードを作成するオブジェクトをポイントします
  • サイズ-QRコードの幅と高さ
  • dark_color-QRコードの暗い色
  • light_color-QRコードの明るい色
戻り値
作成したQRコードオブジェクトへのポインタ

lv_res_t lv_qrcode_update(lv_obj_t * qrcode、const void * data、uint32_t data_len)

QRコードオブジェクトのデータを設定する
パラメーター
  • qrcode-aQコードオブジェクトへのポインタ
  • data-表示するデータ
  • data_len-バイト単位のデータの長さ
戻り値
LV_RES_OK:エラーがない場合。LV_RES_INV:エラー時

void lv_qrcode_delete(lv_obj_t * qrcode)

非推奨:代わりに通常のlv_obj_delを使用してくださいQRコードオブジェクトを削除してください
パラメーター
qrcode-QRコードオブジェクトへのポインタ

変数

const lv_obj_class_t lv_qrcode_class


戻る : Previous