typicons font to LVGL and HASPmota (#20742)

This commit is contained in:
s-hadinger 2024-02-16 12:42:11 +01:00 committed by GitHub
parent b91f93062a
commit a51b08b36c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
17 changed files with 3093 additions and 27 deletions

View File

@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
## [13.4.0.1]
### Added
- HASPmota `p<x>b<y>.delete` to delete an object
- typicons font to LVGL and HASPmota
### Breaking Changed

View File

@ -94,6 +94,7 @@ class lv_signal_arcs : lv_obj
super(self).init(parent)
self.set_style_bg_opa(0, 0) # transparent background
self.set_style_border_width(0, 0) # remove border
self.set_style_pad_all(0,0)
# own values
self.percentage = 100
# pre-allocate buffers

View File

@ -678,23 +678,24 @@ be_local_closure(lv_signal_arcs_init, /* name */
0, /* has sup protos */
NULL, /* no sub protos */
1, /* has constants */
( &(const bvalue[12]) { /* constants */
( &(const bvalue[13]) { /* constants */
/* K0 */ be_nested_str_weak(init),
/* K1 */ be_nested_str_weak(set_style_bg_opa),
/* K2 */ be_const_int(0),
/* K3 */ be_nested_str_weak(set_style_border_width),
/* K4 */ be_nested_str_weak(percentage),
/* K5 */ be_nested_str_weak(area),
/* K6 */ be_nested_str_weak(lv),
/* K7 */ be_nested_str_weak(arc_dsc),
/* K8 */ be_nested_str_weak(draw_arc_dsc),
/* K9 */ be_nested_str_weak(add_event_cb),
/* K10 */ be_nested_str_weak(widget_event),
/* K11 */ be_nested_str_weak(EVENT_DRAW_MAIN),
/* K4 */ be_nested_str_weak(set_style_pad_all),
/* K5 */ be_nested_str_weak(percentage),
/* K6 */ be_nested_str_weak(area),
/* K7 */ be_nested_str_weak(lv),
/* K8 */ be_nested_str_weak(arc_dsc),
/* K9 */ be_nested_str_weak(draw_arc_dsc),
/* K10 */ be_nested_str_weak(add_event_cb),
/* K11 */ be_nested_str_weak(widget_event),
/* K12 */ be_nested_str_weak(EVENT_DRAW_MAIN),
}),
be_str_weak(init),
&be_const_str_solidified,
( &(const binstruction[31]) { /* code */
( &(const binstruction[35]) { /* code */
0x60080003, // 0000 GETGBL R2 G3
0x5C0C0000, // 0001 MOVE R3 R0
0x7C080200, // 0002 CALL R2 1
@ -709,23 +710,27 @@ be_local_closure(lv_signal_arcs_init, /* name */
0x58100002, // 000B LDCONST R4 K2
0x58140002, // 000C LDCONST R5 K2
0x7C080600, // 000D CALL R2 3
0x540A0063, // 000E LDINT R2 100
0x90020802, // 000F SETMBR R0 K4 R2
0xB80A0C00, // 0010 GETNGBL R2 K6
0x8C080505, // 0011 GETMET R2 R2 K5
0x7C080200, // 0012 CALL R2 1
0x8C080104, // 000E GETMET R2 R0 K4
0x58100002, // 000F LDCONST R4 K2
0x58140002, // 0010 LDCONST R5 K2
0x7C080600, // 0011 CALL R2 3
0x540A0063, // 0012 LDINT R2 100
0x90020A02, // 0013 SETMBR R0 K5 R2
0xB80A0C00, // 0014 GETNGBL R2 K6
0x8C080508, // 0015 GETMET R2 R2 K8
0xB80A0E00, // 0014 GETNGBL R2 K7
0x8C080506, // 0015 GETMET R2 R2 K6
0x7C080200, // 0016 CALL R2 1
0x90020E02, // 0017 SETMBR R0 K7 R2
0x8C080109, // 0018 GETMET R2 R0 K9
0x8810010A, // 0019 GETMBR R4 R0 K10
0xB8160C00, // 001A GETNGBL R5 K6
0x88140B0B, // 001B GETMBR R5 R5 K11
0x58180002, // 001C LDCONST R6 K2
0x7C080800, // 001D CALL R2 4
0x80000000, // 001E RET 0
0x90020C02, // 0017 SETMBR R0 K6 R2
0xB80A0E00, // 0018 GETNGBL R2 K7
0x8C080509, // 0019 GETMET R2 R2 K9
0x7C080200, // 001A CALL R2 1
0x90021002, // 001B SETMBR R0 K8 R2
0x8C08010A, // 001C GETMET R2 R0 K10
0x8810010B, // 001D GETMBR R4 R0 K11
0xB8160E00, // 001E GETNGBL R5 K7
0x88140B0C, // 001F GETMBR R5 R5 K12
0x58180002, // 0020 LDCONST R6 K2
0x7C080800, // 0021 CALL R2 4
0x80000000, // 0022 RET 0
})
)
);

View File

@ -0,0 +1,74 @@
#### Version 2.1.1
- Include all files from `src/fonts` in NPM package.
#### Version 2.1.0
- Icons no longer have zero sidebearings. Each icon is now equal width.
- Minified CSS is no longer generated.
- Updated build process to use `webfonts-generator` to generate all files.
- A JSON dictionary of codepoints is generated for all icons.
- Stylesheets no longer add unnecessary width and height declarations.
- Fix single-quotes @charset declaration in generated CSS file.
- Utility classes have been added for quickly resizing icons, similar to FontAwesome. (-lg, -2x, -3x, etc)
- Added woff2 to generated fonts.
#### Version 2.0.9
- Add source SVG files to `package.json`.
#### Version 2.0.8
- Fix `package.json` files entry for NPM.
#### Version 2.0.7
- Removed SVG ignores from Bower package for developer use.
#### Version 2.0.6
- This release fixes misspelled icons calendar and calendar-outline (Issue #9), renames incorrectly labelled cross to cloud-storage-outline (Issue #5) and adds search terms for many icons to make it easier to find the icon your looking for. It also adds higher decimal rounding for the social-youtube-circular icon to correct some node degradation in the SVG file.
#### Version 2.0.5
- Added non-minified CSS to Bower.
#### Version 2.0.4
- Font files are now licenced using the [SIL Open Font Licence](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). This means that the font can be used, studied, modified and
redistributed freely as long as they are not sold by themselves.
#### Version 2.0.3
- Added new icons including:
- Sort down, sort up and unsorted
- Filter
- Social: Instagram, YouTube and Google Plus
- Vendors: Apple, Microsoft and Google
- Dropbox
- Half and full hearts
- Half and full stars
- Reverse play
- Thumbs OK
- CSS3 and HTML5
- Folder open
- Mortar board
- Spiral
#### Version 2.0.2
- Fixed support for IE 8 by replacing double colon with single in `::before`
#### Version 2.0.1
- Added bower support
- Removed EPS for smaller repo size (contact me if you want to get them)
#### Version 2.0.0
- Added 220 new icons, including outline variants
- Improved quality of vector artwork
- Mapped in the Private Use Area of Unicode to avoid being read by screen readers
- Rehinted with `ttfautohint`
- Grouped glyphs on demo page, for convenience
- Changed css glyphs names, to be more semantic

View File

@ -0,0 +1,150 @@
Font files are available under the SIL Open Font Licence, included below.
Artwork available under the CC BY-SA Licence, also below.
---
# SIL Open Font License, Version 1.1.
Copyright (c) 2019, Stephen Hutchings (www.s-ings.com),
with Reserved Font Name microns.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
SIL OPEN FONT LICENSE
Version 1.1 - 26 February 2007
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the copyright statement(s).
"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
1. Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
2. Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
3. No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
5. The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
---
# Creative Commons Attribution-Share Alike 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
Section 1 Definitions.
Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License.
Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
Licensor means the individual(s) or entity(ies) granting rights under this Public License.
Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
Section 2 Scope.
License grant.
Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
reproduce and Share the Licensed Material, in whole or in part; and
produce, reproduce, and Share Adapted Material.
Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
Term. The term of this Public License is specified in Section 6(a).
Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
Downstream recipients.
Offer from the Licensor Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
Additional offer from the Licensor Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapters License You apply.
No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
Other rights.
Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
Patent and trademark rights are not licensed under this Public License.
To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
Section 3 License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
Attribution.
If You Share the Licensed Material (including in modified form), You must:
retain the following if it is supplied by the Licensor with the Licensed Material:
identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
a copyright notice;
a notice that refers to this Public License;
a notice that refers to the disclaimer of warranties;
a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
ShareAlike.
In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
The Adapters License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.
You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
Section 4 Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
Section 5 Disclaimer of Warranties and Limitation of Liability.
Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
Section 6 Term and Termination.
This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
Section 7 Other Terms and Conditions.
The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
Section 8 Interpretation.
For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.

View File

@ -0,0 +1,39 @@
## Typicons
Visit the [website](http://s-ings.com/typicons) for information on how to use Typicons on your website
## Using Typicons
Typicons can be easily installed via [npm](http://www.npmjs.com)...
```bash
$ npm install typicons.font
```
...or [bower](http://www.bower.io/).
```bash
$ bower install typicons
```
Otherwise, the fonts and CSS can be found in [src/font/](https://github.com/stephenhutchings/typicons.font/tree/master/src/font).
SVG source files can be found in [src/svg/](https://github.com/stephenhutchings/typicons.font/tree/master/src/svg).
## Info
What's new in Typicons? See the [changelog](https://github.com/stephenhutchings/typicons.font/blob/master/CHANGELOG.md).
## License
See the [licence](https://github.com/stephenhutchings/typicons.font/blob/master/LICENCE.md) for more details.
#### Icons/Artwork
Distributed under
[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) licence.
#### Font
Distributed under
[SIL Open Font Licence](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web) licence.

View File

@ -0,0 +1,9 @@
# font map: https://www.s-ings.com/typicons/
# https://github.com/stephenhutchings/typicons.font
./lv_font_conv.js --no-kerning --bpp 1 --size 24 -o typicons24.lvfont --format bin --font typicons.ttf -r 0xE000-0xE14F
./lv_font_conv.js --no-kerning --bpp 1 --size 36 -o typicons36.lvfont --format bin --font typicons.ttf -r 0xE000-0xE14F
./lv_font_conv.js --no-kerning --bpp 1 --size 48 -o typicons48.lvfont --format bin --font typicons.ttf -r 0xE000-0xE14F
./lv_font_conv.js --no-kerning --bpp 1 --size 64 -o typicons64.lvfont --format bin --font typicons.ttf -r 0xE000-0xE14F
./lv_font_conv.js --no-kerning --bpp 1 --size 24 -o typicons24.c --format bin --font typicons.ttf --format lvgl -r 0xE000-0xE14F

File diff suppressed because it is too large Load Diff

View File

@ -2,8 +2,9 @@
{"id":0,"text_color":"#FFFFFF"}
{"id":11,"obj":"label","x":0,"y":0,"w":320,"pad_right":90,"h":22,"bg_color":"#D00000","bg_opa":255,"radius":0,"border_side":0,"text":"Tasmota","text_font":"montserrat-20"}
{"id":15,"obj":"lv_wifi_arcs","x":291,"y":0,"w":29,"h":22,"radius":0,"border_side":0,"bg_color":"#000000","line_color":"#FFFFFF"}
{"id":16,"obj":"lv_clock","x":232,"y":3,"w":55,"h":16,"radius":0,"border_side":0}
{"id":15,"obj":"lv_wifi_arcs","x":291,"y":0,"w":29,"h":20,"radius":0,"border_side":0,"bg_color":"#000000","line_color":"#FFFFFF"}
{"id":16,"obj":"lv_clock","x":208,"y":3,"w":55,"h":16,"radius":0,"border_side":0}
{"id":17,"obj":"label","x":268,"y":-2,"w":25,"h":20,"text":"\uE02A","align":0,"text_font":"typicons-24"}
{"comment":"---------- Bottom buttons - prev/home/next ----------"}
{"id":101,"obj":"btn","x":20,"y":210,"w":80,"h":25,"action":"prev","bg_color":"#1fa3ec","radius":10,"border_side":1,"text":"\uF053","text_font":"montserrat-20"}

View File

@ -424,6 +424,7 @@
LV_FONT_DECLARE(robotocondensed_regular_40_latin1) \
LV_FONT_DECLARE(robotocondensed_regular_44_latin1) \
LV_FONT_DECLARE(robotocondensed_regular_48_latin1) \
LV_FONT_DECLARE(typicons24) \
#define ROBOTOCONDENSED_REGULAR_12_LATIN1 1
#define ROBOTOCONDENSED_REGULAR_14_LATIN1 0

View File

@ -272,6 +272,12 @@ extern "C" {
{ 0, nullptr}
};
// typicons Font
const lv_font_table_t lv_typicons_fonts[] = {
{ 24, &typicons24 },
{ 0, nullptr}
};
// robotocondensed-latin1
const lv_font_table_t lv_robotocondensed_fonts[] = {
#if ROBOTOCONDENSED_REGULAR_12_LATIN1
@ -320,6 +326,7 @@ extern "C" {
const lv_font_names_t lv_embedded_fonts[] = {
{ "montserrat", lv_montserrat_fonts },
{ "seg7", lv_seg7_fonts },
{ "typicons", lv_typicons_fonts },
{ "unscii", lv_unscii_fonts},
#ifdef USE_LVGL_HASPMOTA
{ "robotocondensed", lv_robotocondensed_fonts },