Mega +12864B v2 + glcd выводит смайлики, а тект не получается вывести
- Войдите на сайт для отправки комментариев
Чт, 14/07/2016 - 06:43
загружаю типовые примеры из библиотеки. на какихто выводит смайлики на большинстве молчит
// include the library header
#include <glcd.h>
// include the Fonts
#include <fonts/allFonts.h>
void setup() {
// Initialize the GLCD
GLCD.Init();
// Select the font for the default text area
GLCD.SelectFont(System5x7);
GLCD.print("hello, world!");
}
void loop() {
// (note: line 1 is the second row, since counting begins with 0):
GLCD.CursorTo(0, 1);
// print the number of seconds since reset:
GLCD.print(millis()/1000);