/Zephyr-Core-3.6.0/samples/sensor/thermometer/ |
D | README.rst | 9 This sample application periodically measures the ambient temperature 36 To build for other boards and ambient temperature sensors, enable the sensor 43 Temperature Alert 46 If the attached sensor supports alerts when the temperature drifts above or 59 Temperature device is 0x525c, name is tcn75a@48 60 Set temperature lower limit to 25.5°C 61 Set temperature upper limit to 26.5°C 63 Temperature is 25.0°C 64 Temperature is 25.0°C 65 Temperature is 25.0°C [all …]
|
/Zephyr-Core-3.6.0/drivers/sensor/ens210/ |
D | Kconfig | 1 # ENS210 Digital Temperature and Humidity sensor configuration options 7 bool "ENS210 Digital Temperature and Humidity sensor" 12 Enable driver for ENS210 Digital Temperature and Humidity sensor. 16 prompt "Temperature measurement mode" 19 Enable/disable temperature measurements and set measurement mode. 21 bool "Disable temperature measurements" 23 bool "Temperature measurements in single shot mode" 25 bool "Temperature measurements in continuous mode"
|
/Zephyr-Core-3.6.0/samples/sensor/tmp108/ |
D | README.rst | 9 This sample writes the temperature to the console once every 3 seconds. There are 26 Temperature is 22.875C 27 Temperature is 22.875C 28 Temperature is 22.875C 29 Temperature is 22.875C 30 Temperature is 22.875C 31 Temperature is 22.875C
|
/Zephyr-Core-3.6.0/drivers/sensor/adt7420/ |
D | Kconfig | 1 # ADT7420 temperature sensor configuration options 7 bool "ADT7420 Temperature Sensor" 13 16-bit Digital I2C Temperature Sensors. 18 int "Temperature hysteresis in °C" 22 Specify the temperature hysteresis in °C for the THIGH, TLOW, 23 and TCRIT temperature limits. 30 The critical overtemperature pin asserts when the temperature
|
D | adt7420.h | 15 #define ADT7420_REG_TEMP_MSB 0x00 /* Temperature value MSB */ 16 #define ADT7420_REG_TEMP_LSB 0x01 /* Temperature value LSB */ 19 #define ADT7420_REG_T_HIGH_MSB 0x04 /* Temperature HIGH setpoint MSB */ 20 #define ADT7420_REG_T_HIGH_LSB 0x05 /* Temperature HIGH setpoint LSB */ 21 #define ADT7420_REG_T_LOW_MSB 0x06 /* Temperature LOW setpoint MSB */ 22 #define ADT7420_REG_T_LOW_LSB 0x07 /* Temperature LOW setpoint LSB */ 23 #define ADT7420_REG_T_CRIT_MSB 0x08 /* Temperature CRIT setpoint MSB */ 24 #define ADT7420_REG_T_CRIT_LSB 0x09 /* Temperature CRIT setpoint LSB */ 25 #define ADT7420_REG_HIST 0x0A /* Temperature HYST setpoint */
|
/Zephyr-Core-3.6.0/drivers/sensor/f75303/ |
D | Kconfig | 1 # F75303 temperature sensor configuration options 7 bool "F75303 Temperature Sensor" 12 Enable the driver for Fintek F75303 Temperature Sensor. 13 This device has three temperature channels - one local (on-chip), 22 Enable the hardware emulator for F75303 Temperature Sensor.
|
/Zephyr-Core-3.6.0/dts/bindings/sensor/ |
D | nxp,kinetis-temperature.yaml | 4 description: NXP Kinetis temperature sensor 6 compatible: "nxp,kinetis-temperature" 13 description: ADC channels for temperature sensor and bandgap voltage 28 Temperature sensor voltage at 25 degrees Celsius in microvolts 34 Temperature sensor slope in microvolts per degree Celsius for 41 Temperature sensor slope in microvolts per degree Celsius for
|
D | ti,ina237.yaml | 50 default: "Temperature, bus, and shunt voltage continuous" 56 - "Temperature Single shot" 57 - "Temperature and bus voltage single shot" 58 - "Temperature and shunt voltage single shot" 59 - "Temperature, bus, and shunt voltage single shot" 64 - "Temperature continuous" 65 - "Temperature and bus voltage continuous" 66 - "Temperature and shunt voltage continuous" 67 - "Temperature, bus, and shunt voltage continuous" 88 Temperature conversion time in microseconds.
|
D | espressif,esp32-temp.yaml | 4 description: ESP32 family temperature sensor node 14 The temperature sensor is available on the ESP32-S2, ESP32-S3, ESP32-C3. 16 Temperature range is defined by the temperature offset which is used during 17 calculation of the output temperature from the measured value.
|
/Zephyr-Core-3.6.0/drivers/sensor/stts751/ |
D | Kconfig | 1 # ST Microelectronics STTS751 temperature sensor 7 bool "STTS751 temperature sensor" 15 Enable driver for STTS751 I2C-based temperature sensor. 61 int "High temperature threshold alarm" 64 HIGH temperature threshold to trigger an alarm 68 int "Low temperature threshold alarm" 71 LOW temperature threshold to trigger an alarm
|
/Zephyr-Core-3.6.0/samples/sensor/hts221/ |
D | README.rst | 3 HTS221: Temperature and Humidity Monitor 8 This sample periodically reads temperature and humidity from the HTS221 9 Temperature & Humidity Sensor and displays it on the console 39 Temperature:25.3 C 41 Temperature:25.3 C 43 Temperature:25.3 C 45 Temperature:25.3 C
|
/Zephyr-Core-3.6.0/samples/sensor/die_temp_polling/ |
D | README.rst | 3 CPU Die Temperature polling 9 This sample periodically reads temperature from the CPU Die 10 temperature sensor and display the results. 30 CPU Die temperature[dietemp]: 22.6 °C 31 CPU Die temperature[dietemp]: 22.8 °C 32 CPU Die temperature[dietemp]: 23.1 °C
|
/Zephyr-Core-3.6.0/drivers/sensor/xmc4xxx_temp/ |
D | Kconfig | 5 bool "XMC4XXX Temperature Sensor" 9 Enable driver for temperature sensor on Infineon XMC4XXX targets. 14 int "Offset adjumstment of the temperature reading" 21 int "Gain adjumstment of the temperature reading" 24 Gain adjustment of the temperature reading. Range [0, 63].
|
/Zephyr-Core-3.6.0/samples/sensor/adt7420/ |
D | README.rst | 3 ADT7420: High accuracy digital I2C temperature sensor 9 This sample application periodically (1Hz) measures the ambient temperature 14 temperature. As soon as the temperature goes outside the window an 54 [0:00:00.011]: temperature 21.203125 Cel 55 [0:00:01.015]: temperature 21.171875 Cel 56 [0:00:02.019]: temperature 21.171875 Cel 57 [0:00:03.023]: temperature 21.187500 Cel 58 [0:00:04.027]: temperature 21.140625 Cel
|
/Zephyr-Core-3.6.0/samples/sensor/thermometer/src/ |
D | main.c | 22 printf("Could not fetch temperature: %d\n", ret); in read_temperature() 28 printf("Could not get temperature: %d\n", ret); in read_temperature() 42 printf("Reading temperature failed: %d\n", ret); in temp_alert_handler() 47 printf("Temperature below threshold: %0.1f°C\n", temp); in temp_alert_handler() 49 printf("Temperature above threshold: %0.1f°C\n", temp); in temp_alert_handler() 51 printf("Error: temperature alert triggered without valid condition\n"); in temp_alert_handler() 73 printf("Temperature device is %p, name is %s\n", dev, dev->name); in main() 78 printf("Failed to read temperature: %d\n", ret); in main() 94 printf("Set temperature lower limit to %0.1f°C\n", low_temp); in main() 107 printf("Set temperature upper limit to %0.1f°C\n", high_temp); in main() [all …]
|
/Zephyr-Core-3.6.0/samples/bluetooth/peripheral_ht/src/ |
D | hts.c | 69 printk("no temperature device; using simulated data\n"); in hts_init() 79 /* Temperature measurements simulation */ in hts_indicate() 84 static double temperature = 20U; in hts_indicate() local 94 temperature++; in hts_indicate() 95 if (temperature == 30U) { in hts_indicate() 96 temperature = 20U; in hts_indicate() 113 temperature = sensor_value_to_double(&temp_value); in hts_indicate() 116 printf("temperature is %gC\n", temperature); in hts_indicate() 118 mantissa = (uint32_t)(temperature * 100); in hts_indicate() 121 htm[0] = 0; /* temperature in celsius */ in hts_indicate()
|
/Zephyr-Core-3.6.0/drivers/sensor/nxp_kinetis_temp/ |
D | Kconfig | 1 # NXP Kinetis temperature sensor configuration options 7 bool "NXP Kinetis Temperature Sensor" 12 Enable driver for NXP Kinetis temperature sensor. 21 ADC resolution to use for the temperature sensor and bandgap 29 ADC oversampling to use for the temperature sensor and
|
/Zephyr-Core-3.6.0/samples/sensor/grove_temperature/ |
D | README.rst | 3 Grove Temperature Sensor 9 This sample application gets the output of the grove temperature sensor and prints it to the 11 and :kconfig:option:`CONFIG_I2C` options are set, the temperature will also be displayed on the 20 * `Grove Temperature Sensor`_ 50 Temperature: 22.90 C 51 Temperature: 22.96 C 52 Temperature: 22.82 C 55 .. _Grove Temperature Sensor: https://wiki.seeedstudio.com/Grove-Temperature_Sensor_V1.2/
|
/Zephyr-Core-3.6.0/drivers/sensor/nxp_tempmon/ |
D | Kconfig | 1 # NXP temperature monitor (TEMPMON) 7 bool "NXP temperature monitor (TEMPMON)" 11 Enable driver for the NXP temperature monitor (TEMPMON). 12 This is used to retrieve on-die operational temperature.
|
/Zephyr-Core-3.6.0/drivers/sensor/lm77/ |
D | Kconfig | 1 # LM77 temperature sensor configuration 7 bool "LM77 Temperature Sensor" 13 Enable driver for the LM77 digital temperature sensor with 2-wire 21 Enable trigger support for the LM77 digital temperature sensor. 24 interrupt mode). After a trigger event the LM77 temperature must be
|
/Zephyr-Core-3.6.0/drivers/sensor/nrf5/ |
D | Kconfig | 1 # nRF5 temperature sensor configuration options 11 of the temperature sensor driver. 14 bool "nRF5 Temperature Sensor" 20 Enable driver for nRF5 temperature sensor.
|
/Zephyr-Core-3.6.0/samples/sensor/ens210/src/ |
D | main.c | 15 struct sensor_value temperature, humidity; in main() local 27 sensor_channel_get(dev, SENSOR_CHAN_AMBIENT_TEMP, &temperature); in main() 28 printk("Temperature: %d.%06d C; Humidity: %d.%06d%%\n", in main() 29 temperature.val1, temperature.val2, in main()
|
/Zephyr-Core-3.6.0/samples/boards/sensortile_box/ |
D | README.rst | 15 - HTS221: ambient temperature and relative humidity 16 - LPS22HH: ambient temperature and atmospheric pressure 19 - STTS751: temperature sensor 65 HTS221: Temperature: 26.4 C 67 LPS22HH: Temperature: 28.4 C 73 STTS751: Temperature: 27.0 C 82 If you move the board around or put your finger on the temperature 83 sensor, you will see the accelerometer, gyro, and temperature values change.
|
/Zephyr-Core-3.6.0/samples/sensor/ens210/ |
D | README.rst | 3 ams ens210 Relative Humidity and Temperature Sensor 10 measure the ambient temperature and relative humidity. 32 Temperature: 28.28881222 C; Humidity: 25.25689737% 33 Temperature: 28.28912472 C; Humidity: 25.25799105% 34 Temperature: 28.28959347 C; Humidity: 25.25760045%
|
/Zephyr-Core-3.6.0/drivers/clock_control/ |
D | nrf_clock_calibration.c | 19 * periodically, calibration may include temperature monitoring, hf XTAL 21 * - cycle - all calibration phases (waiting, temperature monitoring, 50 /* Temperature sensor is only needed if 52 * indicates performing calibration periodically regardless of temperature 64 static int16_t prev_temperature; /* Previous temperature measurement. */ 161 /* Called when HFCLK XTAL is on. Schedules temperature measurement or triggers 186 /* Function reads from temperature sensor and converts to 0.25'C units. */ 202 /* Function determines if calibration should be performed based on temperature 204 * reading temperature from TEMP sensor and compares with last measurement. 208 int16_t temperature = 0; in measure_temperature() local [all …]
|