diff --git a/bluewind/views.py b/bluewind/views.py index bd14bc3..8618438 100755 --- a/bluewind/views.py +++ b/bluewind/views.py @@ -24,7 +24,6 @@ async def setSpeed(speed): @app.route("/speed/increase", methods=["POST"]) async def setIncreaseSpeed(): - print("increase speed") currentSpeed = await fan.readSpeed() newSpeed = 0 if currentSpeed < 25: @@ -42,7 +41,6 @@ async def setIncreaseSpeed(): @app.route("/speed/decrease", methods=["POST"]) async def setDecreaseSpeed(): - print("decrease speed") currentSpeed = await fan.readSpeed() newSpeed = 0 if currentSpeed == 100: