We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f42ec4 commit 5fc7208Copy full SHA for 5fc7208
1 file changed
tests/scenarios/wsen_hids.yaml
@@ -136,6 +136,18 @@ tests:
136
expect_true: true
137
mode: [mock]
138
139
+ - name: "Read one-shot after power cycle (hardware)"
140
+ action: script
141
+ script: |
142
+ from time import sleep_ms
143
+ dev.power_off()
144
+ sleep_ms(50)
145
+ dev.power_on()
146
+ h, t = dev.read_one_shot()
147
+ result = 10.0 < h < 90.0 and 10.0 < t < 50.0
148
+ expect_true: true
149
+ mode: [hardware]
150
+
151
- name: "Temperature with offset"
152
action: script
153
script: |
0 commit comments