Welcome! Log In Create A New Profile

Advanced

teacup and repetierhost problem display temp graphical

Posted by caslor 
teacup and repetierhost problem display temp graphical
May 24, 2017 04:43AM
Hi i had one problem with the teacup firmware and Repetier-host
the program can display the tempature from thermistor

with the help from the repetier-host forum the '' support '' find the problem

''As I said host does not understand it only knows it has set temperature. If you can add a space so that
T:23.25/200.0
becomes
T:23.25 /200.0''


so i have to make teacup has a space between these values in order the program can see them and display them

so which file in teacup is responsible for this function in order to see what i can alter there

thanks in advance
Re: teacup and repetierhost problem display temp graphical
May 24, 2017 05:34AM
ok solved, i find the solution

so i post it here if any one in the future has the same problem




the file that should open in an editor in the teacup folder is the ''temp.c''

and in the line 619-620 :
''
#ifdef REPORT_TARGET_TEMPS
sersendf_P(PSTR("/"));
''

have to add a space before /

be like that :

''
#ifdef REPORT_TARGET_TEMPS
sersendf_P(PSTR(" /"));
''

then compile and will work just fine smiling smiley
Sorry, only registered users may post in this forum.

Click here to login