I2C fixes
modified: examples/avr-rss2/hello-sensors/hello-sensors.c
This commit is contained in:
parent
dcbb5f6271
commit
cfed856720
@ -50,9 +50,7 @@
|
|||||||
#include "dev/light-sensor.h"
|
#include "dev/light-sensor.h"
|
||||||
#include "dev/pulse-sensor.h"
|
#include "dev/pulse-sensor.h"
|
||||||
#include "dev/bme280/bme280-sensor.h"
|
#include "dev/bme280/bme280-sensor.h"
|
||||||
#ifdef CO2
|
|
||||||
#include "dev/co2_sa_kxx-sensor.h"
|
#include "dev/co2_sa_kxx-sensor.h"
|
||||||
#endif
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
PROCESS(hello_sensors_process, "Hello sensor process");
|
PROCESS(hello_sensors_process, "Hello sensor process");
|
||||||
AUTOSTART_PROCESSES(&hello_sensors_process);
|
AUTOSTART_PROCESSES(&hello_sensors_process);
|
||||||
@ -81,24 +79,28 @@ read_values(void)
|
|||||||
printf(" LIGHT=%-d", light_sensor.value(0));
|
printf(" LIGHT=%-d", light_sensor.value(0));
|
||||||
printf(" PULSE_0=%-d", pulse_sensor.value(0));
|
printf(" PULSE_0=%-d", pulse_sensor.value(0));
|
||||||
printf(" PULSE_1=%-d", pulse_sensor.value(1));
|
printf(" PULSE_1=%-d", pulse_sensor.value(1));
|
||||||
#ifdef CO2
|
|
||||||
|
if( i2c_probed & I2C_CO2SA ) {
|
||||||
printf(" CO2=%-d", co2_sa_kxx_sensor.value( CO2_SA_KXX_CO2));
|
printf(" CO2=%-d", co2_sa_kxx_sensor.value( CO2_SA_KXX_CO2));
|
||||||
#endif
|
}
|
||||||
|
|
||||||
|
if( i2c_probed & I2C_BME280 ) {
|
||||||
#if STD_API
|
#if STD_API
|
||||||
printf(" BME280_TEMP=%-d", bme280_sensor.value(BME280_SENSOR_TEMP));
|
printf(" BME280_TEMP=%-d", bme280_sensor.value(BME280_SENSOR_TEMP));
|
||||||
printf(" BME280_RH=%-d", bme280_sensor.value(BME280_SENSOR_HUMIDITY));
|
printf(" BME280_RH=%-d", bme280_sensor.value(BME280_SENSOR_HUMIDITY));
|
||||||
printf(" BME280_P=%-d", bme280_sensor.value(BME280_SENSOR_PRESSURE));
|
printf(" BME280_P=%-d", bme280_sensor.value(BME280_SENSOR_PRESSURE));
|
||||||
#else
|
#else
|
||||||
/* Trigger burst read */
|
/* Trigger burst read */
|
||||||
(void *) bme280_sensor.value(BME280_SENSOR_TEMP);
|
bme280_sensor.value(BME280_SENSOR_TEMP);
|
||||||
printf(" T_BME280=%5.2f", (double)bme280_mea.t_overscale100 / 100.);
|
printf(" T_BME280=%5.2f", (double)bme280_mea.t_overscale100 / 100.);
|
||||||
printf(" RH_BME280=%5.2f ", (double)bme280_mea.h_overscale1024 / 1024.);
|
printf(" RH_BME280=%5.2f", (double)bme280_mea.h_overscale1024 / 1024.);
|
||||||
#ifdef BME280_64BIT
|
#ifdef BME280_64BIT
|
||||||
printf(" P_BME280=%5.2f ", (double)bme280_mea.p_overscale256 / 256.);
|
printf(" P_BME280=%5.2f", (double)bme280_mea.p_overscale256 / 256.);
|
||||||
#else
|
#else
|
||||||
printf(" P_BME280=%5.2f ", (double)bme280_mea.p);
|
printf(" P_BME280=%5.2f", (double)bme280_mea.p);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
@ -112,10 +114,14 @@ PROCESS_THREAD(hello_sensors_process, ev, data)
|
|||||||
SENSORS_ACTIVATE(temp_mcu_sensor);
|
SENSORS_ACTIVATE(temp_mcu_sensor);
|
||||||
SENSORS_ACTIVATE(light_sensor);
|
SENSORS_ACTIVATE(light_sensor);
|
||||||
SENSORS_ACTIVATE(pulse_sensor);
|
SENSORS_ACTIVATE(pulse_sensor);
|
||||||
|
|
||||||
|
if( i2c_probed & I2C_BME280 ) {
|
||||||
SENSORS_ACTIVATE(bme280_sensor);
|
SENSORS_ACTIVATE(bme280_sensor);
|
||||||
#ifdef CO2
|
}
|
||||||
|
|
||||||
|
if( i2c_probed & I2C_CO2SA ) {
|
||||||
SENSORS_ACTIVATE(co2_sa_kxx_sensor);
|
SENSORS_ACTIVATE(co2_sa_kxx_sensor);
|
||||||
#endif
|
}
|
||||||
leds_init();
|
leds_init();
|
||||||
leds_on(LEDS_RED);
|
leds_on(LEDS_RED);
|
||||||
leds_on(LEDS_YELLOW);
|
leds_on(LEDS_YELLOW);
|
||||||
|
Loading…
Reference in New Issue
Block a user