TFT 3.5" LCD SHIELD
bonjour,
j'ai acheté ce module tft : http://fr.aliexpress.com/item/3-5-tft-module-support-uno-mega2560-due-development-board/32582429455.html?spm=2114.06010108.3.20.gyglvm&ws_ab_test=searchweb201556_0,searchweb201602_5_10057_10056_10055_10049_10017_10059_10058_10060_10061_10062_412_10063,searchweb201603_7&btsid=a6e6a95f-08be-4613-9022-b89ea1848b59
mais, je le pose sur mon arduino mega et télèverse le code mais, il y juste un écran blanc qui s'affiche (il s'allume grâce aux connections et non au code).
quelqu'un sait il ce qui cloche ?
j'ai acheté ce module tft : http://fr.aliexpress.com/item/3-5-tft-module-support-uno-mega2560-due-development-board/32582429455.html?spm=2114.06010108.3.20.gyglvm&ws_ab_test=searchweb201556_0,searchweb201602_5_10057_10056_10055_10049_10017_10059_10058_10060_10061_10062_412_10063,searchweb201603_7&btsid=a6e6a95f-08be-4613-9022-b89ea1848b59
mais, je le pose sur mon arduino mega et télèverse le code mais, il y juste un écran blanc qui s'affiche (il s'allume grâce aux connections et non au code).
code: [select]
#include <adafruit_gfx.h>
#include <adafruit_tftlcd.h>
#define lcd_cs a3
#define lcd_cd a2
#define lcd_wr a1
#define lcd_rd a0
#define lcd_reset a4
#define black 0x0000
#define blue 0x001f
#define red 0xf800
#define green 0x07e0
#define cyan 0x07ff
#define magenta 0xf81f
#define yellow 0xffe0
#define white 0xffff
adafruit_tftlcd tft(lcd_cs, lcd_cd, lcd_wr, lcd_rd, lcd_reset);
void setup() {
tft.reset();
tft.begin(0x9481);
}
void loop()
{
tft.fillrect(80,200,321,60,red);
tft.setcursor(135,215);
tft.settextcolor(white);
tft.settextsize(4);
tft.print("subscribe");
}
quelqu'un sait il ce qui cloche ?
si vous lisez les exemples fournis avec cet écran (example02-displaystring)
télécharger les exemples
télécharger les exemples
quote
// important: adafruit_tftlcd library must specificallyvous avez fait cela?
// configured either tft shield or breakout board.
// see relevant comments in adafruit_tftlcd.h setup.
Arduino Forum > International > Français (Moderators: jfs, Snootlab) > TFT 3.5" LCD SHIELD
arduino
Comments
Post a Comment