LCD表示のAPI - MtLord/KRP_Central_micon GitHub Wiki
有機EL型LCD「SO2002AWYB-UC-WB-U」を操作するためのライブラリである。セントラルにあるLCDと書いてあるコネクタに繋ぐ。裏面にピンアサインが書いてある。1行あたり20文字。
インスタンス | 関数名 | 型 | 説明 | 単位 | 備考 |
---|---|---|---|---|---|
Lcd | oled_init() | void | LCDの初期化 | ||
Lcd | oled_clear() | void | 表示している文字をすべて消す | ||
Lcd | oled_puts(char *strings) | void | 文字列を表示する | 例:oled_puts((char *)"CAN init OK") | |
Lcd | oled_setcursor(int row,int column) | void | 文字を表示する開始位置を指定する | row:行指定0-1 column:列指定0-19 |