Add Plot Graph to show Bed & Hotend Temps while printing #457
classicrocker883
started this conversation in
Ideas
Replies: 1 comment
-
i just wanted to add the purpose from changing the value 50 to 60 under |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in file --> dwin.cpp
under
// Structs
add
bool htemp = false;
for
void EachMomentUpdate
under
#if HAS_PIDPLOT
add
under
DWIN_HandleScreen()
after
case WaitResponse: HMI_WaitForUser(); break;
add
for
bool IDisPopUp
add
for
void HMI_SaveProcessID
add
after
void DWIN_MPCTuning
add
for
void Draw_Tune_Menu
add
file --> dwin.h
### file --> plot.cpp
to
void PlotClass::Update
add
under
Draw()
change 50 to 60
for (uint8_t i = 1; i < 4; i++) if (i * 60 < frame.w) DWIN_Draw_VLine(Line_Color, i * 60 + frame.x, frame.y, frame.h);
under
Update()
change 50 to 60
if ((grphpoints % 60) == 0)
Beta Was this translation helpful? Give feedback.
All reactions