Update title in app.py to "Light-mixing Control Panel"
Browse files
app.py
CHANGED
@@ -5,15 +5,15 @@ import paho.mqtt.client as mqtt
|
|
5 |
import streamlit as st
|
6 |
|
7 |
# Initialize Streamlit app
|
8 |
-
st.title("
|
9 |
|
10 |
# Description and context
|
11 |
st.markdown(
|
12 |
"""
|
13 |
-
This application accesses a public test demo
|
14 |
For more context, you can refer to this [Colab notebook](https://colab.research.google.com/github/sparks-baird/self-driving-lab-demo/blob/main/notebooks/4.2-paho-mqtt-colab-sdl-demo-test.ipynb)
|
15 |
and the [self-driving-lab-demo project](https://github.com/sparks-baird/self-driving-lab-demo).
|
16 |
-
You may also be interested in the
|
17 |
"""
|
18 |
)
|
19 |
|
|
|
5 |
import streamlit as st
|
6 |
|
7 |
# Initialize Streamlit app
|
8 |
+
st.title("Light-mixing Control Panel")
|
9 |
|
10 |
# Description and context
|
11 |
st.markdown(
|
12 |
"""
|
13 |
+
This application accesses a public test demo located in Toronto, ON, Canada (as of 2024-07-27).
|
14 |
For more context, you can refer to this [Colab notebook](https://colab.research.google.com/github/sparks-baird/self-driving-lab-demo/blob/main/notebooks/4.2-paho-mqtt-colab-sdl-demo-test.ipynb)
|
15 |
and the [self-driving-lab-demo project](https://github.com/sparks-baird/self-driving-lab-demo).
|
16 |
+
You may also be interested in the Acceleration Consortium's ["Hello World" microcourse](https://ac-microcourses.readthedocs.io/en/latest/courses/hello-world/index.html) for self-driving labs.
|
17 |
"""
|
18 |
)
|
19 |
|