Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jul 25, 2023
1 parent 329e5e5 commit ce2c712
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
### Upcoming

- Using builtin PID controller logic, instead of a library. This shouldn't require any updates to PID code or parameters.
- Better error handling when the PioreactorUI API can't be reached.
- Some initial support for Basic Auth in the PioreactorUI
- improved sensitivity of self-test `test_REF_is_in_correct_position`.
- executing experiment profiles now check for required plugins.
- executing experiment profiles now checks for required plugins.
- `pio rm` now asks for confirmation before executing.
- Some minor noise reduction in OD reading job.
- Plugins can be built with a flag file LEADER_ONLY to only be installed on the leader Pioreactor.
- **Breaking**: Light/Dark cycle LED automation uses minutes instead of hours!
- **Breaking**: Light/Dark cycle LED automation uses minutes instead of hours now!

### 23.6.27

Expand Down
4 changes: 0 additions & 4 deletions config.dev.ini
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,3 @@ rate_std=0.05
[motor_driver]
initial_duty_cycle=10
hz=20


[ui_basic_auth]
api_key=YWdlbnQwMDc6cmFzcGJlcnJ5
2 changes: 1 addition & 1 deletion pioreactor/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def emit(self, record) -> None:
publish_to_pioreactor_cloud("reported_errors", data_str=payload)

# if Python exits too quickly, the last msg might never make it to the broker.
mqtt_msg.wait_for_publish(timeout=1)
mqtt_msg.wait_for_publish(timeout=2)

def close(self) -> None:
self.client.loop_stop()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"DAC43608==0.2.7",
"TMP1075==0.2.1",
"rpi-hardware-pwm==0.1.4",
"plotext>=5.2.8",
"plotext==5.2.8",
]

setup(
Expand Down

0 comments on commit ce2c712

Please sign in to comment.