Hi, hätte mir einer einen kleinen Beispielcode für 
 
	int tf_oled_128x64_v2_write_pixels(TF_OLED128x64V2 *oled_128x64_v2, uint8_t x_start, uint8_t y_start, uint8_t x_end, uint8_t y_end, const bool *pixels, uint16_t pixels_length)
 
	Text schreiben funktioniert.
 
	Ich komme nur nicht mit dieser Funktion nicht klar.
 
	Danke
 
	 
 
                // Draw checkerboard pattern
                int row, column;
                bool pixels[HEIGHT * WIDTH];
                for (row = 0; row < HEIGHT; row++) {
                    for (column = 0; column < WIDTH; column++) {
                        pixels[row * WIDTH + column] = (row / 8) % 2 == (column / 8) % 2;
                    }
                }
                tf_oled_128x64_v2_write_pixels(&oled, 0, 0, WIDTH-1, HEIGHT-1, pixels, HEIGHT*WIDTH);
            //---------------------------------------------------------  
	 
 
	Mit dem Beispiel schmiert der ESP ab.