Skip to content

Commit

Permalink
FONT_GICKO as only UpperCase Letters
Browse files Browse the repository at this point in the history
  • Loading branch information
gickowtf committed Nov 5, 2023
1 parent e9b4238 commit 100be5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/divoom_pixoo/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def update(self):
if font == "FONT_PICO_8":
pixoo.draw_text(text, (posX, posY), (rgbR, rgbG, rgbB), FONT_PICO_8)
if font == "FONT_GICKO":
pixoo.draw_text(text, (posX, posY), (rgbR, rgbG, rgbB), FONT_GICKO)
pixoo.draw_text(text.upper(), (posX, posY), (rgbR, rgbG, rgbB), FONT_GICKO)

pixoo.push()

Expand Down

0 comments on commit 100be5f

Please sign in to comment.