We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing the default install/ulanzi-easy.yaml file results in "missing glyph" error:
install/ulanzi-easy.yaml
Failed config font: [source /config/esphome/ulanzi-easy.yaml:79] Font MatrixChunky6.ttf is missing 1 glyph: (b'\\n'). - file: MatrixChunky6.ttf id: px6_font size: 6 glyphs: |- ! "#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz°
Should compile fine.
Turns out the base config syntax seems invalid and can be fixed on line 82 with:
size: 6 - glyphs: | + glyphs: |- ! "#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz°
The text was updated successfully, but these errors were encountered:
Yeah, it's an ESPHome change. Came up last week, some discussion: #254 ...need the - to avoid adding a new line.
-
Sorry, something went wrong.
No branches or pull requests
Bug report
Describe the bug
Installing the default
install/ulanzi-easy.yaml
file results in "missing glyph" error:Additional information
To Reproduce
Expected behavior
Should compile fine.
Fix:
Turns out the base config syntax seems invalid and can be fixed on line 82 with:
The text was updated successfully, but these errors were encountered: