本文整理汇总了C++中Adafruit_RGBLCDShield::print方法的典型用法代码示例。如果您正苦于以下问题:C++ Adafruit_RGBLCDShield::print方法的具体用法?C++ Adafruit_RGBLCDShield::print怎么用?C++ Adafruit_RGBLCDShield::print使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_RGBLCDShield
的用法示例。
在下文中一共展示了Adafruit_RGBLCDShield::print方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: denaturization
void LCDScreen::denaturization()
{
lcd.clear();
lcd.setCursor( 0, 0 );
lcd.print("Denaturization? ");
lcd.setCursor( 0, 1 );
lcd.print("Yes No");
lcd.setCursor( 0, 1 );
lcd.blink();
uint8_t buttons;
while(true){
buttons = lcd.readButtons();
if (buttons & BUTTON_LEFT){
lcd.setCursor( 0, 1 );
denat = 1;
}
if (buttons & BUTTON_RIGHT){
lcd.setCursor( 8, 1 );
denat = 0;
}
if (buttons & BUTTON_SELECT){
lcd.noBlink();
break;
}
}
}
示例2: 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 );
}
示例3: dispUserPrefCycles
void LCDScreen::dispUserPrefCycles()
{
lcd.clear();
lcd.setCursor( 0, 0 );
lcd.print( "# of cycles: " );
lcd.setCursor( 0, 15 );
lcd.print( maxCycles );
}
示例4: finalMess
void LCDScreen::finalMess()
{
lcd.clear();
lcd.home();
lcd.print( "PCR complete." );
lcd.setCursor( 0, 1 );
lcd.print( "RESET to cont." );
}
示例5: dispUserPrefHighLow
void LCDScreen::dispUserPrefHighLow()
{
lcd.clear();
lcd.home();
lcd.print( "High: " );
lcd.print( tempCeil );
lcd.setCursor( 0, 1 );
lcd.print( "Low: " );
lcd.print( tempFloor );
}
示例6: 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 );
}
示例7: 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 );
}
示例8: 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" );
}
示例9: dispDenatStatus
void LCDScreen::dispDenatStatus(long int currentTime, long int stopTime)
{
int minLeft;
lcd.clear();
lcd.setCursor( 0, 1 );
if(currentTime == 0 && stopTime == 0){
lcd.print("Ramping Up");
}
else{
minLeft = (stopTime - currentTime) / 60000;
lcd.print(minLeft);
lcd.setCursor(2,1);
lcd.print("min left");
}
}
示例10:
void K3NGdisplay::redraw(){
// redraw the screen with the current screen_buffer_live
for (int x = 0;x < (display_columns*display_rows);x++){
lcd.setCursor(Xposition(x),Yposition(x));
if (screen_buffer_attributes_live[x] & ATTRIBUTE_BLINK){ // does this character have the blink attribute
if (current_blink_state){
lcd.print(screen_buffer_live[x]);
} else {
lcd.print(' ');
}
} else {
lcd.print(screen_buffer_live[x]);
}
}
}
示例11: log
void log(String message) {
lcd.setCursor(0, 0);
lcd.print(message + String(" "));
delay(1000);
}