Hello I am new to most coding and i am writing code onto PSoC4 creator for PSoC 3 chip that uses sprintf to display a string to LCD but my function looks like
sprintf(line1Str,"Local T" ); //TOP row of LCD
sprintf(line2Str,"TL=%.1f", CurrentTemp ) //Bottom row of LCD
My problem is that i want to be able to display the % sign in this as well as floating point. I have tried the special character stuff like Char38 and so forth and leaving white space and such but it seams to skip when i have this style of format. can anyone help me?