Skip to content

Commit

Permalink
Added the correct label to the sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
dyka3773 committed Jan 19, 2024
1 parent 6c5033f commit 2d28f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ground Station/dropstar_gui/controllers/figures.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ async def get_temp_plot(img: io.BytesIO) -> None:
logging.debug(f"Sensor 2 data: {sensor2_data}")
logging.debug(f"Sensor 3 data: {sensor3_data}")

ax.plot(*sensor1_data, label="Sensor 1")
ax.plot(*sensor2_data, label="Sensor 2")
ax.plot(*sensor1_data, label="Right Sensor")
ax.plot(*sensor2_data, label="Left Sensor")
ax.plot(*sensor3_data, label="Sound Card")
ax.set_title("Temperature Plot")
ax.set_xlabel("Time (s)")
Expand Down

0 comments on commit 2d28f22

Please sign in to comment.