main/config.c

Mon, 03 Apr 2023 16:07:34 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 03 Apr 2023 16:07:34 +0200
changeset 12
bb72d448e282
parent 3
e5d91caa6ab4
permissions
-rw-r--r--

In the esp-idf-lib the adps9930 driver uses a device descriptor structure instead of just i2c_dev_t. Fixed a linking issue. Added APDS9930 task. Added getLightValues function. Added wifi quality value to the MQTT payload. The payload is complete and will be published.


#include "config.h"

/*
 * Sensors parameters and defines
 */
bmp280_params_t         bmp280_params;
bmp280_t                bmp280_dev;

ina219_t		ina219_b_dev;
ina219_t		ina219_s_dev;

apds9930_t		apds9930_dev;

mercurial