Skip to content

Commit

Permalink
new self test should use baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed May 30, 2024
1 parent ba365f5 commit 1cf9d50
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
### Upcoming

- Fix for Pioreactors page when _no workers are added to the cluster_.
- Fix for UI labels when trying to remove multiple labels from Pioreactors.
#### Highlights
- New /pioreactor/<name> page in the UI for a detailed view of an individual Pioreactor, including a realtime visualization of the Pioreactor!

#### Enhancements
- UI now supports external MQTT broker. This configuration lives in the same place as the exiting MQTT settings: in the config.ini, under `[mqtt]`.
- Added groupings on the Experiment dropdown to organize "Active" and "Inactive" experiments. An active experiment has >= 1 Pioreactor assigned to it.
- UI now supports changing the MQTT broker. This configuration lives in the config.ini, under `[mqtt]`.
- New log topic that partitions by the level. This should make subscribers to the log topic slimmer (like the UI, who would have to accept and filter _all_ messages). Should result in a performance increase.

#### Breaking changes
- New log topic that partitions by the level. This should make subscribers to the log topic slimmer (like the UI, who previosly would have to accept _all_ messages and filter to what they needed). Should result in a performance increase.

#### Bug fixes
- Fix for Pioreactors page when _no workers are added to the cluster_.
- Fix for UI labels when trying to remove labels from Pioreactors.


### 24.5.22
Expand Down
4 changes: 4 additions & 0 deletions pioreactor/actions/self_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ def test_REF_is_lower_than_0_dot_256_volts(
)
adc_reader.tune_adc()

blank_reading = adc_reader.take_reading()
adc_reader.set_offsets(blank_reading) # set dark offset
adc_reader.clear_batched_readings()

with change_leds_intensities_temporarily(
{ir_channel: ir_intensity},
unit=unit,
Expand Down

0 comments on commit 1cf9d50

Please sign in to comment.