Дубль подключение экрана.

dezhavi
Offline
Зарегистрирован: 26.12.2015

Добрый день. 
Помогите плиз.
Ардуину купил еще в 2017. Но потом подзабросил. 
Хочу подключить монитор с тачем .
Пытаюсь вывести что-то на монитор и не получается правильное вывести изображение.

Контроллер, для монитора. ITDB02 
https://wiki.iteadstudio.com/ITDB02_Arduino_MEGA_Shield#Download - вот такой
Монитор - 

Установил в студии библиотеку UTFT - вот отсюда 

http://www.rinkydinkelectronics.com/library.php?id=51

Скетч заливается, но изображение на мониторе не такое, как в примере.
Просто цветные полоски,  которые которые могут менятся.

При компиляции есть варнинги 
 

01/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino: In function 'void loop()':
02/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:61:68: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
03   myGLCD.print("* Universal Color TFT Display Library *", CENTER, 1);
04                                                                    ^
05/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:64:69: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
06   myGLCD.print("<<a href="http://www.RinkyDinkElectronics.com/" rel="nofollow">http://www.RinkyDinkElectronics.com/</a>>", CENTER, 467);
07                                                                     ^
08/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:81:28: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
09   myGLCD.print("Sin", 5, 15);
10                            ^
11/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:88:28: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
12   myGLCD.print("Cos", 5, 27);
13                            ^
14/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:95:28: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
15   myGLCD.print("Tan", 5, 39);
16                            ^
17/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:285:41: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
18   myGLCD.print("That's it!", CENTER, 213);
19                                         ^
20/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:286:46: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
21   myGLCD.print("Restarting in a", CENTER, 239);
22                                              ^
23/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:287:45: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
24   myGLCD.print("few seconds...", CENTER, 252);
25                                             ^
26/tmp/arduino_modified_sketch_630889/sketch_feb11a.ino:291:47: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
27   myGLCD.print("Runtime: (msecs)", CENTER, 450);

А сам скетч вот (это просто пример из либы)
 

001#include <memorysaver.h>
002 
003// UTFT_Demo_800x480
004// Copyright (C)2015 Rinky-Dink Electronics, Henning Karlsen. All right reserved
006//
007// This program is a demo of how to use most of the functions
008// of the library with a supported display modules.
009//
010// This demo was made for modules with a screen resolution
011// of 800x480 pixels.
012//
013// This program requires the UTFT library.
014//
015 
016#include <UTFT.h>
017 
018// Declare which fonts we will be using
019extern uint8_t SmallFont[];
020 
021// Set the pins to the correct ones for your development shield
022// ------------------------------------------------------------
023// Arduino Uno / 2009:
024// -------------------
025// Standard Arduino Uno/2009 shield            : <display model>,A5,A4,A3,A2
026// DisplayModule Arduino Uno TFT shield        : <display model>,A5,A4,A3,A2
027//
028// Arduino Mega:
029// -------------------
030// Standard Arduino Mega/Due shield            : <display model>,38,39,40,41
031// CTE TFT LCD/SD Shield for Arduino Mega      : <display model>,38,39,40,41
032//
033// Remember to change the model parameter to suit your display module!
034UTFT myGLCD(ITDB50,38,39,40,41);
035 
036void setup()
037{
038  randomSeed(analogRead(0));
039   
040// Setup the LCD
041  myGLCD.InitLCD();
042  myGLCD.setFont(SmallFont);
043}
044 
045void loop()
046{
047  int buf[798];
048  int x, x2;
049  int y, y2;
050  int r;
051 
052// Clear the screen and draw the frame
053  myGLCD.clrScr();
054 
055  myGLCD.setColor(255, 0, 0);
056  myGLCD.fillRect(0, 0, 799, 13);
057  myGLCD.setColor(64, 64, 64);
058  myGLCD.fillRect(0, 466, 799, 479);
059  myGLCD.setColor(255, 255, 255);
060  myGLCD.setBackColor(255, 0, 0);
061  myGLCD.print("* Universal Color TFT Display Library *", CENTER, 1);
062  myGLCD.setBackColor(64, 64, 64);
063  myGLCD.setColor(255,255,0);
064  myGLCD.print("<<a href="http://www.RinkyDinkElectronics.com/" rel="nofollow">http://www.RinkyDinkElectronics.com/</a>>", CENTER, 467);
065 
066  myGLCD.setColor(0, 0, 255);
067  myGLCD.drawRect(0, 14, 799, 465);
068 
069// Draw crosshairs
070  myGLCD.setColor(0, 0, 255);
071  myGLCD.setBackColor(0, 0, 0);
072  myGLCD.drawLine(399, 15, 399, 464);
073  myGLCD.drawLine(1, 239, 798, 239);
074  for (int i=9; i<790; i+=10)
075    myGLCD.drawLine(i, 237, i, 242);
076  for (int i=19; i<470; i+=10)
077    myGLCD.drawLine(397, i, 402, i);
078 
079// Draw sin-, cos- and tan-lines 
080  myGLCD.setColor(0,255,255);
081  myGLCD.print("Sin", 5, 15);
082  for (int i=1; i<798; i++)
083  {
084    myGLCD.drawPixel(i,239+(sin(((i*1.13)*3.14)/180)*200));
085  }
086   
087  myGLCD.setColor(255,0,0);
088  myGLCD.print("Cos", 5, 27);
089  for (int i=1; i<798; i++)
090  {
091    myGLCD.drawPixel(i,239+(cos(((i*1.13)*3.14)/180)*200));
092  }
093 
094  myGLCD.setColor(255,255,0);
095  myGLCD.print("Tan", 5, 39);
096  for (int i=1; i<798; i++)
097  {
098    myGLCD.drawPixel(i,239+(tan(((i*0.9)*3.14)/180)));
099  }
100 
101  delay(2000);
102 
103  myGLCD.setColor(0,0,0);
104  myGLCD.fillRect(1,15,798,464);
105  myGLCD.setColor(0, 0, 255);
106  myGLCD.setBackColor(0, 0, 0);
107  myGLCD.drawLine(399, 15, 399, 464);
108  myGLCD.drawLine(1, 239, 798, 239);
109 
110// Draw a moving sinewave
111  x=1;
112  for (int i=1; i<(798*20); i++)
113  {
114    x++;
115    if (x==799)
116      x=1;
117    if (i>799)
118    {
119      if ((x==399)||(buf[x-1]==239))
120        myGLCD.setColor(0,0,255);
121      else
122        myGLCD.setColor(0,0,0);
123      myGLCD.drawPixel(x,buf[x-1]);
124    }
125    myGLCD.setColor(0,255,255);
126    y=239+(sin(((i*1.65)*3.14)/180)*(200-(i / 100)));
127    myGLCD.drawPixel(x,y);
128    buf[x-1]=y;
129  }
130 
131  delay(2000);
132   
133  myGLCD.setColor(0,0,0);
134  myGLCD.fillRect(1,15,798,464);
135 
136// Draw some random filled rectangles
137  for (int i=0; i<50; i++)
138  {
139    myGLCD.setColor(random(255), random(255), random(255));
140    x=2+random(746);
141    y=16+random(397);
142    x2=x+50;
143    y2=y+50;
144    myGLCD.fillRect(x, y, x2, y2);
145  }
146 
147  delay(2000);
148   
149  myGLCD.setColor(0,0,0);
150  myGLCD.fillRect(1,15,798,464);
151 
152// Draw some random filled, rounded rectangles
153  for (int i=0; i<50; i++)
154  {
155    myGLCD.setColor(random(255), random(255), random(255));
156    x=2+random(746);
157    y=16+random(397);
158    x2=x+50;
159    y2=y+50;
160    myGLCD.fillRoundRect(x, y, x2, y2);
161  }
162   
163  delay(2000);
164   
165  myGLCD.setColor(0,0,0);
166  myGLCD.fillRect(1,15,798,464);
167 
168// Draw some random filled circles
169  for (int i=0; i<50; i++)
170  {
171    myGLCD.setColor(random(255), random(255), random(255));
172    x=27+random(746);
173    y=41+random(397);
174    myGLCD.fillCircle(x, y, 25);
175  }
176   
177  delay(2000);
178   
179  myGLCD.setColor(0,0,0);
180  myGLCD.fillRect(1,15,798,464);
181 
182// Draw some lines in a pattern
183  myGLCD.setColor (255,0,0);
184  for (int i=15; i<463; i+=5)
185  {
186    myGLCD.drawLine(1, i, (i*1.66)-10, 463);
187  }
188  myGLCD.setColor (255,0,0);
189  for (int i=463; i>15; i-=5)
190  {
191    myGLCD.drawLine(798, i, (i*1.66)+30, 15);
192  }
193  myGLCD.setColor (0,255,255);
194  for (int i=463; i>15; i-=5)
195  {
196    myGLCD.drawLine(1, i, 770-(i*1.66), 15);
197  }
198  myGLCD.setColor (0,255,255);
199  for (int i=15; i<463; i+=5)
200  {
201    myGLCD.drawLine(798, i, 810-(i*1.66), 463);
202  }
203   
204  delay(2000);
205   
206  myGLCD.setColor(0,0,0);
207  myGLCD.fillRect(1,15,798,464);
208 
209// Draw some random circles
210  for (int i=0; i<250; i++)
211  {
212    myGLCD.setColor(random(255), random(255), random(255));
213    x=32+random(736);
214    y=45+random(386);
215    r=random(30);
216    myGLCD.drawCircle(x, y, r);
217  }
218 
219  delay(2000);
220   
221  myGLCD.setColor(0,0,0);
222  myGLCD.fillRect(1,15,798,464);
223 
224// Draw some random rectangles
225  for (int i=0; i<250; i++)
226  {
227    myGLCD.setColor(random(255), random(255), random(255));
228    x=2+random(796);
229    y=16+random(447);
230    x2=2+random(796);
231    y2=16+random(447);
232    myGLCD.drawRect(x, y, x2, y2);
233  }
234 
235  delay(2000);
236   
237  myGLCD.setColor(0,0,0);
238  myGLCD.fillRect(1,15,798,464);
239 
240// Draw some random rounded rectangles
241  for (int i=0; i<250; i++)
242  {
243    myGLCD.setColor(random(255), random(255), random(255));
244    x=2+random(796);
245    y=16+random(447);
246    x2=2+random(796);
247    y2=16+random(447);
248    myGLCD.drawRoundRect(x, y, x2, y2);
249  }
250 
251  delay(2000);
252   
253  myGLCD.setColor(0,0,0);
254  myGLCD.fillRect(1,15,798,464);
255 
256  for (int i=0; i<250; i++)
257  {
258    myGLCD.setColor(random(255), random(255), random(255));
259    x=2+random(796);
260    y=16+random(447);
261    x2=2+random(796);
262    y2=16+random(447);
263    myGLCD.drawLine(x, y, x2, y2);
264  }
265 
266  delay(2000);
267   
268  myGLCD.setColor(0,0,0);
269  myGLCD.fillRect(1,15,798,464);
270 
271  for (int i=0; i<10000; i++)
272  {
273    myGLCD.setColor(random(255), random(255), random(255));
274    myGLCD.drawPixel(2+random(796), 16+random(447));
275  }
276 
277  delay(2000);
278 
279  myGLCD.fillScr(0, 0, 255);
280  myGLCD.setColor(255, 0, 0);
281  myGLCD.fillRoundRect(320, 190, 479, 289);
282   
283  myGLCD.setColor(255, 255, 255);
284  myGLCD.setBackColor(255, 0, 0);
285  myGLCD.print("That's it!", CENTER, 213);
286  myGLCD.print("Restarting in a", CENTER, 239);
287  myGLCD.print("few seconds...", CENTER, 252);
288   
289  myGLCD.setColor(0, 255, 0);
290  myGLCD.setBackColor(0, 0, 255);
291  myGLCD.print("Runtime: (msecs)", CENTER, 450);
292  myGLCD.printNumI(millis(), CENTER, 465);
293   
294  delay (10000);
295}

В чём может проблема? 
Спасибо.
 

dezhavi
Offline
Зарегистрирован: 26.12.2015

Только отправил сообщение и экран заработал.
Но почему-то изображение перевернуто.
Буквы справа налево идут?
Почему оно может быть перевёрнуто?

Спасибо.

 

andriano
andriano аватар
Offline
Зарегистрирован: 20.06.2015

Обычно вид дисплея настраивается. Смотрите дэйташит.

Ну и второй вариант - изменить процедуры вывода на экран в соответствии с его текущими настройками.