Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

how to use itoa???

Status
Not open for further replies.

caramelz

New Member
hi everyone. I'm having problem with itoa. I need to change the value of the V while the "Voltage:" reminds on the LCD. Only the value need to be change.

Code:
char MESS3[]="Voltage:";
char VOLT;
itoa(VOLT,MESS3);
W_ctr_8bit(0x80);
i=0;
while(MESS3[i])
		{
			W_data_8bit(MESS3[i]);
			i++;
		}
W_ctr_8bit(0x8C);
W_data_8bit('V');

W_ctr_8bit(0x88);
 
Status
Not open for further replies.

Latest threads

Back
Top