Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jun 22, 2023
1 parent da8c718 commit 1e7a892
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion developer-guide/01-introduction.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Introduction
title: Introduction for developers
slug: /introduction
---

Expand Down
2 changes: 1 addition & 1 deletion developer-guide/07-Plugins/03-plugin-as-python-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ setup(
url="<A HOMEPAGE>",
packages=find_packages(),
include_package_data=True,
install_requires=[], # PROVIDE OTHER PYTHON REQUIREMENTS
install_requires=[], # PROVIDE OTHER PYTHON REQUIREMENTS, ex: "pioreactor>=23.6.0", "numpy>=1.0"
entry_points={
"pioreactor.plugins": "<PLUGIN_NAME> = <PLUGIN_NAME>"
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Changelog() {
}, [])

return (
<Layout title="Changelog">
<Layout title="Changelog" description="The software changelog for the Pioreactor system">
<header>
<h1 style={{
display: 'flex',
Expand Down
2 changes: 1 addition & 1 deletion user-guide/01-getting-started/00-gettingstarted.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Introduction
title: Assembly introduction
slug: /getting-started
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This is optional, but can really help stirring performance. Creating a stirring

-----

<AssemblyInstructionBlock title="Calibrating the stirring on the UI site" images={["user-guide/calibrate.png","user-guide/calibrate_stirring.png"]}>
<AssemblyInstructionBlock title="Calibrating the stirring in the UI" images={["user-guide/calibrate.png","user-guide/calibrate_stirring.png"]}>

1. Start by filling a Pioreactor vial about 3/4th with water, and place the stirbar inside. Close with lid. Place into the Pioreactor.
2. From the web interface, in _Pioreactors_, find the Pioreactor you wish to calibrate. Click _Calibrate_.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Supplying auxiliary power to the Pioreactor's PWM channels
title: Supplying more power to the PWM channels
slug: /external-power
---

Expand Down
2 changes: 1 addition & 1 deletion user-guide/30-Advanced/00-accessing-raspberry-pi.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ When typing in the password, it may not show up as you type (this is a security
:::


![](/img/experiments/turbidostat/ssh_into_unit.png)
![A computer console with `ssh [email protected]` typed in, and the resulting active console on the Raspberry Pi.](/img/experiments/turbidostat/ssh_into_unit.png)

If successful, try entering `pio blink` - your Pioreactor's blue LED should starting blinking. See [more commands here](/user-guide/cli).

Expand Down
1 change: 1 addition & 0 deletions user-guide/30-Advanced/01-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The leader computer interacts with the worker computers using the `pios` command
* `pios sync-configs` deploy the config.ini files to workers.
* `pios install-plugin <plugin name>` will install the plugin on each worker _and_ the leader.
* `pios reboot` will reboot all workers in the cluster
* `pios cp <filepath>` will copy (and overwrite) `filepath` on the leader to all the workers.

:::tip
In each of the above commands, specific workers can be invoked with `--units` (which can be used multiple times. Ex: `pios run stirring --units 1 --units 2`.
Expand Down

0 comments on commit 1e7a892

Please sign in to comment.