Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 28, 2023
1 parent 5931db6 commit 36e1a4d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Upcoming
- Fix experiment profile validation error
- The "Stop" button is always available now in the "Dosing" tab for "Manage all Pioreactors".
- Fix for Ngrok remote access
- Merged the turbidostat automations into one. You can either select target target nOD or target OD, but not both!
- Both "Target OD" and "Target nOD" are available to be changed in the UI.


### 23.11.18
- No more waiting around for growth-rate-calculating to get to "Ready" state
Expand Down
7 changes: 6 additions & 1 deletion pioreactor/actions/pump_calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ def introduction() -> None:
We will dose for a set duration, you'll measure how much volume was expelled, and then record it back here. After doing this a few times, we can construct a calibration line for this pump.
"""
)
click.confirm(click.style("Ready?", fg="green"))
click.confirm(click.style("Proceed?", fg="green"))
click.clear()
click.echo(
"You don't need to place your vial in your Pioreactor. While performing this calibration, keep liquids away from the Pioreactor to keep it safe & dry"
)
click.confirm(click.style("Proceed?", fg="green"))
click.clear()


Expand Down
1 change: 0 additions & 1 deletion pioreactor/actions/self_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ def test_positive_correlation_between_temperature_and_heating(
client, logger: Logger, unit: str, experiment: str
) -> None:
assert is_heating_pcb_present()
assert is_HAT_present()

with TemperatureController(unit, experiment, "only_record_temperature") as tc:
measured_pcb_temps = []
Expand Down

0 comments on commit 36e1a4d

Please sign in to comment.