diff --git a/PlantDashboard/__pycache__/main_dashboard.cpython-313.pyc b/PlantDashboard/__pycache__/main_dashboard.cpython-313.pyc index 6ee3eb6..7a20506 100644 Binary files a/PlantDashboard/__pycache__/main_dashboard.cpython-313.pyc and b/PlantDashboard/__pycache__/main_dashboard.cpython-313.pyc differ diff --git a/PlantDashboard/__pycache__/plant_meteo.cpython-313.pyc b/PlantDashboard/__pycache__/plant_meteo.cpython-313.pyc index 2830156..e9601b5 100644 Binary files a/PlantDashboard/__pycache__/plant_meteo.cpython-313.pyc and b/PlantDashboard/__pycache__/plant_meteo.cpython-313.pyc differ diff --git a/PlantDashboard/main_dashboard.py b/PlantDashboard/main_dashboard.py index ad6476a..57d6a31 100644 --- a/PlantDashboard/main_dashboard.py +++ b/PlantDashboard/main_dashboard.py @@ -244,7 +244,7 @@ class PlantGrowthDashboard: info_frame.pack(fill=tk.X, pady=(8, 0)) self.plant_info_text = tk.Text(info_frame, height=8, width=35, wrap=tk.WORD, - font=('Arial', 8), bg="#000000") + font=('Arial', 8), bg="#000000", fg="white") self.plant_info_text.pack(fill=tk.BOTH, expand=True) # Submit button @@ -371,7 +371,7 @@ class PlantGrowthDashboard: self.ambient_mode.set("controlled") - self.calendar.set_date(date.today()) + self.calendar.selection_set(date.today()) def update_parameter_label(self, param, value): """Update the value label for a specific parameter""" diff --git a/PlantDashboard/public/.DS_Store b/PlantDashboard/public/.DS_Store index bd81130..152eab2 100644 Binary files a/PlantDashboard/public/.DS_Store and b/PlantDashboard/public/.DS_Store differ