2024-01-04 07:25:13 +01:00
|
|
|
.. _barcode:
|
|
|
|
|
2023-04-27 06:42:02 -06:00
|
|
|
=======
|
|
|
|
Barcode
|
|
|
|
=======
|
|
|
|
|
|
|
|
Barcode generation with LVGL. Uses
|
|
|
|
`code128 <https://github.com/fhunleth/code128>`__ by
|
|
|
|
`fhunleth <https://github.com/fhunleth>`__.
|
|
|
|
|
2024-01-04 07:25:13 +01:00
|
|
|
.. _barcode_usage:
|
|
|
|
|
2023-04-27 06:42:02 -06:00
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
Enable :c:macro:`LV_USE_BARCODE` in ``lv_conf.h``.
|
|
|
|
|
2024-01-04 07:25:13 +01:00
|
|
|
Use :cpp:func:`lv_barcode_create` to create a barcode object, and use
|
|
|
|
:cpp:func:`lv_barcode_update` to generate a barcode.
|
2023-04-27 06:42:02 -06:00
|
|
|
|
2024-01-04 07:25:13 +01:00
|
|
|
Call :cpp:func:`lv_barcode_set_scale` to adjust scaling,
|
|
|
|
call :cpp:func:`lv_barcode_set_dark_color` and :cpp:func:`lv_barcode_set_light_color`
|
|
|
|
adjust color, call :cpp:func:`lv_barcode_set_direction` will set
|
|
|
|
direction to display, and call :cpp:func:`lv_barcode_update` again to regenerate
|
2023-09-25 03:41:24 +08:00
|
|
|
the barcode.
|
2023-04-27 06:42:02 -06:00
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
|
|
|
|
- It is best not to manually set the width of the barcode, because when
|
|
|
|
the width of the object is lower than the width of the barcode, the
|
|
|
|
display will be incomplete due to truncation.
|
|
|
|
- The scale adjustment can only be an integer multiple, for example,
|
2024-01-04 07:25:13 +01:00
|
|
|
:cpp:expr:`lv_barcode_set_scale(barcode, 2)` means 2x scaling.
|
|
|
|
- The direction adjustment can be :cpp:enumerator:`LV_DIR_HOR` or :cpp:enumerator:`LV_DIR_VER`
|
|
|
|
|
|
|
|
.. _barcode_example:
|
2023-04-27 06:42:02 -06:00
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. include:: ../examples/libs/barcode/index.rst
|
|
|
|
|
2024-01-04 07:25:13 +01:00
|
|
|
.. _barcode_api:
|
|
|
|
|
2023-04-27 06:42:02 -06:00
|
|
|
API
|
|
|
|
---
|
|
|
|
|
|
|
|
:ref:`code128`
|
2023-05-08 08:45:28 -06:00
|
|
|
|