Added route for semi-automatic mode

This commit is contained in:
SanjayramVempati 2023-02-05 08:40:25 -05:00 committed by GitHub
parent b63796fec6
commit 4615f4d5f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
app.py
View File

@ -24,6 +24,10 @@ def tw():
def auto():
return render_template("auto.html")
@app.route("/semi")
def semi():
return render_template("semi.html")
#Modify to get data
@app.route('/api/datapoint')
def api_datapoint():