Added a 14 segment LED example, driven by the HT16K33 (#219)

No fritzing parts available for the device so no diagrams
This commit is contained in:
James Hughes
2022-11-25 17:32:13 +00:00
committed by GitHub
parent aa9a72b494
commit 82eae4c8ea
5 changed files with 281 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
add_executable(ht16k33_i2c
ht16k33_i2c.c
)
# pull in common dependencies and additional i2c hardware support
target_link_libraries(ht16k33_i2c pico_stdlib hardware_i2c)
# create map/bin/hex file etc.
pico_add_extra_outputs(ht16k33_i2c)
# add url via pico_set_program_url
example_auto_set_url(ht16k33_i2c)