i didnt notice this thanks Alot its working now with serial event the same old code i posted here
one Final issue
i read the scale on arduino Mega Serial1 & display the result on Serial monitor
this is a reading from the scale
S S 189.71 g
i have used
Code:
lcdData.replace("N", "");
lcdData.replace("S", "");
lcdData.replace(" ", "");
Im using ATMEGA32 with mighty core on Arduino IDE & displaying on 5 seven segment displays
i get 0.00 on the display
when testing a Float type Var it displays the 5 digits exactly same as the number
Code:
float test = 976.58 ;
sevseg.setNumberF(test, 2);
i think its something about conversion of types
need your help guys
thanks
Johnny