mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Serial.println() now sends '\r', '\n' (instead of just '\n')
This commit is contained in:
@ -101,6 +101,7 @@ void HardwareSerial::print(long n, int base)
|
||||
|
||||
void HardwareSerial::println(void)
|
||||
{
|
||||
print('\r');
|
||||
print('\n');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user