Hi,
I have some negative numbered value contained in 'char' and i cannot get them displayed properly.
int value;
char toto = -4;
value = value;
lcd->print(value);
SerialUSB.println(value);
Both lcd and serialUSB display 252 !
Displaying an int directly works :
int value;
value = -4;
lcd->print(value);
SerialUSB.println(value);
I then can see a nice -4.
Does anyone have an idea ?
Thanks,
Xavier