diff --git a/examples/Blinka_CLUE.bmp b/examples/Blinka_CLUE.bmp new file mode 100755 index 0000000..10106ba Binary files /dev/null and b/examples/Blinka_CLUE.bmp differ diff --git a/examples/pybadger_clue_custom_image_badge.py b/examples/pybadger_clue_custom_image_badge.py new file mode 100644 index 0000000..fa4ed18 --- /dev/null +++ b/examples/pybadger_clue_custom_image_badge.py @@ -0,0 +1,12 @@ +"""Custom image badge example for Adafruit CLUE.""" +from adafruit_pybadger import pybadger + +pybadger.image_background("Blinka_CLUE.bmp") + +pybadger.badge_line(text="@circuitpython", color=pybadger.SKY, scale=2, padding_above=2) +pybadger.badge_line(text="Blinka", color=pybadger.WHITE, scale=5, padding_above=3) +pybadger.badge_line(text="CircuitPythonista", color=pybadger.WHITE, scale=2, padding_above=2) +pybadger.badge_line(text="she/her", color=pybadger.SKY, scale=4, padding_above=4) + +while True: + pybadger.show_custom_badge()