init bme_280 lib

This commit is contained in:
Travis Shears 2025-04-08 18:42:20 +02:00
parent 08fb2efc86
commit f7da5a3712
4 changed files with 188 additions and 3 deletions

View file

@ -19,12 +19,12 @@ pico_sdk_init()
# the executable
add_executable( node1 node1.c )
add_executable( node1 node1.c bme280.c )
pico_set_program_version(node1 "0.1")
pico_set_program_name(node1 "node_one")
# pull in common dependencies
target_link_libraries( node1 pico_stdlib )
target_link_libraries( node1 pico_stdlib hardware_i2c)
# create map/bin/hex file etc.
pico_add_extra_outputs( node1 )