当前位置: 首页>>代码示例>>C++>>正文


C++ LiquidCrystal::display方法代码示例

本文整理汇总了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;
}
开发者ID:hithwen,项目名称:statemachine,代码行数:9,代码来源:lcdexample.cpp

示例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();
}
开发者ID:esmondchuah,项目名称:urbanSolutionHackathon2016,代码行数:12,代码来源:smart-shower-system-arduino.cpp

示例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();
}
开发者ID:Tnek,项目名称:falconia-2,代码行数:14,代码来源:rover.cpp

示例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();
}
开发者ID:AMPWorks,项目名称:ArduinoLibs,代码行数:18,代码来源:LCD.cpp


注:本文中的LiquidCrystal::display方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。