创客百科

姿势共享,有节操无门槛参与的创客百科,创客动力之源 \ (^_^) /

用户工具

站点工具


en:arduino:libraries:liquidcrystalcreatechar

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

en:arduino:libraries:liquidcrystalcreatechar [2016/12/25 22:15] (当前版本)
行 1: 行 1:
 +[[en:​arduino:​libraries:​liquidcrystal|LiquidCrystal]]
 +====== createChar() ======
  
 +
 +===== Description =====
 +
 +Create a custom character (gylph) for use on the LCD. Up to eight characters of 5x8 pixels are supported (numbered 0 to 7). The appearance of each custom character is specified by an array of eight bytes, one for each row. The five least significant bits of each byte determine the pixels in that row. To display a custom character on the screen, write() its number.
 +===== Syntax =====
 +
 +lcd.createChar(num,​ data)
 +===== Parameters =====
 +
 +lcd: a variable of type LiquidCrystal
 +
 +num: which character to create (0 to 7)
 +
 +data: the character'​s pixel data
 +===== Example =====
 +<code cpp>
 +#include <​LiquidCrystal.h>​
 +
 +LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
 +
 +byte smiley[8] = {
 +  B00000,
 +  B10001,
 +  B00000,
 +  B00000,
 +  B10001,
 +  B01110,
 +  B00000,
 +};
 +
 +void setup() {
 +  lcd.createChar(0,​ smiley);
 +  lcd.begin(16,​ 2);  ​
 +  lcd.write(0);​
 +}
 +
 +void loop() {}
 +</​code>​
 +
 +[[en:​arduino:​libraries|Reference Home]]
en/arduino/libraries/liquidcrystalcreatechar.txt · 最后更改: 2016/12/25 22:15 (外部编辑)