diff --git a/src/Python/flask/web/app.py b/src/Python/flask/web/app.py index e6bf3f4..b70a311 100644 --- a/src/Python/flask/web/app.py +++ b/src/Python/flask/web/app.py @@ -16,7 +16,7 @@ def index(): @app.route('/move', methods=['POST']) def move(): - mqtt_client.publish("home.commands", "Knop ingedrukt!") + mqtt_client.publish("home/commands", "Knop ingedrukt!") return "Bericht verzonden!" if __name__ == '__main__':