sgbaird commited on
Commit
8fe8ede
·
1 Parent(s): 07cabd4

Update title in app.py to "Light-mixing Control Panel"

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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("RGB Command and Sensor Data Panel")
9
 
10
  # Description and context
11
  st.markdown(
12
  """
13
- This application accesses a public test demo situated 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 for self-driving labs](https://ac-microcourses.readthedocs.io/en/latest/courses/hello-world/index.html).
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