本文整理汇总了C++中LiquidCrystal::display方法的典型用法代码示例。如果您正苦于以下问题:C++ LiquidCrystal::display方法的具体用法?C++ LiquidCrystal::display怎么用?C++ LiquidCrystal::display使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LiquidCrystal
的用法示例。
在下文中一共展示了LiquidCrystal::display方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: one2two
bool one2two() {
bool pressed = button_pressed();
if (pressed) {
lcd.display();
led.on();
lcd.print("Counting!");
}
return pressed;
}
示例2: trigger
void trigger() {
lcd.clear(); // clears the screen and buffer
lcd.setCursor(3,0);
lcd.print("Time is up");
lcd.setCursor(1, 1); // set timer position on lcd for end.
lcd.print("END OF SHOWER");
turnDownServo();
delay(1000);
lcd.display();
}
示例3: calibrate_countdown
void calibrate_countdown(void)
{
lcd.print("Starting rover");
lcd.display();
for (int i = 5; i > 0; i--) {
_count(i*2 - 1);
delay(1000);
_count(i*2 - 2);
humidity();
moisture();
delay(1000);
}
lcd.clear();
}
示例4: LCD_set
void LCD_set(int row, int col, String text, boolean pad)
{
if (!lcd_enabled) {
lcd_enabled = 1;
lcd.display();
}
/* Pad the string to the full 16 characters */
if (pad) {
for (int i = col + text.length(); i < 16; i++) {
text += " ";
}
}
lcd.setCursor(col, row);
lcd.print(text);
lcd_update_time = millis();
}