本文整理汇总了C++中Adafruit_RGBLCDShield::home方法的典型用法代码示例。如果您正苦于以下问题:C++ Adafruit_RGBLCDShield::home方法的具体用法?C++ Adafruit_RGBLCDShield::home怎么用?C++ Adafruit_RGBLCDShield::home使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_RGBLCDShield
的用法示例。
在下文中一共展示了Adafruit_RGBLCDShield::home方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: updateArrow
void LCDScreen::updateArrow( double temp )
{
lcd.home();
lcd.print( tempFloor );
if ( temp < tempFloor ) temp = tempFloor;
int n; //number of spaces to create
if ( tempFloor > 99 && tempCeil > 99 ) n = 9;
else if ( tempFloor > 99 && tempCeil <= 99 ) n = 10;
else if ( tempFloor <= 99 && tempCeil > 99 ) n = 10;
else n = 11;
int newTemp = map( temp, tempFloor, tempCeil, 0, n );
for ( int o = 0; o < newTemp; o++ )
{
lcd.print( "-" );
}
lcd.print( ">" );
for ( int o = 0; o < ( n - newTemp); o++ )
{
lcd.print( " " );
}
lcd.print( tempCeil );
}
示例2: finalMess
void LCDScreen::finalMess()
{
lcd.clear();
lcd.home();
lcd.print( "PCR complete." );
lcd.setCursor( 0, 1 );
lcd.print( "RESET to cont." );
}
示例3: dispUserPrefHighLow
void LCDScreen::dispUserPrefHighLow()
{
lcd.clear();
lcd.home();
lcd.print( "High: " );
lcd.print( tempCeil );
lcd.setCursor( 0, 1 );
lcd.print( "Low: " );
lcd.print( tempFloor );
}
示例4: setup
void LCDScreen::setup() {
lcd.begin( 16, 2 );
lcd.home();
lcd.print( "PCR V.2 - O.V.L.");
lcd.setCursor( 0, 1 );
lcd.print( "SELECT to cont." );
waitForSelect();
delay( 500 );
setUserInputs();
delay( 500 );
}
示例5: displayInitialStatus
void LCDScreen::displayInitialStatus( double temp, int current_cycle ) {
lcd.clear();
lcd.home();
updateArrow( temp );
lcd.setCursor( 0, 1 );
lcd.print( "Cycle no. " );
lcd.print( current_cycle );
lcd.print( "/" );
lcd.print( maxCycles );
}
示例6: printError
void LCDScreen::printError( int mess )
{
lcd.clear();
lcd.home();
String message;
if ( mess == 1 ) { message = "ERR: Overheating"; }
else if ( mess < 1 ) { message = "ERR: Not ramping"; }
else { message = "ERR: wrap failed"; }
lcd.print( message );
lcd.setCursor( 0, 1 );
lcd.print( "Check hardware" );
}
示例7: main
int main(int argc, char *argv[])
{
Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield();
lcd.begin(16, 2);
lcd.setBacklight(RED);
lcd.clear();
lcd.home();
lcd.setCursor(0,0);
lcd.myPrint("Hello World");
int count = 0;
for(int i = 0; i < 20; i++){
usleep(300000);
if(count < 5){
lcd.scrollDisplayRight();
}
count++;
if(count > 5){
lcd.scrollDisplayLeft();
}
if(count > 9) count = 0;
}
uint8_t buttons = lcd.readButtons();
while(!(buttons & BUTTON_SELECT)){
if (buttons) {
if (buttons & BUTTON_LEFT) {
lcd.scrollDisplayLeft();
lcd.setBacklight(GREEN);
}
if (buttons & BUTTON_RIGHT) {
lcd.scrollDisplayRight();
lcd.setBacklight(TEAL);
}
}
buttons = lcd.readButtons();
usleep(90000);
}
return 0;
}