Hallo,
How can I enter Euro sign with Serial.print?
Thx
Rita
Hallo,
How can I enter Euro sign with Serial.print?
Thx
Rita
or to make it really simple
void setup() { Serial.begin(9600); } Serial.println("Printing the Euro symbol"); } int thisByte = 128; void loop() { Serial.write(thisByte); delay(1000); }
Hallo Peter ,
Thanks for reply.
Rita
Hallo Peter ,
Thanks for reply.
Rita