Home
last modified time | relevance | path

Searched refs:press (Results 1 – 25 of 154) sorted by relevance

1234567

/Zephyr-latest/samples/subsys/zbus/work_queue/
DREADME.rst28 I: Sensor msg processed by CALLBACK fh1: temp = 10, press = 1, humidity = 100
29 I: Sensor msg processed by CALLBACK fh2: temp = 10, press = 1, humidity = 100
30 I: Sensor msg processed by CALLBACK fh3: temp = 10, press = 1, humidity = 100
31 I: Sensor msg processed by WORK QUEUE handler dh1: temp = 10, press = 1, humidity = 100
32 I: Sensor msg processed by WORK QUEUE handler dh2: temp = 10, press = 1, humidity = 100
33 I: Sensor msg processed by WORK QUEUE handler dh3: temp = 10, press = 1, humidity = 100
34 I: Sensor msg processed by THREAD handler 1: temp = 10, press = 1, humidity = 100
35 I: Sensor msg processed by THREAD handler 2: temp = 10, press = 1, humidity = 100
36 I: Sensor msg processed by THREAD handler 3: temp = 10, press = 1, humidity = 100
37 I: Sensor msg processed by CALLBACK fh1: temp = 20, press = 2, humidity = 200
[all …]
/Zephyr-latest/samples/sensor/ms5837/src/
Dmain.c40 struct sensor_value press; in main() local
44 sensor_channel_get(dev, SENSOR_CHAN_PRESS, &press); in main()
47 temp.val2, press.val1, press.val2); in main()
/Zephyr-latest/samples/subsys/zbus/work_queue/src/
Dmain.c43 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()
Dmessages.h17 uint32_t press; member
Dsensors.c20 sm.press += 1; in peripheral_thread()
/Zephyr-latest/samples/boards/96boards/argonkey/sensors/src/
Dmain.c47 struct sensor_value press, temp; in lsm6dsl_trigger_handler() local
92 sensor_channel_get(dev, SENSOR_CHAN_PRESS, &press); in lsm6dsl_trigger_handler()
98 sprintf(out_str, "press (%f) kPa - temp (%f) deg", (double)out_ev(&press), in lsm6dsl_trigger_handler()
262 struct sensor_value temp, press; in main() local
274 struct sensor_value press, temp; in main() local
293 sensor_channel_get(baro_dev, SENSOR_CHAN_PRESS, &press); in main()
296 temp.val1, temp.val2, press.val1, press.val2); in main()
341 sensor_channel_get(accel_dev, SENSOR_CHAN_PRESS, &press); in main()
347 (double)out_ev(&press), (double)out_ev(&temp)); in main()
/Zephyr-latest/boards/shields/x_nucleo_iks01a1/
Dx_nucleo_iks01a1.overlay15 lps25hb_press_x_nucleo_iks01a1: lps25hb-press@5d {
16 compatible = "st,lps25hb-press";
/Zephyr-latest/boards/st/stm32c0116_dk/
Dstm32c0116_dk.dts55 press-thresholds-mv = <0>;
60 press-thresholds-mv = <670>;
65 press-thresholds-mv = <1320>;
70 press-thresholds-mv = <2010>;
75 press-thresholds-mv = <2650>;
/Zephyr-latest/samples/shields/x_nucleo_iks01a2/sensorhub/src/
Dmain.c30 struct sensor_value temp, press; in main() local
86 sensor_channel_get(lsm6dsl, SENSOR_CHAN_PRESS, &press); in main()
116 sensor_value_to_double(&press)); in main()
/Zephyr-latest/samples/shields/x_nucleo_iks01a1/src/
Dmain.c26 struct sensor_value temp, hum, press; in main() local
87 sensor_channel_get(lps25hb, SENSOR_CHAN_PRESS, &press); in main()
108 sensor_value_to_double(&press)); in main()
/Zephyr-latest/samples/modules/canopennode/
DREADME.rst49 Pressing the button labelled ``SW3`` will increment the button press
68 Pressing the button labelled ``SW3`` will increment the button press
87 Pressing the button labelled ``USER`` will increment the button press counter
106 Pressing the button labelled ``USER`` will increment the button press counter
331 press counter) can be accomplished using the following Python code:
349 button = node.sdo['Button press counter']
357 # Map TPDO 1 to transmit the button press counter on changes
359 node.tpdo[1].add_variable('Button press counter')
367 # Reset button press counter
373 print("Button press counter: {}".format(node.tpdo['Button press counter'].phys))
[all …]
/Zephyr-latest/boards/shields/x_nucleo_iks01a2/
Dx_nucleo_iks01a2.overlay23 lps22hb_press_x_nucleo_iks01a2: lps22hb-press@5d {
24 compatible = "st,lps22hb-press";
/Zephyr-latest/boards/arduino/nano_33_ble/
Darduino_nano_33_ble_nrf52840_sense.dts31 lps22hb: lps22hb-press@5c {
32 compatible = "st,lps22hb-press";
/Zephyr-latest/samples/shields/x_nucleo_iks01a2/standard/src/
Dmain.c26 struct sensor_value temp1, temp2, hum, press; in main() local
119 sensor_channel_get(lps22hb, SENSOR_CHAN_PRESS, &press); in main()
143 sensor_value_to_double(&press)); in main()
/Zephyr-latest/samples/sensor/lsm6dsl/src/
Dmain.c35 static struct sensor_value press, temp; in lsm6dsl_trigger_handler() local
61 sensor_channel_get(dev, SENSOR_CHAN_PRESS, &press); in lsm6dsl_trigger_handler()
85 press_out = press; in lsm6dsl_trigger_handler()
/Zephyr-latest/boards/espressif/esp32s3_eye/
Desp32s3_eye_procpu.dts53 press-thresholds-mv = <2800>;
58 press-thresholds-mv = <1920>;
63 press-thresholds-mv = <350>;
68 press-thresholds-mv = <800>;
/Zephyr-latest/samples/shields/x_nucleo_iks01a3/sensorhub/src/
Dmain.c147 struct sensor_value temp2, press; in main() local
202 sensor_channel_get(lsm6dso, SENSOR_CHAN_PRESS, &press); in main()
248 sensor_value_to_double(&press)); in main()
/Zephyr-latest/samples/boards/nxp/mimxrt1060_evk/system_off/
DREADME.rst14 * Turn the system off after enabling wakeup through a button press, and
56 Entering system off; press GPIO_5 to restart sooner
/Zephyr-latest/samples/sensor/bme280/
DREADME.rst143 temp: 20.260000; press: 99.789019; humidity: 46.458984
144 temp: 20.260000; press: 99.789480; humidity: 46.424804
145 temp: 20.250000; press: 99.789246; humidity: 46.423828
160 temp: 20.150000; press: 99.857675; humidity: 46.447265
161 temp: 20.150000; press: 99.859121; humidity: 46.458984
162 temp: 20.150000; press: 99.859234; humidity: 46.469726
/Zephyr-latest/samples/boards/ti/cc13x2_cc26x2/system_off/
DREADME.rst16 * Turn the system off after enabling wakeup through a button press
63 Entering system off (SHUTDOWN); press BUTTON1 to restart
/Zephyr-latest/boards/rakwireless/rak5010/
Drak5010_nrf52840.dts101 lps22hb-press@5c {
102 compatible = "st,lps22hb-press";
/Zephyr-latest/samples/shields/x_nucleo_53l0a1/
DREADME.rst13 other, press the button ``sw0``.
31 To switch from one mode to another, press the button ``sw0``
/Zephyr-latest/boards/innblue/innblue21/
Dinnblue21_common.dtsi132 lps22hb-press@5c {
133 compatible = "st,lps22hb-press";
/Zephyr-latest/boards/innblue/innblue22/
Dinnblue22_common.dtsi135 lps22hb-press@5c {
136 compatible = "st,lps22hb-press";
/Zephyr-latest/boards/croxel/croxel_cx1825/
Dcroxel_cx1825_nrf52840.dts107 lps22hb: lps22hb-press@5c {
108 compatible = "st,lps22hb-press";

1234567