/Zephyr-Core-3.4.0/samples/subsys/zbus/work_queue/ |
D | README.rst | 27 I: Sensor msg processed by CALLBACK fh1: temp = 10, press = 1, humidity = 100 28 I: Sensor msg processed by CALLBACK fh2: temp = 10, press = 1, humidity = 100 29 I: Sensor msg processed by CALLBACK fh3: temp = 10, press = 1, humidity = 100 30 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 10, press = 1, humidity = 100 31 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 10, press = 1, humidity = 100 32 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 10, press = 1, humidity = 100 33 I: Sensor msg processed by THREAD handler 1: temp = 10, press = 1, humidity = 100 34 I: Sensor msg processed by THREAD handler 2: temp = 10, press = 1, humidity = 100 35 I: Sensor msg processed by THREAD handler 3: temp = 10, press = 1, humidity = 100 36 I: Sensor msg processed by CALLBACK fh1: temp = 20, press = 2, humidity = 200 [all …]
|
/Zephyr-Core-3.4.0/samples/sensor/ens210/src/ |
D | main.c | 15 struct sensor_value temperature, humidity; in main() local 26 sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity); in main() 30 humidity.val1, humidity.val2); in main()
|
/Zephyr-Core-3.4.0/samples/sensor/ti_hdc/src/ |
D | main.c | 27 struct sensor_value temp, humidity; in main() local 34 sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity); in main() 38 temp.val1, temp.val2, humidity.val1, humidity.val2); in main()
|
/Zephyr-Core-3.4.0/samples/sensor/bme680/src/ |
D | main.c | 15 struct sensor_value temp, press, humidity, gas_res; in main() local 30 sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity); in main() 35 humidity.val1, humidity.val2, gas_res.val1, in main()
|
/Zephyr-Core-3.4.0/samples/sensor/bme280/src/ |
D | main.c | 47 struct sensor_value temp, press, humidity; in main() local 52 sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity); in main() 56 humidity.val1, humidity.val2); in main()
|
/Zephyr-Core-3.4.0/samples/subsys/zbus/work_queue/src/ |
D | main.c | 43 msg->temp, msg->press, msg->humidity); in fh1_cb() 53 msg->temp, msg->press, msg->humidity); in fh2_cb() 63 msg->temp, msg->press, msg->humidity); in fh3_cb() 87 sens->handle, msg.temp, msg.press, msg.humidity); in wq_dh_cb() 142 msg.temp, msg.press, msg.humidity); in thread_handler1_task() 161 msg.temp, msg.press, msg.humidity); in thread_handler2_task() 180 msg.temp, msg.press, msg.humidity); in thread_handler3_task()
|
D | messages.h | 18 uint32_t humidity; member
|
D | sensors.c | 22 sm.humidity += 100; in peripheral_thread()
|
/Zephyr-Core-3.4.0/samples/sensor/wsen_hids/src/ |
D | main.c | 17 struct sensor_value humidity, temperature; in process_sample() local 24 if (sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity) < 0) { in process_sample() 38 LOG_INF("Humidity: %.1f %%", sensor_value_to_double(&humidity)); in process_sample()
|
/Zephyr-Core-3.4.0/samples/sensor/dht/src/ |
D | main.c | 51 struct sensor_value humidity; in main() local 57 &humidity); in main() 67 sensor_value_to_double(&humidity)); in main()
|
/Zephyr-Core-3.4.0/drivers/sensor/th02/ |
D | th02.c | 50 uint16_t humidity = 0U; in get_humi() local 59 humidity = read8(i2c, TH02_REG_DATA_H) << 8; in get_humi() 60 humidity |= read8(i2c, TH02_REG_DATA_L); in get_humi() 61 humidity >>= 4; in get_humi() 63 return humidity; in get_humi()
|
/Zephyr-Core-3.4.0/drivers/sensor/sht4x/ |
D | Kconfig | 1 # SHT4x temperature and humidity sensor configuration options 13 Enable driver for SHT4x temperature and humidity sensors.
|
/Zephyr-Core-3.4.0/drivers/sensor/ti_hdc/ |
D | Kconfig | 1 # TI_HDC temperature and humidity sensor configuration options 12 Enable driver for TI temperature and humidity sensors.
|
/Zephyr-Core-3.4.0/drivers/sensor/shtcx/ |
D | Kconfig | 1 # SHTCX temperature and humidity sensor configuration options 13 Enable driver for SHTC1 and SHTC3 temperature and humidity sensors.
|
/Zephyr-Core-3.4.0/drivers/sensor/ens210/ |
D | Kconfig | 32 Enable/disable relative humidity measurements and set measurement mode. 34 bool "Disable relative humidity measurements" 36 bool "Relative humidity measurements in single shot mode" 38 bool "Relative humidity measurements in continuous mode"
|
/Zephyr-Core-3.4.0/samples/sensor/sht3xd/ |
D | README.rst | 3 SHT3XD: High accuracy digital I2C humidity sensor 10 temperature and humidity. The result is written to the console. 16 … sensor <https://www.sensirion.com/en/environmental-sensors/humidity-sensors/digital-humidity-sens…
|
/Zephyr-Core-3.4.0/drivers/sensor/ti_hdc20xx/ |
D | Kconfig | 1 # TI_HDC20XX temperature and humidity sensor configuration options 13 Enable driver for TI HDC20XX temperature and humidity sensors
|
/Zephyr-Core-3.4.0/samples/sensor/bme280/ |
D | README.rst | 13 https://www.bosch-sensortec.com/products/environmental-sensors/humidity-sensors-bme280/ 15 The sample periodically reads temperature, pressure and humidity data from the 114 temp: 20.260000; press: 99.789019; humidity: 46.458984 115 temp: 20.260000; press: 99.789480; humidity: 46.424804 116 temp: 20.250000; press: 99.789246; humidity: 46.423828 131 temp: 20.150000; press: 99.857675; humidity: 46.447265 132 temp: 20.150000; press: 99.859121; humidity: 46.458984 133 temp: 20.150000; press: 99.859234; humidity: 46.469726
|
/Zephyr-Core-3.4.0/drivers/sensor/si7006/ |
D | si7006.c | 28 uint16_t humidity; member 52 si_data->humidity = (hum[0] << 8) | hum[1]; in si7006_get_humidity() 130 int32_t relative_humidity = (((125 * (int32_t)si_data->humidity) in si7006_channel_get()
|
/Zephyr-Core-3.4.0/drivers/sensor/bme680/ |
D | Kconfig | 1 # BME680 temperature, pressure, humidity and gas sensor configuration options 15 Enable driver for BME680 I2C- or SPI- based temperature, pressure, humidity and gas sensor. 56 prompt "BME680 humidity oversampling" 59 Select humidity oversampling for the BME680 sensor. Higher values
|
/Zephyr-Core-3.4.0/samples/sensor/sgp40_sht4x/ |
D | README.rst | 3 SGP40 and SHT4X: High accuracy digital I2C humidity sensor and multipixel gas sensor 9 This sample application periodically measures the ambient temperature, humidity 26 …- `SHT4X sensor <https://www.sensirion.com/en/environmental-sensors/humidity-sensors/humidity-sens…
|
/Zephyr-Core-3.4.0/samples/sensor/ccs811/src/ |
D | main.c | 137 struct sensor_value humidity = { CONFIG_APP_ENV_HUMIDITY }; in main() local 139 rc = ccs811_envdata_update(dev, &temp, &humidity); in main() 141 temp.val1, humidity.val1, rc); in main()
|
/Zephyr-Core-3.4.0/drivers/sensor/wsen_hids/ |
D | Kconfig | 5 bool "WSEN-HIDS humidity and temperature sensor" 12 Enable driver for the WSEN-HIDS I2C/SPI-based humidity sensor with integrated
|
/Zephyr-Core-3.4.0/drivers/sensor/ds18b20/ |
D | Kconfig | 1 # DS18B20 temperature and humidity sensor configuration options
|
/Zephyr-Core-3.4.0/drivers/sensor/hts221/ |
D | Kconfig | 5 bool "HTS221 temperature and humidity sensor" 13 Enable driver for HTS221 I2C/SPI-based temperature and humidity sensor.
|