TFT Display 2,8 Zoll 320 x 240 Pixel, ILI9341 mit manuellem Folientaster Screen Seiten wechseln

Hallo,
ich würde gern ARD SHD 2,6TD Arduino Shield - Display 2,8", Touch, 320 x 240 Pixel, ILI9341 mit einem Folientaster an der Mega2560 anschließen.
Es geht darum, dass ich mehrere Seiten von Messwerten einfach mit dem Druckknopf wechseln will in der Reihenfolge z. B. Seite1--drucken--Seite2--drucken---Seite3--drucken-- Seite1 usw..
Das Problem ist, ich weiß gar nicht, wie ich das Beispiel text in mehrere Screens aufteilen soll und nachher mit dem Knopf umschalten.

In dem Beispiel Sketch ist 3-mal Hallo in verschiedenen Farben, leider aber nur auf einer screen.

#include <Adafruit_GFX.h>    // Core graphics library
#include <Adafruit_TFTLCD.h> // Hardware-specific library


#define LCD_CS A3 // Chip Select goes to Analog 3
#define LCD_CD A2 // Command/Data goes to Analog 2
#define LCD_WR A1 // LCD Write goes to Analog 1
#define LCD_RD A0 // LCD Read goes to Analog 0

#define LCD_RESET A4 // Can alternately just connect to Arduino's reset pin


// Assign human-readable names to some common 16-bit color values:
#define	BLACK   0x0000
#define	BLUE    0x001F
#define	RED     0xF800
#define	GREEN   0x07E0
#define CYAN    0x07FF
#define MAGENTA 0xF81F
#define YELLOW  0xFFE0
#define WHITE   0xFFFF

#include <MCUFRIEND_kbv.h>
MCUFRIEND_kbv tft;


int Druckknopf=35;
int Screen1;
int Screen2;
int Screen3;

void setup(void) {
  Serial.begin(9600);
  Serial.println(F("TFT LCD test"));

  pinMode (Druckknopf, INPUT);
  pinMode (Screen1, OUTPUT);
 pinMode (Screen2, OUTPUT);
 pinMode (Screen3, OUTPUT);

#ifdef USE_ADAFRUIT_SHIELD_PINOUT
  Serial.println(F("Using Adafruit 2.4\" TFT Arduino Shield Pinout"));
#else
  Serial.println(F("Using Adafruit 2.4\" TFT Breakout Board Pinout"));
#endif

  Serial.print("TFT size is "); Serial.print(tft.width()); Serial.print("x"); Serial.println(tft.height());

  tft.reset();

  uint16_t identifier = tft.readID();
  if(identifier == 0x9325) {
    Serial.println(F("Found ILI9325 LCD driver"));
  } else if(identifier == 0x9328) {
    Serial.println(F("Found ILI9328 LCD driver"));
  } else if(identifier == 0x4535) {
    Serial.println(F("Found LGDP4535 LCD driver"));
  }else if(identifier == 0x7575) {
    Serial.println(F("Found HX8347G LCD driver"));
  } else if(identifier == 0x9341) {
    Serial.println(F("Found ILI9341 LCD driver"));
  }else if(identifier == 0x7783) {
    Serial.println(F("Found ST7781 LCD driver"));
  }else if(identifier == 0x8230) {
    Serial.println(F("Found UC8230 LCD driver"));  
  }
  else if(identifier == 0x8357) {
    Serial.println(F("Found HX8357D LCD driver"));
  } else if(identifier==0x0101)
  {     
      identifier=0x9341;
       Serial.println(F("Found 0x9341 LCD driver"));
  }else {
    Serial.print(F("Unknown LCD driver chip: "));
    Serial.println(identifier, HEX);
    Serial.println(F("If using the Adafruit 2.8\" TFT Arduino shield, the line:"));
    Serial.println(F("  #define USE_ADAFRUIT_SHIELD_PINOUT"));
    Serial.println(F("should appear in the library header (Adafruit_TFT.h)."));
    Serial.println(F("If using the breakout board, it should NOT be #defined!"));
    Serial.println(F("Also if using the breakout, double-check that all wiring"));
    Serial.println(F("matches the tutorial."));
    identifier=0x9341;
   
  }

  tft.begin(identifier);

 
}
void loop(void) {
   tft.fillScreen(BLACK);
  unsigned long start = micros();
  tft.setCursor(0, 0);
  
   if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen1, HIGH);
     if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen2, HIGH);
       if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen3, HIGH);


 
 Screen1;
   tft.setTextColor(WHITE);    tft.setTextSize(4);
   tft.println("Hello!");
   tft.setCursor(0, 100);
   
 Screen2;
   tft.setTextColor(YELLOW);    tft.setTextSize(5);
   tft.println("Hello!");
   tft.setCursor(0, 200);
   
Screen3;
   tft.setTextColor(RED);    tft.setTextSize(6);
   tft.println("Hello!");
  tft.println();
  tft.println();
  

  delay(10000);
  }

Kann mir jemand helfen:)?
Liebe Grüße

Lies mal bitte diesen Beitrag und dann setze Deinen Code in Codetags.

Gruß Tommy

Zeichne mall wie ist der "Druckknopf" verbunden, ist ein Widerstand zu GND? Wie in dem Beispiel?
https://funduino.de/nr-5-taster-am-arduino
Mach anders verbinde den Taster mit GND, und im setup `

pinMode (Druckknopf, INPUT_PULLUP);

Er wird danach auf LOW abgefragt

if (digitalRead(Druckknopf)==LOW)

Der "Druckknopf" ist verbunden mit 1K Widerstand zu GND. Der Sketch habe, ich geändert aber ich glaube, dass es gar nicht funktioniert. Der Code ist bestimmt falsch. Leider kann ich kein passendes Beispiel im Netz finden.

// IMPORTANT: Adafruit_TFTLCD LIBRARY MUST BE SPECIFICALLY
// CONFIGURED FOR EITHER THE TFT SHIELD OR THE BREAKOUT BOARD.
// SEE RELEVANT COMMENTS IN Adafruit_TFTLCD.h FOR SETUP.
//Technical support:goodtft@163.com

#include <Adafruit_GFX.h>    // Core graphics library
#include <Adafruit_TFTLCD.h> // Hardware-specific library

// The control pins for the LCD can be assigned to any digital or
// analog pins...but we'll use the analog pins as this allows us to
// double up the pins with the touch screen (see the TFT paint example).
#define LCD_CS A3 // Chip Select goes to Analog 3
#define LCD_CD A2 // Command/Data goes to Analog 2
#define LCD_WR A1 // LCD Write goes to Analog 1
#define LCD_RD A0 // LCD Read goes to Analog 0

#define LCD_RESET A4 // Can alternately just connect to Arduino's reset pin

// When using the BREAKOUT BOARD only, use these 8 data lines to the LCD:
// For the Arduino Uno, Duemilanove, Diecimila, etc.:
//   D0 connects to digital pin 8  (Notice these are
//   D1 connects to digital pin 9   NOT in order!)
//   D2 connects to digital pin 2
//   D3 connects to digital pin 3
//   D4 connects to digital pin 4
//   D5 connects to digital pin 5
//   D6 connects to digital pin 6
//   D7 connects to digital pin 7
// For the Arduino Mega, use digital pins 22 through 29
// (on the 2-row header at the end of the board).

// Assign human-readable names to some common 16-bit color values:
#define	BLACK   0x0000
#define	BLUE    0x001F
#define	RED     0xF800
#define	GREEN   0x07E0
#define CYAN    0x07FF
#define MAGENTA 0xF81F
#define YELLOW  0xFFE0
#define WHITE   0xFFFF

#include <MCUFRIEND_kbv.h>
MCUFRIEND_kbv tft;
// If using the shield, all control and data lines are fixed, and
// a simpler declaration can optionally be used:
// Adafruit_TFTLCD tft;

int Druckknopf=35;
int Screen1;
int Screen2;
int Screen3;

void setup(void) {
  Serial.begin(9600);
  Serial.println(F("TFT LCD test"));

  pinMode (Druckknopf, INPUT_PULLUP);
  if (digitalRead(Druckknopf)==LOW)


#ifdef USE_ADAFRUIT_SHIELD_PINOUT
  Serial.println(F("Using Adafruit 2.4\" TFT Arduino Shield Pinout"));
#else
  Serial.println(F("Using Adafruit 2.4\" TFT Breakout Board Pinout"));
#endif

  Serial.print("TFT size is "); Serial.print(tft.width()); Serial.print("x"); Serial.println(tft.height());

  tft.reset();

  uint16_t identifier = tft.readID();
  if(identifier == 0x9325) {
    Serial.println(F("Found ILI9325 LCD driver"));
  } else if(identifier == 0x9328) {
    Serial.println(F("Found ILI9328 LCD driver"));
  } else if(identifier == 0x4535) {
    Serial.println(F("Found LGDP4535 LCD driver"));
  }else if(identifier == 0x7575) {
    Serial.println(F("Found HX8347G LCD driver"));
  } else if(identifier == 0x9341) {
    Serial.println(F("Found ILI9341 LCD driver"));
  }else if(identifier == 0x7783) {
    Serial.println(F("Found ST7781 LCD driver"));
  }else if(identifier == 0x8230) {
    Serial.println(F("Found UC8230 LCD driver"));  
  }
  else if(identifier == 0x8357) {
    Serial.println(F("Found HX8357D LCD driver"));
  } else if(identifier==0x0101)
  {     
      identifier=0x9341;
       Serial.println(F("Found 0x9341 LCD driver"));
  }else {
    Serial.print(F("Unknown LCD driver chip: "));
    Serial.println(identifier, HEX);
    Serial.println(F("If using the Adafruit 2.8\" TFT Arduino shield, the line:"));
    Serial.println(F("  #define USE_ADAFRUIT_SHIELD_PINOUT"));
    Serial.println(F("should appear in the library header (Adafruit_TFT.h)."));
    Serial.println(F("If using the breakout board, it should NOT be #defined!"));
    Serial.println(F("Also if using the breakout, double-check that all wiring"));
    Serial.println(F("matches the tutorial."));
    identifier=0x9341;
   
  }

  tft.begin(identifier);

 
}
void loop(void) {
   tft.fillScreen(BLACK);
  unsigned long start = micros();
  tft.setCursor(0, 0);
  
   if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen1, HIGH);
     if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen2, HIGH);
       if (digitalRead(Druckknopf)==HIGH)
    digitalWrite(Screen3, HIGH);

  pinMode (Screen1, OUTPUT);
 pinMode (Screen2, OUTPUT);
 pinMode (Screen3, OUTPUT);

 
 int Screen1;
   tft.setTextColor(WHITE);    tft.setTextSize(4);
   tft.println("Hello!");
   tft.setCursor(0, 100);
   
int Screen2;
   tft.setTextColor(YELLOW);    tft.setTextSize(5);
   tft.println("Hello!");
   tft.setCursor(0, 200);
   
int Screen3;
   tft.setTextColor(RED);    tft.setTextSize(6);
   tft.println("Hello!");
  tft.println();
  tft.println();
  

  delay(10000);
  }




This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.