run the examples
yes, I ran an example. I was able to easily replace the displayed text, its color and position in the example. However, when I try to modify the code called in the example like this Serial.println(testLines(ILI9341_CYAN));
unsigned long testLines(uint16_t color) {
unsigned ...
Search found 9 matches
- Thu Mar 19, 2020 9:02 am
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
- Thu Mar 19, 2020 8:49 am
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
Thank you, this really doubled the FPS.
After mega8 looks impressive.
- Tue Mar 17, 2020 2:52 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
Yes it really works! library
https://github.com/adafruit/Adafruit_ILI9341
came up beautifully, thank you very much!
I used the following initialization command:
Adafruit_ILI9341 tft = Adafruit_ILI9341(PA4,PB1,PA7,PA5,PB10,PA6);
and it worked, the connection is as follows:
TFT_CS - PA4, TFT ...
https://github.com/adafruit/Adafruit_ILI9341
came up beautifully, thank you very much!
I used the following initialization command:
Adafruit_ILI9341 tft = Adafruit_ILI9341(PA4,PB1,PA7,PA5,PB10,PA6);
and it worked, the connection is as follows:
TFT_CS - PA4, TFT ...
- Tue Mar 17, 2020 10:30 am
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
please show me where can I get a library for working with my display using the SPI protocol?
This library http://www.rinkydinkelectronics.com/library.php?id=51 also does not work with the official STM core?
This library http://www.rinkydinkelectronics.com/library.php?id=51 also does not work with the official STM core?
- Tue Mar 17, 2020 8:23 am
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
and what do we have? The SPI library requires the libmaple_types.h file from the Roger core version, which for some reason I can’t find in its core. The official core SPI library gives a compilation error:
C:\Users\����\Documents\Arduino\libraries\Adafruit_ILI9341_STM/Adafruit_ILI9341_STM.h:150 ...
C:\Users\����\Documents\Arduino\libraries\Adafruit_ILI9341_STM/Adafruit_ILI9341_STM.h:150 ...
- Mon Mar 16, 2020 8:01 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
SPI port 1, ok, I'll try it, thanks
- Mon Mar 16, 2020 7:45 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
could you tell me which pins should be used for this?it assume to use predefined hardware spi class
- Mon Mar 16, 2020 7:14 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
Re: blue pill and ILI9341 tft
not match the data type, but in all the manuals that I saw written appeal to the pin only by full name!
upd: in file variant.cpp (way^ appdata\local\arduino15\packages\stm32\hardware\stm32\1.8.0\variants/pill_f103xx) i find next:
PB_9, //D0
PB_8, //D1
PB_7, //D2
PB_6, //D3
PB_5, //D4
PB ...
- Mon Mar 16, 2020 5:31 pm
- Forum: General discussion
- Topic: [Solved]blue pill and ILI9341 tft
- Replies: 15
- Views: 18639
[Solved]blue pill and ILI9341 tft
Hi, I immediately apologize if I created the topic in the wrong section and ask me to send it in the right direction. In the STM32 topic recently, before that, I used the arduino mini for a long time, but in the current project I’m sorely lacking in speed for normal operation with a display based on ...