test code issue #74

This commit is contained in:
olikraus 2016-11-05 17:37:45 +01:00
parent e4f2a71e62
commit 55b58d5456
2 changed files with 11 additions and 1 deletions

View File

@ -46,5 +46,8 @@ https://github.com/olikraus/u8g2 ChangeLog
* Added japanese fonts (issue 65)
2016-xx-xx v2.6.x olikraus@gmail.com
* Added support for UC1610 (DOGXL160)
* Use Wire.setClock() for improved HW I2C performance (issue 79)
* Use Wire.setClock() for improved HW I2C performance (issue 79). This
requires Arduino IDE 1.6.0 or higher.
* Added Thai Fonts (issue 73)
* Added support for "\n" in the print function for u8x8 (issue 74)

View File

@ -180,6 +180,13 @@ void loop(void)
u8x8.draw2x2String(0, 5, "Big");
delay(3000);
pre();
u8x8.print("print \\n\n");
delay(500);
u8x8.println("println");
delay(500);
u8x8.println("done");
delay(1500);
}