From 181009604dc282eaec97256e0f699a2b92fc8295 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 27 Jul 2026 17:31:52 +0200 Subject: [PATCH] Removed unused print --- cloud/app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 03602aa..c45672b 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -57,7 +57,6 @@ def cooking_params(): initial_temp_c = float(data.get("ir_initial_temp", 20.0)) # e.g., 4.0 for fridge, -18.0 for freezer microwave_wattage = int(data.get("microwave_wattage", 900)) # e.g., 900W defrost_mode = bool(data.get("defrost_mode", False)) # True for defrost, False for cook/reheat - print("Received cooking parameters request:", data) print("Parsed parameters - Height (cm):", height_cm, "Initial Temp (C):", initial_temp_c, "Microwave Wattage:", microwave_wattage, "Defrost Mode:", defrost_mode) # 1. Handle the Camera Image