includes: move headers to inc/ and update source files

This commit is contained in:
A.M. Rowsell 2026-06-30 00:36:41 -04:00
commit 5c92ee4bb8
12 changed files with 9 additions and 8 deletions

8
main.c
View file

@ -18,10 +18,10 @@
* the readings to Adafruit IO over MQTT using the Pico W.
******************************************************************************/
#include "./aht.h"
#include "./bmp.h"
#include "./ens.h"
#include "./mqtt.h"
#include "inc/aht.h"
#include "inc/bmp.h"
#include "inc/ens.h"
#include "inc/mqtt.h"
#include "hardware/gpio.h"
#include "hardware/i2c.h"
#include "pico/cyw43_arch.h"